body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 4.9rem;
  font-weight: 800;
  letter-spacing: -2px;
}
.display-1 > .mbr-iconfont {
  font-size: 7.84rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 400;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.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: 3.92rem;
    font-size: calc( 2.365rem + (4.9 - 2.365) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.365rem + (4.9 - 2.365) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    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-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2.5rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b539cf !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffb81c !important;
  border-color: #ffb81c !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #cf8e00 !important;
  border-color: #cf8e00 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #cf8e00 !important;
  border-color: #cf8e00 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #832597 !important;
  border-color: #832597 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #832597 !important;
  border-color: #832597 !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: #cccccc;
  color: #cccccc;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #b57c00;
  color: #b57c00;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ffb81c;
  border-color: #ffb81c;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffb81c !important;
  border-color: #ffb81c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #712082;
  color: #712082;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b539cf;
  border-color: #b539cf;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b539cf !important;
  border-color: #b539cf !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: #ffffff !important;
}
.text-secondary {
  color: #ffb81c !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b539cf !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #101010 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #b57c00 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #b539cf !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b539cf;
}
.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: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f2ddf7;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ffffff;
}
/* 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);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffb81c !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ffffff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
hr {
  border: none;
  background-color: #b539cf;
  height: 3px;
  width: 72px;
  position: absolute;
  top: -3.5rem;
  display: inline-block;
}
.line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.line-title-big {
  width: 72px;
  height: 3px;
  background-color: #b539cf;
  margin-bottom: 2rem;
  display: inline-block;
}
.vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.mbr-section-btn .btn-danger,
.btn-warning,
.btn-white,
.btn-black,
.btn-secondary,
.btn-primary,
.btn-info,
.btn-success {
  position: relative;
  background-color: #ffffff;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.mbr-section-btn .btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0, 1.01);
  transform-origin: 0% 50%;
}
.btn-white {
  color: #b539cf !important;
}
.btn-danger:hover {
  color: #b539cf !important;
}
.btn-warning:hover {
  color: #879a9f !important;
}
.btn-success:hover {
  color: #f7ed4a !important;
}
.btn-info:hover {
  color: #82786e !important;
}
.btn-black:hover {
  color: #000000 !important;
}
.btn-white:hover {
  color: #000000 !important;
}
.btn-secondary:hover {
  color: #ffb81c !important;
}
.btn-primary:hover {
  color: #ffffff !important;
}
.btn:hover::before {
  background-color: #ffffff;
  transform: scaleX(1);
}
.btn-white {
  color: #b539cf !important;
}
.mbr-section-btn .btn-danger-outline {
  border-color: #b539cf;
}
.mbr-section-btn .btn-danger-outline,
.btn-warning-outline,
.btn-white-outline,
.btn-black-outline,
.btn-secondary-outline,
.btn-primary-outline,
.btn-info-outline,
.btn-success-outline {
  position: relative;
  background-color: transparent !important;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.btn-danger-outline {
  color: #ffffff !important;
}
.btn-secondary-outline:hover::before {
  background-color: #ffb81c !important;
}
.btn-success-outline:hover::before {
  background-color: #f7ed4a !important;
}
.btn-info-outline:hover::before {
  background-color: #82786e !important;
}
.btn-primary-outline:hover::before {
  background-color: #ffffff !important;
}
.btn-white-outline:hover::before {
  background-color: #ffffff !important;
}
.btn-black-outline:hover::before {
  background-color: #000000 !important;
}
.btn-black-outline:hover::before {
  background-color: #879a9f !important;
}
.btn-danger-outline:hover::before {
  background-color: #b539cf !important;
}
.cid-rR8qj3Lr1I .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-rR8qj3Lr1I .nav-item:focus,
.cid-rR8qj3Lr1I .nav-link:focus {
  outline: none;
}
.cid-rR8qj3Lr1I .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-rR8qj3Lr1I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rR8qj3Lr1I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-rR8qj3Lr1I .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-rR8qj3Lr1I .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rR8qj3Lr1I .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rR8qj3Lr1I .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-rR8qj3Lr1I .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-rR8qj3Lr1I .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-rR8qj3Lr1I .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rR8qj3Lr1I .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rR8qj3Lr1I .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rR8qj3Lr1I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rR8qj3Lr1I .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-rR8qj3Lr1I .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rR8qj3Lr1I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rR8qj3Lr1I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rR8qj3Lr1I .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-rR8qj3Lr1I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rR8qj3Lr1I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rR8qj3Lr1I .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rR8qj3Lr1I .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rR8qj3Lr1I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rR8qj3Lr1I .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rR8qj3Lr1I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rR8qj3Lr1I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rR8qj3Lr1I .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-rR8qj3Lr1I .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rR8qj3Lr1I .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rR8qj3Lr1I .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rR8qj3Lr1I .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rR8qj3Lr1I .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rR8qj3Lr1I .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rR8qj3Lr1I .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-rR8qj3Lr1I .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rR8qj3Lr1I .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rR8qj3Lr1I .navbar-short {
  padding: 1rem 0 !important;
}
.cid-rR8qj3Lr1I .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-rR8qj3Lr1I .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rR8qj3Lr1I .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rR8qj3Lr1I .dropdown-item.active,
.cid-rR8qj3Lr1I .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-rR8qj3Lr1I .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-rR8qj3Lr1I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-rR8qj3Lr1I .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-rR8qj3Lr1I .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-rR8qj3Lr1I .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-rR8qj3Lr1I .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-rR8qj3Lr1I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-rR8qj3Lr1I .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-rR8qj3Lr1I .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-rR8qj3Lr1I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-rR8qj3Lr1I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rR8qj3Lr1I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rR8qj3Lr1I ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rR8qj3Lr1I .navbar-buttons {
  text-align: center;
}
.cid-rR8qj3Lr1I button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rR8qj3Lr1I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-rR8qj3Lr1I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rR8qj3Lr1I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rR8qj3Lr1I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rR8qj3Lr1I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rR8qj3Lr1I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rR8qj3Lr1I nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rR8qj3Lr1I nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rR8qj3Lr1I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rR8qj3Lr1I .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-rR8qj3Lr1I a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-rR8qj3Lr1I .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-rR8qj3Lr1I .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-rR8qj3Lr1I .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rR8qj3Lr1I .navbar {
    height: 77px;
  }
  .cid-rR8qj3Lr1I .navbar.opened {
    height: auto;
  }
  .cid-rR8qj3Lr1I .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rR8qj3Lr1I a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-rR8qj3Lr1I a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-rR8qj3Lr1I .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-rR8qj3Lr1I .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-rRBN6JT0iJ {
  padding-top: 195px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/applebee-marketing-7-2000x1333.webp");
}
.cid-rRBN6JT0iJ .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-rRBN6JT0iJ input {
  padding: 0rem 1rem !important;
}
.cid-rRBN6JT0iJ .title {
  margin-bottom: 1rem;
}
.cid-rRBN6JT0iJ textarea {
  min-height: 160px;
}
.cid-rRBN6JT0iJ input::-webkit-input-placeholder,
.cid-rRBN6JT0iJ textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-rRBN6JT0iJ input:-moz-placeholder,
.cid-rRBN6JT0iJ textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-rRBN6JT0iJ img {
    width: 100%;
  }
  .cid-rRBN6JT0iJ form {
    margin-top: 2rem;
  }
}
.cid-rRBN6JT0iJ .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-rRBN6JT0iJ .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-rRBN6JT0iJ .mbr-form {
    padding-left: 2rem;
  }
}
.cid-rRBN6JT0iJ .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-rRBN6JT0iJ .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-rRBN6JT0iJ .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-rRBN6JT0iJ .form-btn {
  width: 100%;
}
.cid-rRBN6JT0iJ .link-btn {
  width: 100%;
}
.cid-rRBN6JT0iJ h5 {
  margin-bottom: 0.2rem;
}
.cid-rRBN6JT0iJ .mbr-form .btn {
  margin: 0;
}
.cid-rRBN6JT0iJ .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-rRBN6JT0iJ .block-left {
  margin-bottom: 2.6rem;
}
.cid-rRBN6JT0iJ .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-rRBN6JT0iJ .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-rRBN6JT0iJ .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-rRBN6JT0iJ .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-rRBN6JT0iJ .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-rRBN6JT0iJ .row {
    margin: 0rem;
  }
}
.cid-rRBN6JT0iJ .btn {
  margin-left: 0rem;
}
.cid-rRBN6JT0iJ P {
  text-align: left;
}
.cid-tKfZoOZQFe {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tKfZoOZQFe .mbr-iconfont-1 {
  color: #ffb81c;
  font-size: 3.5rem;
  transition: 0.7s;
}
.cid-tKfZoOZQFe .mbr-iconfont-2 {
  color: #ffb81c;
  font-size: 1.5rem;
  opacity: 0;
  transition: 0.7s;
}
.cid-tKfZoOZQFe .card-inner {
  transition: 0.7s;
  z-index: 10;
}
.cid-tKfZoOZQFe .link {
  margin: 0;
  color: #ffb81c;
}
.cid-tKfZoOZQFe .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-tKfZoOZQFe .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKfZoOZQFe .card-img {
  margin-bottom: 3.2rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKfZoOZQFe .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-tKfZoOZQFe .card:hover {
  background-color: #b539cf;
}
.cid-tKfZoOZQFe .card:hover .mbr-iconfont {
  color: #ffb81c;
}
.cid-tKfZoOZQFe .card:hover .card-title {
  color: #ffffff;
}
.cid-tKfZoOZQFe .card:hover .card-title:after {
  background: #fff;
}
.cid-tKfZoOZQFe .card:hover .mbr-text {
  color: #ffffff;
}
.cid-tKfZoOZQFe .card:hover .mbr-iconfont-2 {
  opacity: 1;
}
.cid-tKfZoOZQFe .card:hover .card-box {
  transform: translateY(-25px);
}
.cid-tKfZoOZQFe .card:hover .card-img {
  transform: translateY(-5px);
}
.cid-tKfZoOZQFe .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-tKfZoOZQFe .card {
    padding: 0;
  }
  .cid-tKfZoOZQFe .card-inner {
    padding: 2.4rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tKfZoOZQFe .card-inner {
    padding: 3.4rem 2.5rem;
  }
  .cid-tKfZoOZQFe .media-container-row {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tKfZoOZQFe .row {
    margin: 0;
  }
}
.cid-tKfZoOZQFe .card {
  background-color: #ffffff;
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
}
.cid-tKfZoOZQFe .mbr-section-subtitle {
  color: #ffb81c;
}
.cid-tKfZoOZQFe .mbr-section-title {
  font-weight: 800;
}
.cid-tKfZoOZQFe h2 {
  margin-bottom: 0;
}
.cid-tKfZoOZQFe .title-block {
  margin-bottom: 3rem;
}
.cid-tKfZoOZQFe .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKfZoOZQFe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKfZoOZQFe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKfZoOZQFe .mbr-maintext,
.cid-tKfZoOZQFe .mbr-section-btn {
  text-align: right;
}
.cid-tKfZoOZQFe .mbr-text,
.cid-tKfZoOZQFe .link {
  color: #101010;
}
.cid-tKg38dZZ1w {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tKg38dZZ1w .mbr-iconfont-1 {
  color: #ffb81c;
  font-size: 3.5rem;
  transition: 0.7s;
}
.cid-tKg38dZZ1w .mbr-iconfont-2 {
  color: #ffb81c;
  font-size: 1.5rem;
  opacity: 0;
  transition: 0.7s;
}
.cid-tKg38dZZ1w .card-inner {
  transition: 0.7s;
  z-index: 10;
}
.cid-tKg38dZZ1w .link {
  margin: 0;
}
.cid-tKg38dZZ1w .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-tKg38dZZ1w .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKg38dZZ1w .card-img {
  margin-bottom: 3.2rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKg38dZZ1w .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-tKg38dZZ1w .card:hover {
  background-color: #b539cf;
}
.cid-tKg38dZZ1w .card:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tKg38dZZ1w .card:hover .card-title {
  color: #ffffff;
}
.cid-tKg38dZZ1w .card:hover .card-title:after {
  background: #fff;
}
.cid-tKg38dZZ1w .card:hover .mbr-text {
  color: #ffffff;
}
.cid-tKg38dZZ1w .card:hover .mbr-iconfont-2 {
  opacity: 1;
}
.cid-tKg38dZZ1w .card:hover .card-box {
  transform: translateY(-25px);
}
.cid-tKg38dZZ1w .card:hover .card-img {
  transform: translateY(-5px);
}
.cid-tKg38dZZ1w .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-tKg38dZZ1w .card {
    padding: 0;
  }
  .cid-tKg38dZZ1w .card-inner {
    padding: 2.4rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tKg38dZZ1w .card-inner {
    padding: 3.4rem 2.5rem;
  }
  .cid-tKg38dZZ1w .media-container-row {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tKg38dZZ1w .row {
    margin: 0;
  }
}
.cid-tKg38dZZ1w .card {
  background-color: #ffffff;
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
}
.cid-tKg38dZZ1w .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tKg38dZZ1w .mbr-section-title {
  font-weight: 800;
}
.cid-tKg38dZZ1w h2 {
  margin-bottom: 0;
}
.cid-tKg38dZZ1w .title-block {
  margin-bottom: 3rem;
}
.cid-tKg38dZZ1w .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKg38dZZ1w .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKg38dZZ1w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-rRBNgZqJNa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101010;
}
@media (max-width: 992px) {
  .cid-rRBNgZqJNa {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-rRBNgZqJNa .box {
    margin-top: 2.5rem;
    height: 300px;
  }
  .cid-rRBNgZqJNa .video-block {
    padding: 0rem;
  }
  .cid-rRBNgZqJNa .row {
    padding: 0rem;
  }
  .cid-rRBNgZqJNa .left-block {
    padding: 2rem 1rem;
  }
}
.cid-rRBNgZqJNa .btn {
  margin-left: 0rem;
}
.cid-rRBNgZqJNa .box {
  background-image: url("../../../assets/images/applebee-video-shoot-1280-1280x1215.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rRBNgZqJNa .icon-wrap {
  border: 3px solid #ffb81c !important;
  background-color: #ffffff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.cid-rRBNgZqJNa .icon-wrap:hover span {
  color: #ffffff;
}
.cid-rRBNgZqJNa .icon-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0.67, 0, 1.01);
}
.cid-rRBNgZqJNa .icon-wrap:hover::before {
  background-color: #b539cf;
  transform: scaleY(1);
}
.cid-rRBNgZqJNa .mbr-media span {
  font-size: 16px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffb81c;
}
.cid-rRBNgZqJNa .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-rRBNgZqJNa .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rRBNgZqJNa .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rRBNgZqJNa .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rRBNgZqJNa a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rRBNgZqJNa a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-rRBNgZqJNa {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.cid-rRBNgZqJNa .mbr-text {
  margin-bottom: 2rem;
}
.cid-rRBNgZqJNa .mbr-section-title {
  margin-bottom: 2rem;
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-rRBNgZqJNa .left-block {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-rRBNgZqJNa .video-block {
    padding-right: 0rem;
  }
  .cid-rRBNgZqJNa .row {
    padding-right: 0rem;
  }
  .cid-rRBNgZqJNa .left-block {
    padding: 7.5rem 5.5rem 7.5rem 5rem;
  }
  .cid-rRBNgZqJNa .box {
    height: 100%;
  }
}
.cid-rRBNgZqJNa .mbr-text,
.cid-rRBNgZqJNa .mbr-section-btn {
  text-align: left;
}
.cid-rRBNhmeyYR {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRBNhmeyYR img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
}
.cid-rRBNhmeyYR h4 {
  margin-bottom: 0rem;
}
.cid-rRBNhmeyYR .mbr-section-title {
  margin-bottom: 0.3rem;
}
.cid-rRBNhmeyYR .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 3.5rem;
}
.cid-rRBNhmeyYR .card {
  padding: 0rem;
  cursor: pointer;
}
.cid-rRBNhmeyYR .card-img {
  margin-bottom: 1.7rem;
}
.cid-rRBNhmeyYR .card-title {
  margin-bottom: 1.5rem;
}
.cid-rRBNhmeyYR .row {
  justify-content: center;
}
.cid-rRBNhmeyYR .card-box,
.cid-rRBNhmeyYR .card-img {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-rRBNhmeyYR .mbr-text {
  margin-bottom: 1.5rem;
  padding: 2rem;
  border-radius: 30px;
  color: #fff;
  position: relative;
}
.cid-rRBNhmeyYR .img-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-rRBNhmeyYR .title-block {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-rRBNhmeyYR .img-block:hover .title-block {
  opacity: 1;
  transform: translateX(0px);
}
.cid-rRBNhmeyYR .img-block:hover img {
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.2);
  opacity: 0.1;
}
.cid-rRBNhmeyYR .img-block:hover .wrapper-img {
  transform: scale(0.95);
}
.cid-rRBNhmeyYR .wrapper-img {
  width: 100%;
  background-color: rgba(181, 57, 207, 0.85);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
@media (max-width: 992px) {
  .cid-rRBNhmeyYR .img-card {
    margin-top: 2rem;
  }
}
.cid-rRBNhmeyYR H2 {
  color: #000000;
}
.cid-tmBS84MqdA {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tmBS84MqdA img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
}
.cid-tmBS84MqdA h4 {
  margin-bottom: 0rem;
}
.cid-tmBS84MqdA .mbr-section-title {
  margin-bottom: 0.3rem;
}
.cid-tmBS84MqdA .mbr-section-subtitle {
  color: #e9204f;
  margin-bottom: 3.5rem;
}
.cid-tmBS84MqdA .card {
  padding: 0rem;
  cursor: pointer;
}
.cid-tmBS84MqdA .card-img {
  margin-bottom: 1.7rem;
}
.cid-tmBS84MqdA .card-title {
  margin-bottom: 1.5rem;
}
.cid-tmBS84MqdA .row {
  justify-content: center;
}
.cid-tmBS84MqdA .card-box,
.cid-tmBS84MqdA .card-img {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tmBS84MqdA .mbr-text {
  margin-bottom: 1.5rem;
  padding: 2rem;
  border-radius: 30px;
  color: #fff;
  position: relative;
}
.cid-tmBS84MqdA .img-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tmBS84MqdA .title-block {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tmBS84MqdA .img-block:hover .title-block {
  opacity: 1;
  transform: translateX(0px);
}
.cid-tmBS84MqdA .img-block:hover img {
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.2);
  opacity: 0.1;
}
.cid-tmBS84MqdA .img-block:hover .wrapper-img {
  transform: scale(0.95);
}
.cid-tmBS84MqdA .wrapper-img {
  width: 100%;
  background-color: rgba(181, 57, 207, 0.85);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
@media (max-width: 992px) {
  .cid-tmBS84MqdA .img-card {
    margin-top: 2rem;
  }
}
.cid-tmBS84MqdA .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-rRBNmOyM6P {
  padding-top: 45px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/applebee-marketing-7-2000x1333.webp");
}
.cid-rRBNmOyM6P .carousel {
  z-index: 2;
  position: relative;
}
.cid-rRBNmOyM6P .user {
  padding: 0!important;
}
.cid-rRBNmOyM6P .user_image {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.8rem;
  border: 1px solid lightgray;
  position: relative;
}
.cid-rRBNmOyM6P .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-rRBNmOyM6P .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rRBNmOyM6P .carousel-item.active,
.cid-rRBNmOyM6P .carousel-item-next,
.cid-rRBNmOyM6P .carousel-item-prev {
  display: flex;
}
.cid-rRBNmOyM6P .user_name {
  margin: 0;
  color: #ffffff;
}
.cid-rRBNmOyM6P .carousel-controls a {
  font-size: 2rem;
}
.cid-rRBNmOyM6P .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
  opacity: 0.5;
}
.cid-rRBNmOyM6P .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-rRBNmOyM6P ol {
  margin-bottom: 0;
  bottom: -2.2rem;
}
.cid-rRBNmOyM6P .carousel-indicators li {
  width: 10px;
  height: 10px;
  margin: auto 7px;
  border: none;
  background: #ffffff;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
  position: relative;
}
.cid-rRBNmOyM6P .carousel-indicators li:hover {
  opacity: 1;
}
.cid-rRBNmOyM6P .carousel-indicators .active {
  opacity: 1;
  width: 12px;
  height: 12px;
}
.cid-rRBNmOyM6P .user_status {
  color: #767676;
}
.cid-rRBNmOyM6P .title {
  color: #ffffff;
  margin-bottom: 3.8rem;
}
.cid-rRBNmOyM6P .mbr-text {
  margin-bottom: 1.7rem;
  text-align: left;
}
.cid-rRBNniJQ25 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rRBNniJQ25 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-rRBNniJQ25 .container {
    position: relative;
  }
  .cid-rRBNniJQ25 .row {
    margin: 0;
  }
  .cid-rRBNniJQ25 h2 {
    margin: 0;
  }
}
.cid-rRBNniJQ25 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-rRBNniJQ25 .mbr-text {
  margin-top: 1.4rem;
  text-align: left;
}
.cid-rRBNovf2XA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/office-3.webp");
}
.cid-rRBNovf2XA .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-rRBNovf2XA .align-center {
    text-align: center;
  }
}
.cid-tmCxVYOrAe {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tmCxVYOrAe h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tmCxVYOrAe .container {
    position: relative;
  }
  .cid-tmCxVYOrAe .row {
    margin: 0;
  }
  .cid-tmCxVYOrAe h2 {
    margin: 0;
  }
}
.cid-tmCxVYOrAe .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-tmCxVYOrAe .mbr-section-subtitle {
  color: #b01cff;
}
.cid-tmCxVYOrAe .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tmCxVYOrAe .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-rRBNpvhxoS {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #101010;
}
.cid-rRBNpvhxoS .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-rRBNpvhxoS textarea {
  min-height: 150px;
}
.cid-rRBNpvhxoS input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-rRBNpvhxoS textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-rRBNpvhxoS .form-control,
.cid-rRBNpvhxoS .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-rRBNpvhxoS .form-control input::-webkit-input-placeholder,
.cid-rRBNpvhxoS .field-input input::-webkit-input-placeholder,
.cid-rRBNpvhxoS .form-control textarea::-webkit-input-placeholder,
.cid-rRBNpvhxoS .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-rRBNpvhxoS .form-control input:-moz-placeholder,
.cid-rRBNpvhxoS .field-input input:-moz-placeholder,
.cid-rRBNpvhxoS .form-control textarea:-moz-placeholder,
.cid-rRBNpvhxoS .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-rRBNpvhxoS .jq-number__spin:hover,
.cid-rRBNpvhxoS .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-rRBNpvhxoS .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rRBNpvhxoS .jq-selectbox li,
.cid-rRBNpvhxoS .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-rRBNpvhxoS .jq-selectbox li:hover,
.cid-rRBNpvhxoS .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-rRBNpvhxoS .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-rRBNpvhxoS .jq-number__spin.minus:hover:after,
.cid-rRBNpvhxoS .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-rRBNpvhxoS .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-rRBNpvhxoS .jq-number__spin.minus:after,
.cid-rRBNpvhxoS .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-rRBNpvhxoS .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-rRBNpvhxoS .social-list {
    margin-bottom: 3rem;
  }
  .cid-rRBNpvhxoS .email-input {
    margin-top: 2rem;
  }
}
.cid-rRBNpvhxoS .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-rRBNpvhxoS .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-rRBNpvhxoS .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-rRBNpvhxoS .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-rRBNpvhxoS .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-rRBNpvhxoS .social-list {
  display: flex;
}
.cid-rRBNpvhxoS .social-list a {
  transition: .3s;
}
.cid-rRBNpvhxoS .social-list a:hover {
  transform: translateY(-8px);
}
.cid-rRBNpvhxoS .row {
  align-items: center;
}
.cid-rRBNpvhxoS .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-rRBNpvhxoS .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-rRBNpvhxoS .form-btn {
  margin-top: 2.5rem;
}
.cid-rRBNpvhxoS input::-webkit-input-placeholder,
.cid-rRBNpvhxoS textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-rRBNpvhxoS input:-moz-placeholder,
.cid-rRBNpvhxoS textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-rRBNpvhxoS .media-content {
    padding-right: 3rem;
  }
  .cid-rRBNpvhxoS .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-rRBNpvhxoS .row {
    padding: 0 1rem;
  }
}
.cid-rRBNpvhxoS .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-rRBNpvhxoS .form-btn {
    width: 100%;
  }
  .cid-rRBNpvhxoS .btn {
    width: 100%;
  }
}
.cid-rRBNpvhxoS .mbr-text,
.cid-rRBNpvhxoS .mbr-section-btn {
  color: #ffffff;
}
.cid-tKhkWmMi6p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKhkWmMi6p .media-container-row {
  align-items: center;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKhkWmMi6p .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKhkWmMi6p .foot-menu-item {
  transform: 0.2s;
}
.cid-tKhkWmMi6p .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKhkWmMi6p .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKhkWmMi6p .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKhkWmMi6p .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: center;
  }
  .cid-tKhkWmMi6p .mbr-text {
    text-align: center;
  }
  .cid-tKhkWmMi6p .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKhkWmMi6p .link:hover {
  color: #ffffff;
}
.cid-tKhkWmMi6p .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKhkWmMi6p foot-menu-item P {
  color: #ffffff;
}
.cid-tCmzfO0WdU .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tCmzfO0WdU .nav-item:focus,
.cid-tCmzfO0WdU .nav-link:focus {
  outline: none;
}
.cid-tCmzfO0WdU .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-tCmzfO0WdU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCmzfO0WdU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tCmzfO0WdU .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-tCmzfO0WdU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCmzfO0WdU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCmzfO0WdU .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tCmzfO0WdU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tCmzfO0WdU .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tCmzfO0WdU .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tCmzfO0WdU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCmzfO0WdU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCmzfO0WdU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCmzfO0WdU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tCmzfO0WdU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tCmzfO0WdU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCmzfO0WdU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCmzfO0WdU .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-tCmzfO0WdU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCmzfO0WdU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tCmzfO0WdU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tCmzfO0WdU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCmzfO0WdU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCmzfO0WdU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tCmzfO0WdU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCmzfO0WdU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCmzfO0WdU .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-tCmzfO0WdU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tCmzfO0WdU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCmzfO0WdU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCmzfO0WdU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tCmzfO0WdU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tCmzfO0WdU .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tCmzfO0WdU .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tCmzfO0WdU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tCmzfO0WdU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tCmzfO0WdU .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tCmzfO0WdU .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-tCmzfO0WdU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCmzfO0WdU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCmzfO0WdU .dropdown-item.active,
.cid-tCmzfO0WdU .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tCmzfO0WdU .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tCmzfO0WdU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tCmzfO0WdU .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tCmzfO0WdU .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tCmzfO0WdU .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tCmzfO0WdU .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tCmzfO0WdU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tCmzfO0WdU .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tCmzfO0WdU .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tCmzfO0WdU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tCmzfO0WdU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCmzfO0WdU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCmzfO0WdU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tCmzfO0WdU .navbar-buttons {
  text-align: center;
}
.cid-tCmzfO0WdU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tCmzfO0WdU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tCmzfO0WdU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tCmzfO0WdU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tCmzfO0WdU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tCmzfO0WdU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tCmzfO0WdU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tCmzfO0WdU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tCmzfO0WdU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tCmzfO0WdU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tCmzfO0WdU .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tCmzfO0WdU a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tCmzfO0WdU .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tCmzfO0WdU .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-tCmzfO0WdU .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCmzfO0WdU .navbar {
    height: 77px;
  }
  .cid-tCmzfO0WdU .navbar.opened {
    height: auto;
  }
  .cid-tCmzfO0WdU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCmzfO0WdU a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tCmzfO0WdU a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tCmzfO0WdU .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tCmzfO0WdU .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tCmzfOqBBs {
  padding-top: 195px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/adobestock-261982527-team-meeting-1908x1273.webp");
}
.cid-tCmzfOqBBs .mbr-overlay {
  background-color: #000000;
  opacity: 0.3;
}
.cid-tCmzfOqBBs input {
  padding: 0rem 1rem !important;
}
.cid-tCmzfOqBBs .title {
  margin-bottom: 1rem;
}
.cid-tCmzfOqBBs textarea {
  min-height: 160px;
}
.cid-tCmzfOqBBs input::-webkit-input-placeholder,
.cid-tCmzfOqBBs textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tCmzfOqBBs input:-moz-placeholder,
.cid-tCmzfOqBBs textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tCmzfOqBBs img {
    width: 100%;
  }
  .cid-tCmzfOqBBs form {
    margin-top: 2rem;
  }
}
.cid-tCmzfOqBBs .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tCmzfOqBBs .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tCmzfOqBBs .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tCmzfOqBBs .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tCmzfOqBBs .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tCmzfOqBBs .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tCmzfOqBBs .form-btn {
  width: 100%;
}
.cid-tCmzfOqBBs .link-btn {
  width: 100%;
}
.cid-tCmzfOqBBs h5 {
  margin-bottom: 0.2rem;
}
.cid-tCmzfOqBBs .mbr-form .btn {
  margin: 0;
}
.cid-tCmzfOqBBs .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tCmzfOqBBs .block-left {
  margin-bottom: 2.6rem;
}
.cid-tCmzfOqBBs .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tCmzfOqBBs .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tCmzfOqBBs .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tCmzfOqBBs .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tCmzfOqBBs .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tCmzfOqBBs .row {
    margin: 0rem;
  }
}
.cid-tCmzfOqBBs .btn {
  margin-left: 0rem;
}
.cid-tCmzfOqBBs P {
  text-align: left;
}
.cid-tCmzfOHowL {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tCmzfOHowL h1 {
  margin-bottom: 0.2rem;
}
.cid-tCmzfOHowL .container-fluid {
  padding: 0;
}
.cid-tCmzfOHowL img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-tCmzfOHowL .mbr-figure {
  height: 100%;
}
.cid-tCmzfOHowL .col-lg-6 {
  padding: 0;
}
.cid-tCmzfOHowL .mbr-text {
  color: #747474;
}
.cid-tCmzfOHowL hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-tCmzfOHowL .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-tCmzfOHowL .mbr-section-subtitle-1 {
  color: #b01cff;
}
.cid-tCmzfOHowL .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-tCmzfOHowL .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tCmzfOHowL .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tCmzfOHowL .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-tCmzfOHowL .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-tCmzfOHowL .left-block {
    margin-top: 4.5rem;
  }
}
.cid-tCmzfOHowL .btn {
  color: #101010 !important;
}
.cid-tCmzfOHowL .btn:hover {
  color: #ffffff !important;
}
.cid-tCmzfOHowL .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tCmzfOHowL .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tCmzfOWIBq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101010;
}
@media (max-width: 992px) {
  .cid-tCmzfOWIBq {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-tCmzfOWIBq .box {
    margin-top: 2.5rem;
    height: 300px;
  }
  .cid-tCmzfOWIBq .video-block {
    padding: 0rem;
  }
  .cid-tCmzfOWIBq .row {
    padding: 0rem;
  }
  .cid-tCmzfOWIBq .left-block {
    padding: 2rem 1rem;
  }
}
.cid-tCmzfOWIBq .btn {
  margin-left: 0rem;
}
.cid-tCmzfOWIBq .box {
  background-image: url("../../../assets/images/applebee-marketing-7-2000x1333.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCmzfOWIBq .icon-wrap {
  border: 3px solid #ffb81c !important;
  background-color: #ffffff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.cid-tCmzfOWIBq .icon-wrap:hover span {
  color: #ffffff;
}
.cid-tCmzfOWIBq .icon-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0.67, 0, 1.01);
}
.cid-tCmzfOWIBq .icon-wrap:hover::before {
  background-color: #b539cf;
  transform: scaleY(1);
}
.cid-tCmzfOWIBq .mbr-media span {
  font-size: 16px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffb81c;
}
.cid-tCmzfOWIBq .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-tCmzfOWIBq .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tCmzfOWIBq .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tCmzfOWIBq .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tCmzfOWIBq a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tCmzfOWIBq a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tCmzfOWIBq {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.cid-tCmzfOWIBq .mbr-text {
  margin-bottom: 2rem;
}
.cid-tCmzfOWIBq .mbr-section-title {
  margin-bottom: 2rem;
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tCmzfOWIBq .left-block {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tCmzfOWIBq .video-block {
    padding-right: 0rem;
  }
  .cid-tCmzfOWIBq .row {
    padding-right: 0rem;
  }
  .cid-tCmzfOWIBq .left-block {
    padding: 7.5rem 5.5rem 7.5rem 5rem;
  }
  .cid-tCmzfOWIBq .box {
    height: 100%;
  }
}
.cid-tCmzfOWIBq .mbr-text,
.cid-tCmzfOWIBq .mbr-section-btn {
  text-align: left;
}
.cid-tCmzfPfVsB {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tCmzfPfVsB h1 {
  margin-bottom: 0.2rem;
}
.cid-tCmzfPfVsB .container-fluid {
  padding: 0;
}
.cid-tCmzfPfVsB img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-tCmzfPfVsB .mbr-figure {
  height: 100%;
}
.cid-tCmzfPfVsB .col-lg-6 {
  padding: 0;
}
.cid-tCmzfPfVsB .mbr-text {
  color: #747474;
}
.cid-tCmzfPfVsB hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-tCmzfPfVsB .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-tCmzfPfVsB .mbr-section-subtitle-1 {
  color: #b01cff;
}
.cid-tCmzfPfVsB .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-tCmzfPfVsB .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tCmzfPfVsB .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tCmzfPfVsB .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-tCmzfPfVsB .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-tCmzfPfVsB .left-block {
    margin-top: 4.5rem;
  }
}
.cid-tCmzfPfVsB .btn {
  color: #101010 !important;
}
.cid-tCmzfPfVsB .btn:hover {
  color: #ffffff !important;
}
.cid-tCmzfPfVsB .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tCmzfPfVsB .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tCmzfPEcUa {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/adobestock-260438796-honeycomb-1344x867.webp");
}
.cid-tCmzfPEcUa .carousel {
  z-index: 2;
  position: relative;
}
.cid-tCmzfPEcUa .user {
  padding: 0!important;
}
.cid-tCmzfPEcUa .user_image {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.8rem;
  border: 1px solid lightgray;
  position: relative;
}
.cid-tCmzfPEcUa .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tCmzfPEcUa .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tCmzfPEcUa .carousel-item.active,
.cid-tCmzfPEcUa .carousel-item-next,
.cid-tCmzfPEcUa .carousel-item-prev {
  display: flex;
}
.cid-tCmzfPEcUa .user_name {
  margin: 0;
  color: #ffffff;
}
.cid-tCmzfPEcUa .carousel-controls a {
  font-size: 2rem;
}
.cid-tCmzfPEcUa .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
  opacity: 0.5;
}
.cid-tCmzfPEcUa .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-tCmzfPEcUa ol {
  margin-bottom: 0;
  bottom: -2.2rem;
}
.cid-tCmzfPEcUa .carousel-indicators li {
  width: 10px;
  height: 10px;
  margin: auto 7px;
  border: none;
  background: #ffffff;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
  position: relative;
}
.cid-tCmzfPEcUa .carousel-indicators li:hover {
  opacity: 1;
}
.cid-tCmzfPEcUa .carousel-indicators .active {
  opacity: 1;
  width: 12px;
  height: 12px;
}
.cid-tCmzfPEcUa .user_status {
  color: #767676;
}
.cid-tCmzfPEcUa .title {
  color: #ffffff;
  margin-bottom: 3.8rem;
}
.cid-tCmzfPEcUa .mbr-text {
  margin-bottom: 1.7rem;
  text-align: left;
  color: #101010;
}
.cid-tCmzfPEcUa .title,
.cid-tCmzfPEcUa .line-align {
  color: #101010;
}
.cid-tCmzfQdDt1 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tCmzfQdDt1 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tCmzfQdDt1 .container {
    position: relative;
  }
  .cid-tCmzfQdDt1 .row {
    margin: 0;
  }
  .cid-tCmzfQdDt1 h2 {
    margin: 0;
  }
}
.cid-tCmzfQdDt1 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tCmzfQdDt1 .mbr-text {
  margin-top: 1.4rem;
  text-align: left;
}
.cid-tCmzfQvRFl {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/office-3.webp");
}
.cid-tCmzfQvRFl .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tCmzfQvRFl .align-center {
    text-align: center;
  }
}
.cid-tCmzfQIV9T {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tCmzfQIV9T h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tCmzfQIV9T .container {
    position: relative;
  }
  .cid-tCmzfQIV9T .row {
    margin: 0;
  }
  .cid-tCmzfQIV9T h2 {
    margin: 0;
  }
}
.cid-tCmzfQIV9T .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-tCmzfQIV9T .mbr-section-subtitle {
  color: #b01cff;
}
.cid-tCmzfQIV9T .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tCmzfQIV9T .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tCmzfQVTpA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #101010;
}
.cid-tCmzfQVTpA .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tCmzfQVTpA textarea {
  min-height: 150px;
}
.cid-tCmzfQVTpA input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tCmzfQVTpA textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tCmzfQVTpA .form-control,
.cid-tCmzfQVTpA .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tCmzfQVTpA .form-control input::-webkit-input-placeholder,
.cid-tCmzfQVTpA .field-input input::-webkit-input-placeholder,
.cid-tCmzfQVTpA .form-control textarea::-webkit-input-placeholder,
.cid-tCmzfQVTpA .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tCmzfQVTpA .form-control input:-moz-placeholder,
.cid-tCmzfQVTpA .field-input input:-moz-placeholder,
.cid-tCmzfQVTpA .form-control textarea:-moz-placeholder,
.cid-tCmzfQVTpA .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tCmzfQVTpA .jq-number__spin:hover,
.cid-tCmzfQVTpA .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tCmzfQVTpA .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tCmzfQVTpA .jq-selectbox li,
.cid-tCmzfQVTpA .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tCmzfQVTpA .jq-selectbox li:hover,
.cid-tCmzfQVTpA .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tCmzfQVTpA .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tCmzfQVTpA .jq-number__spin.minus:hover:after,
.cid-tCmzfQVTpA .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tCmzfQVTpA .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tCmzfQVTpA .jq-number__spin.minus:after,
.cid-tCmzfQVTpA .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tCmzfQVTpA .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tCmzfQVTpA .social-list {
    margin-bottom: 3rem;
  }
  .cid-tCmzfQVTpA .email-input {
    margin-top: 2rem;
  }
}
.cid-tCmzfQVTpA .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tCmzfQVTpA .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tCmzfQVTpA .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tCmzfQVTpA .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tCmzfQVTpA .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tCmzfQVTpA .social-list {
  display: flex;
}
.cid-tCmzfQVTpA .social-list a {
  transition: .3s;
}
.cid-tCmzfQVTpA .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tCmzfQVTpA .row {
  align-items: center;
}
.cid-tCmzfQVTpA .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tCmzfQVTpA .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tCmzfQVTpA .form-btn {
  margin-top: 2.5rem;
}
.cid-tCmzfQVTpA input::-webkit-input-placeholder,
.cid-tCmzfQVTpA textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tCmzfQVTpA input:-moz-placeholder,
.cid-tCmzfQVTpA textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tCmzfQVTpA .media-content {
    padding-right: 3rem;
  }
  .cid-tCmzfQVTpA .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tCmzfQVTpA .row {
    padding: 0 1rem;
  }
}
.cid-tCmzfQVTpA .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tCmzfQVTpA .form-btn {
    width: 100%;
  }
  .cid-tCmzfQVTpA .btn {
    width: 100%;
  }
}
.cid-tCmzfQVTpA .mbr-text,
.cid-tCmzfQVTpA .mbr-section-btn {
  color: #ffffff;
}
.cid-tKhkWmMi6p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKhkWmMi6p .media-container-row {
  align-items: center;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKhkWmMi6p .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKhkWmMi6p .foot-menu-item {
  transform: 0.2s;
}
.cid-tKhkWmMi6p .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKhkWmMi6p .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKhkWmMi6p .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKhkWmMi6p .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: center;
  }
  .cid-tKhkWmMi6p .mbr-text {
    text-align: center;
  }
  .cid-tKhkWmMi6p .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKhkWmMi6p .link:hover {
  color: #ffffff;
}
.cid-tKhkWmMi6p .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKhkWmMi6p foot-menu-item P {
  color: #ffffff;
}
.cid-tCnaHCabCh .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tCnaHCabCh .nav-item:focus,
.cid-tCnaHCabCh .nav-link:focus {
  outline: none;
}
.cid-tCnaHCabCh .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-tCnaHCabCh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCnaHCabCh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tCnaHCabCh .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-tCnaHCabCh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCnaHCabCh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCnaHCabCh .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tCnaHCabCh .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tCnaHCabCh .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tCnaHCabCh .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tCnaHCabCh .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCnaHCabCh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCnaHCabCh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCnaHCabCh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tCnaHCabCh .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tCnaHCabCh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCnaHCabCh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCnaHCabCh .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-tCnaHCabCh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCnaHCabCh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tCnaHCabCh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tCnaHCabCh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCnaHCabCh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCnaHCabCh .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tCnaHCabCh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCnaHCabCh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCnaHCabCh .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-tCnaHCabCh .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tCnaHCabCh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCnaHCabCh .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCnaHCabCh .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tCnaHCabCh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tCnaHCabCh .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tCnaHCabCh .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tCnaHCabCh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tCnaHCabCh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tCnaHCabCh .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tCnaHCabCh .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-tCnaHCabCh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCnaHCabCh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCnaHCabCh .dropdown-item.active,
.cid-tCnaHCabCh .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tCnaHCabCh .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tCnaHCabCh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tCnaHCabCh .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tCnaHCabCh .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tCnaHCabCh .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tCnaHCabCh .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tCnaHCabCh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tCnaHCabCh .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tCnaHCabCh .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tCnaHCabCh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tCnaHCabCh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCnaHCabCh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCnaHCabCh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tCnaHCabCh .navbar-buttons {
  text-align: center;
}
.cid-tCnaHCabCh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tCnaHCabCh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tCnaHCabCh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tCnaHCabCh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tCnaHCabCh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tCnaHCabCh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tCnaHCabCh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tCnaHCabCh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tCnaHCabCh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tCnaHCabCh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tCnaHCabCh .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tCnaHCabCh a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tCnaHCabCh .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tCnaHCabCh .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-tCnaHCabCh .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCnaHCabCh .navbar {
    height: 77px;
  }
  .cid-tCnaHCabCh .navbar.opened {
    height: auto;
  }
  .cid-tCnaHCabCh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCnaHCabCh a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tCnaHCabCh a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tCnaHCabCh .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tCnaHCabCh .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tCnaHCBM53 {
  padding-top: 195px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/adobestock-580109026-graphic-designer-2000x667.webp");
}
.cid-tCnaHCBM53 .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-tCnaHCBM53 input {
  padding: 0rem 1rem !important;
}
.cid-tCnaHCBM53 .title {
  margin-bottom: 1rem;
}
.cid-tCnaHCBM53 textarea {
  min-height: 160px;
}
.cid-tCnaHCBM53 input::-webkit-input-placeholder,
.cid-tCnaHCBM53 textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tCnaHCBM53 input:-moz-placeholder,
.cid-tCnaHCBM53 textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tCnaHCBM53 img {
    width: 100%;
  }
  .cid-tCnaHCBM53 form {
    margin-top: 2rem;
  }
}
.cid-tCnaHCBM53 .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tCnaHCBM53 .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tCnaHCBM53 .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tCnaHCBM53 .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tCnaHCBM53 .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tCnaHCBM53 .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tCnaHCBM53 .form-btn {
  width: 100%;
}
.cid-tCnaHCBM53 .link-btn {
  width: 100%;
}
.cid-tCnaHCBM53 h5 {
  margin-bottom: 0.2rem;
}
.cid-tCnaHCBM53 .mbr-form .btn {
  margin: 0;
}
.cid-tCnaHCBM53 .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tCnaHCBM53 .block-left {
  margin-bottom: 2.6rem;
}
.cid-tCnaHCBM53 .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tCnaHCBM53 .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tCnaHCBM53 .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tCnaHCBM53 .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tCnaHCBM53 .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tCnaHCBM53 .row {
    margin: 0rem;
  }
}
.cid-tCnaHCBM53 .btn {
  margin-left: 0rem;
}
.cid-tCnaHCBM53 P {
  text-align: left;
}
.cid-tCnaHCS5PR {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tCnaHCS5PR h1 {
  margin-bottom: 0.2rem;
}
.cid-tCnaHCS5PR .container-fluid {
  padding: 0;
}
.cid-tCnaHCS5PR img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-tCnaHCS5PR .mbr-figure {
  height: 100%;
}
.cid-tCnaHCS5PR .col-lg-6 {
  padding: 0;
}
.cid-tCnaHCS5PR .mbr-text {
  color: #747474;
}
.cid-tCnaHCS5PR hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-tCnaHCS5PR .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-tCnaHCS5PR .mbr-section-subtitle-1 {
  color: #b01cff;
}
.cid-tCnaHCS5PR .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-tCnaHCS5PR .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tCnaHCS5PR .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tCnaHCS5PR .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-tCnaHCS5PR .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-tCnaHCS5PR .left-block {
    margin-top: 4.5rem;
  }
}
.cid-tCnaHCS5PR .btn {
  color: #101010 !important;
}
.cid-tCnaHCS5PR .btn:hover {
  color: #ffffff !important;
}
.cid-tCnaHCS5PR .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tCnaHCS5PR .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tCnaHD86V7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101010;
}
@media (max-width: 992px) {
  .cid-tCnaHD86V7 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-tCnaHD86V7 .box {
    margin-top: 2.5rem;
    height: 300px;
  }
  .cid-tCnaHD86V7 .video-block {
    padding: 0rem;
  }
  .cid-tCnaHD86V7 .row {
    padding: 0rem;
  }
  .cid-tCnaHD86V7 .left-block {
    padding: 2rem 1rem;
  }
}
.cid-tCnaHD86V7 .btn {
  margin-left: 0rem;
}
.cid-tCnaHD86V7 .box {
  background-image: url("../../../assets/images/adobestock-580109026-graphic-designer-2000x667.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCnaHD86V7 .icon-wrap {
  border: 3px solid #ffb81c !important;
  background-color: #ffffff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.cid-tCnaHD86V7 .icon-wrap:hover span {
  color: #ffffff;
}
.cid-tCnaHD86V7 .icon-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0.67, 0, 1.01);
}
.cid-tCnaHD86V7 .icon-wrap:hover::before {
  background-color: #b539cf;
  transform: scaleY(1);
}
.cid-tCnaHD86V7 .mbr-media span {
  font-size: 16px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffb81c;
}
.cid-tCnaHD86V7 .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-tCnaHD86V7 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tCnaHD86V7 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tCnaHD86V7 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tCnaHD86V7 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tCnaHD86V7 a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tCnaHD86V7 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.cid-tCnaHD86V7 .mbr-text {
  margin-bottom: 2rem;
}
.cid-tCnaHD86V7 .mbr-section-title {
  margin-bottom: 2rem;
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tCnaHD86V7 .left-block {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tCnaHD86V7 .video-block {
    padding-right: 0rem;
  }
  .cid-tCnaHD86V7 .row {
    padding-right: 0rem;
  }
  .cid-tCnaHD86V7 .left-block {
    padding: 7.5rem 5.5rem 7.5rem 5rem;
  }
  .cid-tCnaHD86V7 .box {
    height: 100%;
  }
}
.cid-tCnaHD86V7 .mbr-text,
.cid-tCnaHD86V7 .mbr-section-btn {
  text-align: left;
}
.cid-tCnaHDrrkF {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tCnaHDrrkF h1 {
  margin-bottom: 0.2rem;
}
.cid-tCnaHDrrkF .container-fluid {
  padding: 0;
}
.cid-tCnaHDrrkF img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-tCnaHDrrkF .mbr-figure {
  height: 100%;
}
.cid-tCnaHDrrkF .col-lg-6 {
  padding: 0;
}
.cid-tCnaHDrrkF .mbr-text {
  color: #747474;
}
.cid-tCnaHDrrkF hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-tCnaHDrrkF .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-tCnaHDrrkF .mbr-section-subtitle-1 {
  color: #b01cff;
}
.cid-tCnaHDrrkF .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-tCnaHDrrkF .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tCnaHDrrkF .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tCnaHDrrkF .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-tCnaHDrrkF .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-tCnaHDrrkF .left-block {
    margin-top: 4.5rem;
  }
}
.cid-tCnaHDrrkF .btn {
  color: #101010 !important;
}
.cid-tCnaHDrrkF .btn:hover {
  color: #ffffff !important;
}
.cid-tCnaHDrrkF .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tCnaHDrrkF .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tCnaHDGSWN {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/adobestock-260438796-honeycomb-1344x867.webp");
}
.cid-tCnaHDGSWN .carousel {
  z-index: 2;
  position: relative;
}
.cid-tCnaHDGSWN .user {
  padding: 0!important;
}
.cid-tCnaHDGSWN .user_image {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.8rem;
  border: 1px solid lightgray;
  position: relative;
}
.cid-tCnaHDGSWN .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tCnaHDGSWN .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tCnaHDGSWN .carousel-item.active,
.cid-tCnaHDGSWN .carousel-item-next,
.cid-tCnaHDGSWN .carousel-item-prev {
  display: flex;
}
.cid-tCnaHDGSWN .user_name {
  margin: 0;
  color: #ffffff;
}
.cid-tCnaHDGSWN .carousel-controls a {
  font-size: 2rem;
}
.cid-tCnaHDGSWN .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
  opacity: 0.5;
}
.cid-tCnaHDGSWN .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-tCnaHDGSWN ol {
  margin-bottom: 0;
  bottom: -2.2rem;
}
.cid-tCnaHDGSWN .carousel-indicators li {
  width: 10px;
  height: 10px;
  margin: auto 7px;
  border: none;
  background: #ffffff;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
  position: relative;
}
.cid-tCnaHDGSWN .carousel-indicators li:hover {
  opacity: 1;
}
.cid-tCnaHDGSWN .carousel-indicators .active {
  opacity: 1;
  width: 12px;
  height: 12px;
}
.cid-tCnaHDGSWN .user_status {
  color: #767676;
}
.cid-tCnaHDGSWN .title {
  color: #ffffff;
  margin-bottom: 3.8rem;
}
.cid-tCnaHDGSWN .mbr-text {
  margin-bottom: 1.7rem;
  text-align: left;
  color: #101010;
}
.cid-tCnaHDGSWN .title,
.cid-tCnaHDGSWN .line-align {
  color: #101010;
}
.cid-tCnaHE5UlC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tCnaHE5UlC h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tCnaHE5UlC .container {
    position: relative;
  }
  .cid-tCnaHE5UlC .row {
    margin: 0;
  }
  .cid-tCnaHE5UlC h2 {
    margin: 0;
  }
}
.cid-tCnaHE5UlC .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tCnaHE5UlC .mbr-text {
  margin-top: 1.4rem;
  text-align: left;
}
.cid-tCnaHEjBru {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/office-3.webp");
}
.cid-tCnaHEjBru .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tCnaHEjBru .align-center {
    text-align: center;
  }
}
.cid-tCnaHEwHtR {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tCnaHEwHtR h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tCnaHEwHtR .container {
    position: relative;
  }
  .cid-tCnaHEwHtR .row {
    margin: 0;
  }
  .cid-tCnaHEwHtR h2 {
    margin: 0;
  }
}
.cid-tCnaHEwHtR .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-tCnaHEwHtR .mbr-section-subtitle {
  color: #b01cff;
}
.cid-tCnaHEwHtR .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tCnaHEwHtR .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tCnaHEKvlo {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #101010;
}
.cid-tCnaHEKvlo .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tCnaHEKvlo textarea {
  min-height: 150px;
}
.cid-tCnaHEKvlo input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tCnaHEKvlo textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tCnaHEKvlo .form-control,
.cid-tCnaHEKvlo .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tCnaHEKvlo .form-control input::-webkit-input-placeholder,
.cid-tCnaHEKvlo .field-input input::-webkit-input-placeholder,
.cid-tCnaHEKvlo .form-control textarea::-webkit-input-placeholder,
.cid-tCnaHEKvlo .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tCnaHEKvlo .form-control input:-moz-placeholder,
.cid-tCnaHEKvlo .field-input input:-moz-placeholder,
.cid-tCnaHEKvlo .form-control textarea:-moz-placeholder,
.cid-tCnaHEKvlo .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tCnaHEKvlo .jq-number__spin:hover,
.cid-tCnaHEKvlo .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tCnaHEKvlo .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tCnaHEKvlo .jq-selectbox li,
.cid-tCnaHEKvlo .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tCnaHEKvlo .jq-selectbox li:hover,
.cid-tCnaHEKvlo .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tCnaHEKvlo .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tCnaHEKvlo .jq-number__spin.minus:hover:after,
.cid-tCnaHEKvlo .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tCnaHEKvlo .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tCnaHEKvlo .jq-number__spin.minus:after,
.cid-tCnaHEKvlo .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tCnaHEKvlo .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tCnaHEKvlo .social-list {
    margin-bottom: 3rem;
  }
  .cid-tCnaHEKvlo .email-input {
    margin-top: 2rem;
  }
}
.cid-tCnaHEKvlo .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tCnaHEKvlo .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tCnaHEKvlo .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tCnaHEKvlo .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tCnaHEKvlo .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tCnaHEKvlo .social-list {
  display: flex;
}
.cid-tCnaHEKvlo .social-list a {
  transition: .3s;
}
.cid-tCnaHEKvlo .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tCnaHEKvlo .row {
  align-items: center;
}
.cid-tCnaHEKvlo .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tCnaHEKvlo .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tCnaHEKvlo .form-btn {
  margin-top: 2.5rem;
}
.cid-tCnaHEKvlo input::-webkit-input-placeholder,
.cid-tCnaHEKvlo textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tCnaHEKvlo input:-moz-placeholder,
.cid-tCnaHEKvlo textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tCnaHEKvlo .media-content {
    padding-right: 3rem;
  }
  .cid-tCnaHEKvlo .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tCnaHEKvlo .row {
    padding: 0 1rem;
  }
}
.cid-tCnaHEKvlo .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tCnaHEKvlo .form-btn {
    width: 100%;
  }
  .cid-tCnaHEKvlo .btn {
    width: 100%;
  }
}
.cid-tCnaHEKvlo .mbr-text,
.cid-tCnaHEKvlo .mbr-section-btn {
  color: #ffffff;
}
.cid-tKhkWmMi6p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKhkWmMi6p .media-container-row {
  align-items: center;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKhkWmMi6p .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKhkWmMi6p .foot-menu-item {
  transform: 0.2s;
}
.cid-tKhkWmMi6p .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKhkWmMi6p .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKhkWmMi6p .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKhkWmMi6p .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: center;
  }
  .cid-tKhkWmMi6p .mbr-text {
    text-align: center;
  }
  .cid-tKhkWmMi6p .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKhkWmMi6p .link:hover {
  color: #ffffff;
}
.cid-tKhkWmMi6p .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKhkWmMi6p foot-menu-item P {
  color: #ffffff;
}
.cid-tDc0xzN9aY .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tDc0xzN9aY .nav-item:focus,
.cid-tDc0xzN9aY .nav-link:focus {
  outline: none;
}
.cid-tDc0xzN9aY .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-tDc0xzN9aY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDc0xzN9aY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tDc0xzN9aY .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-tDc0xzN9aY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDc0xzN9aY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDc0xzN9aY .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tDc0xzN9aY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tDc0xzN9aY .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tDc0xzN9aY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tDc0xzN9aY .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDc0xzN9aY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDc0xzN9aY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDc0xzN9aY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tDc0xzN9aY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tDc0xzN9aY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDc0xzN9aY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDc0xzN9aY .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-tDc0xzN9aY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDc0xzN9aY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tDc0xzN9aY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tDc0xzN9aY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDc0xzN9aY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDc0xzN9aY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tDc0xzN9aY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDc0xzN9aY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDc0xzN9aY .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-tDc0xzN9aY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDc0xzN9aY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDc0xzN9aY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDc0xzN9aY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tDc0xzN9aY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tDc0xzN9aY .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tDc0xzN9aY .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tDc0xzN9aY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDc0xzN9aY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tDc0xzN9aY .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tDc0xzN9aY .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-tDc0xzN9aY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDc0xzN9aY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDc0xzN9aY .dropdown-item.active,
.cid-tDc0xzN9aY .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tDc0xzN9aY .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tDc0xzN9aY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tDc0xzN9aY .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tDc0xzN9aY .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tDc0xzN9aY .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tDc0xzN9aY .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tDc0xzN9aY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tDc0xzN9aY .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tDc0xzN9aY .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tDc0xzN9aY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tDc0xzN9aY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDc0xzN9aY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDc0xzN9aY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tDc0xzN9aY .navbar-buttons {
  text-align: center;
}
.cid-tDc0xzN9aY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tDc0xzN9aY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tDc0xzN9aY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDc0xzN9aY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDc0xzN9aY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDc0xzN9aY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDc0xzN9aY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDc0xzN9aY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tDc0xzN9aY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tDc0xzN9aY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDc0xzN9aY .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tDc0xzN9aY a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tDc0xzN9aY .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tDc0xzN9aY .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-tDc0xzN9aY .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDc0xzN9aY .navbar {
    height: 77px;
  }
  .cid-tDc0xzN9aY .navbar.opened {
    height: auto;
  }
  .cid-tDc0xzN9aY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDc0xzN9aY a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tDc0xzN9aY a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tDc0xzN9aY .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tDc0xzN9aY .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tDc0xAatyo {
  padding-top: 195px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/adobestock-493828753-media-interview-1613x1075.webp");
}
.cid-tDc0xAatyo .mbr-overlay {
  background-color: #000000;
  opacity: 0.3;
}
.cid-tDc0xAatyo input {
  padding: 0rem 1rem !important;
}
.cid-tDc0xAatyo .title {
  margin-bottom: 1rem;
}
.cid-tDc0xAatyo textarea {
  min-height: 160px;
}
.cid-tDc0xAatyo input::-webkit-input-placeholder,
.cid-tDc0xAatyo textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tDc0xAatyo input:-moz-placeholder,
.cid-tDc0xAatyo textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tDc0xAatyo img {
    width: 100%;
  }
  .cid-tDc0xAatyo form {
    margin-top: 2rem;
  }
}
.cid-tDc0xAatyo .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tDc0xAatyo .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tDc0xAatyo .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tDc0xAatyo .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tDc0xAatyo .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tDc0xAatyo .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tDc0xAatyo .form-btn {
  width: 100%;
}
.cid-tDc0xAatyo .link-btn {
  width: 100%;
}
.cid-tDc0xAatyo h5 {
  margin-bottom: 0.2rem;
}
.cid-tDc0xAatyo .mbr-form .btn {
  margin: 0;
}
.cid-tDc0xAatyo .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tDc0xAatyo .block-left {
  margin-bottom: 2.6rem;
}
.cid-tDc0xAatyo .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tDc0xAatyo .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tDc0xAatyo .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tDc0xAatyo .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tDc0xAatyo .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tDc0xAatyo .row {
    margin: 0rem;
  }
}
.cid-tDc0xAatyo .btn {
  margin-left: 0rem;
}
.cid-tDc0xAatyo P {
  text-align: left;
}
.cid-tDc0xAqHzr {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tDc0xAqHzr h1 {
  margin-bottom: 0.2rem;
}
.cid-tDc0xAqHzr .container-fluid {
  padding: 0;
}
.cid-tDc0xAqHzr img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-tDc0xAqHzr .mbr-figure {
  height: 100%;
}
.cid-tDc0xAqHzr .col-lg-6 {
  padding: 0;
}
.cid-tDc0xAqHzr .mbr-text {
  color: #747474;
}
.cid-tDc0xAqHzr hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-tDc0xAqHzr .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-tDc0xAqHzr .mbr-section-subtitle-1 {
  color: #b01cff;
}
.cid-tDc0xAqHzr .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-tDc0xAqHzr .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tDc0xAqHzr .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tDc0xAqHzr .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-tDc0xAqHzr .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-tDc0xAqHzr .left-block {
    margin-top: 4.5rem;
  }
}
.cid-tDc0xAqHzr .btn {
  color: #101010 !important;
}
.cid-tDc0xAqHzr .btn:hover {
  color: #ffffff !important;
}
.cid-tDc0xAqHzr .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tDc0xAqHzr .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tDc0xAETJx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101010;
}
@media (max-width: 992px) {
  .cid-tDc0xAETJx {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-tDc0xAETJx .box {
    margin-top: 2.5rem;
    height: 300px;
  }
  .cid-tDc0xAETJx .video-block {
    padding: 0rem;
  }
  .cid-tDc0xAETJx .row {
    padding: 0rem;
  }
  .cid-tDc0xAETJx .left-block {
    padding: 2rem 1rem;
  }
}
.cid-tDc0xAETJx .btn {
  margin-left: 0rem;
}
.cid-tDc0xAETJx .box {
  background-image: url("../../../assets/images/adobestock-191452162-office-group-1382x922.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDc0xAETJx .icon-wrap {
  border: 3px solid #ffb81c !important;
  background-color: #ffffff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.cid-tDc0xAETJx .icon-wrap:hover span {
  color: #ffffff;
}
.cid-tDc0xAETJx .icon-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0.67, 0, 1.01);
}
.cid-tDc0xAETJx .icon-wrap:hover::before {
  background-color: #b539cf;
  transform: scaleY(1);
}
.cid-tDc0xAETJx .mbr-media span {
  font-size: 16px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffb81c;
}
.cid-tDc0xAETJx .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-tDc0xAETJx .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tDc0xAETJx .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tDc0xAETJx .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tDc0xAETJx a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tDc0xAETJx a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tDc0xAETJx {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.cid-tDc0xAETJx .mbr-text {
  margin-bottom: 2rem;
}
.cid-tDc0xAETJx .mbr-section-title {
  margin-bottom: 2rem;
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tDc0xAETJx .left-block {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDc0xAETJx .video-block {
    padding-right: 0rem;
  }
  .cid-tDc0xAETJx .row {
    padding-right: 0rem;
  }
  .cid-tDc0xAETJx .left-block {
    padding: 7.5rem 5.5rem 7.5rem 5rem;
  }
  .cid-tDc0xAETJx .box {
    height: 100%;
  }
}
.cid-tDc0xAETJx .mbr-text,
.cid-tDc0xAETJx .mbr-section-btn {
  text-align: left;
}
.cid-tDc0xAWdMd {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tDc0xAWdMd h1 {
  margin-bottom: 0.2rem;
}
.cid-tDc0xAWdMd .container-fluid {
  padding: 0;
}
.cid-tDc0xAWdMd img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-tDc0xAWdMd .mbr-figure {
  height: 100%;
}
.cid-tDc0xAWdMd .col-lg-6 {
  padding: 0;
}
.cid-tDc0xAWdMd .mbr-text {
  color: #747474;
}
.cid-tDc0xAWdMd hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-tDc0xAWdMd .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-tDc0xAWdMd .mbr-section-subtitle-1 {
  color: #b01cff;
}
.cid-tDc0xAWdMd .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-tDc0xAWdMd .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tDc0xAWdMd .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tDc0xAWdMd .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-tDc0xAWdMd .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-tDc0xAWdMd .left-block {
    margin-top: 4.5rem;
  }
}
.cid-tDc0xAWdMd .btn {
  color: #101010 !important;
}
.cid-tDc0xAWdMd .btn:hover {
  color: #ffffff !important;
}
.cid-tDc0xAWdMd .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tDc0xAWdMd .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tDc0xBajZs {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/adobestock-260438796-honeycomb-1344x867.webp");
}
.cid-tDc0xBajZs .carousel {
  z-index: 2;
  position: relative;
}
.cid-tDc0xBajZs .user {
  padding: 0!important;
}
.cid-tDc0xBajZs .user_image {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.8rem;
  border: 1px solid lightgray;
  position: relative;
}
.cid-tDc0xBajZs .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tDc0xBajZs .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tDc0xBajZs .carousel-item.active,
.cid-tDc0xBajZs .carousel-item-next,
.cid-tDc0xBajZs .carousel-item-prev {
  display: flex;
}
.cid-tDc0xBajZs .user_name {
  margin: 0;
  color: #ffffff;
}
.cid-tDc0xBajZs .carousel-controls a {
  font-size: 2rem;
}
.cid-tDc0xBajZs .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
  opacity: 0.5;
}
.cid-tDc0xBajZs .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-tDc0xBajZs ol {
  margin-bottom: 0;
  bottom: -2.2rem;
}
.cid-tDc0xBajZs .carousel-indicators li {
  width: 10px;
  height: 10px;
  margin: auto 7px;
  border: none;
  background: #ffffff;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
  position: relative;
}
.cid-tDc0xBajZs .carousel-indicators li:hover {
  opacity: 1;
}
.cid-tDc0xBajZs .carousel-indicators .active {
  opacity: 1;
  width: 12px;
  height: 12px;
}
.cid-tDc0xBajZs .user_status {
  color: #767676;
}
.cid-tDc0xBajZs .title {
  color: #ffffff;
  margin-bottom: 3.8rem;
}
.cid-tDc0xBajZs .mbr-text {
  margin-bottom: 1.7rem;
  text-align: left;
  color: #101010;
}
.cid-tDc0xBajZs .title,
.cid-tDc0xBajZs .line-align {
  color: #101010;
}
.cid-tDc0xBz8q8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDc0xBz8q8 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tDc0xBz8q8 .container {
    position: relative;
  }
  .cid-tDc0xBz8q8 .row {
    margin: 0;
  }
  .cid-tDc0xBz8q8 h2 {
    margin: 0;
  }
}
.cid-tDc0xBz8q8 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tDc0xBz8q8 .mbr-text {
  margin-top: 1.4rem;
  text-align: left;
}
.cid-tDc0xBOxiM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/office-3.webp");
}
.cid-tDc0xBOxiM .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tDc0xBOxiM .align-center {
    text-align: center;
  }
}
.cid-tDc0xC3aE3 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDc0xC3aE3 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tDc0xC3aE3 .container {
    position: relative;
  }
  .cid-tDc0xC3aE3 .row {
    margin: 0;
  }
  .cid-tDc0xC3aE3 h2 {
    margin: 0;
  }
}
.cid-tDc0xC3aE3 .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-tDc0xC3aE3 .mbr-section-subtitle {
  color: #b01cff;
}
.cid-tDc0xC3aE3 .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tDc0xC3aE3 .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tDc0xChMzw {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #101010;
}
.cid-tDc0xChMzw .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tDc0xChMzw textarea {
  min-height: 150px;
}
.cid-tDc0xChMzw input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tDc0xChMzw textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tDc0xChMzw .form-control,
.cid-tDc0xChMzw .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tDc0xChMzw .form-control input::-webkit-input-placeholder,
.cid-tDc0xChMzw .field-input input::-webkit-input-placeholder,
.cid-tDc0xChMzw .form-control textarea::-webkit-input-placeholder,
.cid-tDc0xChMzw .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tDc0xChMzw .form-control input:-moz-placeholder,
.cid-tDc0xChMzw .field-input input:-moz-placeholder,
.cid-tDc0xChMzw .form-control textarea:-moz-placeholder,
.cid-tDc0xChMzw .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tDc0xChMzw .jq-number__spin:hover,
.cid-tDc0xChMzw .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tDc0xChMzw .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tDc0xChMzw .jq-selectbox li,
.cid-tDc0xChMzw .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tDc0xChMzw .jq-selectbox li:hover,
.cid-tDc0xChMzw .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tDc0xChMzw .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tDc0xChMzw .jq-number__spin.minus:hover:after,
.cid-tDc0xChMzw .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tDc0xChMzw .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tDc0xChMzw .jq-number__spin.minus:after,
.cid-tDc0xChMzw .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tDc0xChMzw .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tDc0xChMzw .social-list {
    margin-bottom: 3rem;
  }
  .cid-tDc0xChMzw .email-input {
    margin-top: 2rem;
  }
}
.cid-tDc0xChMzw .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tDc0xChMzw .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tDc0xChMzw .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tDc0xChMzw .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tDc0xChMzw .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tDc0xChMzw .social-list {
  display: flex;
}
.cid-tDc0xChMzw .social-list a {
  transition: .3s;
}
.cid-tDc0xChMzw .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tDc0xChMzw .row {
  align-items: center;
}
.cid-tDc0xChMzw .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tDc0xChMzw .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tDc0xChMzw .form-btn {
  margin-top: 2.5rem;
}
.cid-tDc0xChMzw input::-webkit-input-placeholder,
.cid-tDc0xChMzw textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tDc0xChMzw input:-moz-placeholder,
.cid-tDc0xChMzw textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tDc0xChMzw .media-content {
    padding-right: 3rem;
  }
  .cid-tDc0xChMzw .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tDc0xChMzw .row {
    padding: 0 1rem;
  }
}
.cid-tDc0xChMzw .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tDc0xChMzw .form-btn {
    width: 100%;
  }
  .cid-tDc0xChMzw .btn {
    width: 100%;
  }
}
.cid-tDc0xChMzw .mbr-text,
.cid-tDc0xChMzw .mbr-section-btn {
  color: #ffffff;
}
.cid-tKhkWmMi6p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKhkWmMi6p .media-container-row {
  align-items: center;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKhkWmMi6p .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKhkWmMi6p .foot-menu-item {
  transform: 0.2s;
}
.cid-tKhkWmMi6p .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKhkWmMi6p .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKhkWmMi6p .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKhkWmMi6p .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: center;
  }
  .cid-tKhkWmMi6p .mbr-text {
    text-align: center;
  }
  .cid-tKhkWmMi6p .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKhkWmMi6p .link:hover {
  color: #ffffff;
}
.cid-tKhkWmMi6p .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKhkWmMi6p foot-menu-item P {
  color: #ffffff;
}
.cid-tDdkya7mjK .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tDdkya7mjK .nav-item:focus,
.cid-tDdkya7mjK .nav-link:focus {
  outline: none;
}
.cid-tDdkya7mjK .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-tDdkya7mjK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDdkya7mjK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tDdkya7mjK .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-tDdkya7mjK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDdkya7mjK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDdkya7mjK .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tDdkya7mjK .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tDdkya7mjK .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tDdkya7mjK .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tDdkya7mjK .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDdkya7mjK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDdkya7mjK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDdkya7mjK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tDdkya7mjK .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tDdkya7mjK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDdkya7mjK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDdkya7mjK .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-tDdkya7mjK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDdkya7mjK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tDdkya7mjK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tDdkya7mjK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDdkya7mjK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDdkya7mjK .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tDdkya7mjK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDdkya7mjK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDdkya7mjK .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-tDdkya7mjK .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDdkya7mjK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDdkya7mjK .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDdkya7mjK .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tDdkya7mjK .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tDdkya7mjK .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tDdkya7mjK .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tDdkya7mjK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDdkya7mjK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tDdkya7mjK .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tDdkya7mjK .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-tDdkya7mjK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDdkya7mjK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDdkya7mjK .dropdown-item.active,
.cid-tDdkya7mjK .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tDdkya7mjK .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tDdkya7mjK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tDdkya7mjK .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tDdkya7mjK .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tDdkya7mjK .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tDdkya7mjK .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tDdkya7mjK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tDdkya7mjK .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tDdkya7mjK .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tDdkya7mjK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tDdkya7mjK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDdkya7mjK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDdkya7mjK ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tDdkya7mjK .navbar-buttons {
  text-align: center;
}
.cid-tDdkya7mjK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tDdkya7mjK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tDdkya7mjK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDdkya7mjK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDdkya7mjK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDdkya7mjK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDdkya7mjK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDdkya7mjK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tDdkya7mjK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tDdkya7mjK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDdkya7mjK .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tDdkya7mjK a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tDdkya7mjK .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tDdkya7mjK .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-tDdkya7mjK .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDdkya7mjK .navbar {
    height: 77px;
  }
  .cid-tDdkya7mjK .navbar.opened {
    height: auto;
  }
  .cid-tDdkya7mjK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDdkya7mjK a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tDdkya7mjK a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tDdkya7mjK .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tDdkya7mjK .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tDdkyawLxY {
  padding-top: 195px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/adobestock-370742959-man-copywriting-1577x1052.webp");
}
.cid-tDdkyawLxY .mbr-overlay {
  background-color: #000000;
  opacity: 0.3;
}
.cid-tDdkyawLxY input {
  padding: 0rem 1rem !important;
}
.cid-tDdkyawLxY .title {
  margin-bottom: 1rem;
}
.cid-tDdkyawLxY textarea {
  min-height: 160px;
}
.cid-tDdkyawLxY input::-webkit-input-placeholder,
.cid-tDdkyawLxY textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tDdkyawLxY input:-moz-placeholder,
.cid-tDdkyawLxY textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tDdkyawLxY img {
    width: 100%;
  }
  .cid-tDdkyawLxY form {
    margin-top: 2rem;
  }
}
.cid-tDdkyawLxY .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tDdkyawLxY .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tDdkyawLxY .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tDdkyawLxY .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tDdkyawLxY .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tDdkyawLxY .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tDdkyawLxY .form-btn {
  width: 100%;
}
.cid-tDdkyawLxY .link-btn {
  width: 100%;
}
.cid-tDdkyawLxY h5 {
  margin-bottom: 0.2rem;
}
.cid-tDdkyawLxY .mbr-form .btn {
  margin: 0;
}
.cid-tDdkyawLxY .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tDdkyawLxY .block-left {
  margin-bottom: 2.6rem;
}
.cid-tDdkyawLxY .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tDdkyawLxY .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tDdkyawLxY .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tDdkyawLxY .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tDdkyawLxY .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tDdkyawLxY .row {
    margin: 0rem;
  }
}
.cid-tDdkyawLxY .btn {
  margin-left: 0rem;
}
.cid-tDdkyawLxY P {
  text-align: left;
}
.cid-tDdkyaMqHS {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tDdkyaMqHS h1 {
  margin-bottom: 0.2rem;
}
.cid-tDdkyaMqHS .container-fluid {
  padding: 0;
}
.cid-tDdkyaMqHS img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-tDdkyaMqHS .mbr-figure {
  height: 100%;
}
.cid-tDdkyaMqHS .col-lg-6 {
  padding: 0;
}
.cid-tDdkyaMqHS .mbr-text {
  color: #747474;
}
.cid-tDdkyaMqHS hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-tDdkyaMqHS .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-tDdkyaMqHS .mbr-section-subtitle-1 {
  color: #b01cff;
}
.cid-tDdkyaMqHS .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-tDdkyaMqHS .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tDdkyaMqHS .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tDdkyaMqHS .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-tDdkyaMqHS .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-tDdkyaMqHS .left-block {
    margin-top: 4.5rem;
  }
}
.cid-tDdkyaMqHS .btn {
  color: #101010 !important;
}
.cid-tDdkyaMqHS .btn:hover {
  color: #ffffff !important;
}
.cid-tDdkyaMqHS .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tDdkyaMqHS .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tDdkyb0Zxt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101010;
}
@media (max-width: 992px) {
  .cid-tDdkyb0Zxt {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-tDdkyb0Zxt .box {
    margin-top: 2.5rem;
    height: 300px;
  }
  .cid-tDdkyb0Zxt .video-block {
    padding: 0rem;
  }
  .cid-tDdkyb0Zxt .row {
    padding: 0rem;
  }
  .cid-tDdkyb0Zxt .left-block {
    padding: 2rem 1rem;
  }
}
.cid-tDdkyb0Zxt .btn {
  margin-left: 0rem;
}
.cid-tDdkyb0Zxt .box {
  background-image: url("../../../assets/images/adobestock-391462624-copywriting-1613x1075.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDdkyb0Zxt .icon-wrap {
  border: 3px solid #ffb81c !important;
  background-color: #ffffff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.cid-tDdkyb0Zxt .icon-wrap:hover span {
  color: #ffffff;
}
.cid-tDdkyb0Zxt .icon-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0.67, 0, 1.01);
}
.cid-tDdkyb0Zxt .icon-wrap:hover::before {
  background-color: #b539cf;
  transform: scaleY(1);
}
.cid-tDdkyb0Zxt .mbr-media span {
  font-size: 16px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffb81c;
}
.cid-tDdkyb0Zxt .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-tDdkyb0Zxt .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tDdkyb0Zxt .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tDdkyb0Zxt .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tDdkyb0Zxt a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tDdkyb0Zxt a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tDdkyb0Zxt {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.cid-tDdkyb0Zxt .mbr-text {
  margin-bottom: 2rem;
}
.cid-tDdkyb0Zxt .mbr-section-title {
  margin-bottom: 2rem;
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tDdkyb0Zxt .left-block {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDdkyb0Zxt .video-block {
    padding-right: 0rem;
  }
  .cid-tDdkyb0Zxt .row {
    padding-right: 0rem;
  }
  .cid-tDdkyb0Zxt .left-block {
    padding: 7.5rem 5.5rem 7.5rem 5rem;
  }
  .cid-tDdkyb0Zxt .box {
    height: 100%;
  }
}
.cid-tDdkyb0Zxt .mbr-text,
.cid-tDdkyb0Zxt .mbr-section-btn {
  text-align: left;
}
.cid-tDdkybhrvc {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tDdkybhrvc h1 {
  margin-bottom: 0.2rem;
}
.cid-tDdkybhrvc .container-fluid {
  padding: 0;
}
.cid-tDdkybhrvc img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-tDdkybhrvc .mbr-figure {
  height: 100%;
}
.cid-tDdkybhrvc .col-lg-6 {
  padding: 0;
}
.cid-tDdkybhrvc .mbr-text {
  color: #747474;
}
.cid-tDdkybhrvc hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-tDdkybhrvc .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-tDdkybhrvc .mbr-section-subtitle-1 {
  color: #b01cff;
}
.cid-tDdkybhrvc .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-tDdkybhrvc .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tDdkybhrvc .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tDdkybhrvc .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-tDdkybhrvc .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-tDdkybhrvc .left-block {
    margin-top: 4.5rem;
  }
}
.cid-tDdkybhrvc .btn {
  color: #101010 !important;
}
.cid-tDdkybhrvc .btn:hover {
  color: #ffffff !important;
}
.cid-tDdkybhrvc .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tDdkybhrvc .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tDdkybvHSY {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/adobestock-260438796-honeycomb-1344x867.webp");
}
.cid-tDdkybvHSY .carousel {
  z-index: 2;
  position: relative;
}
.cid-tDdkybvHSY .user {
  padding: 0!important;
}
.cid-tDdkybvHSY .user_image {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.8rem;
  border: 1px solid lightgray;
  position: relative;
}
.cid-tDdkybvHSY .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tDdkybvHSY .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tDdkybvHSY .carousel-item.active,
.cid-tDdkybvHSY .carousel-item-next,
.cid-tDdkybvHSY .carousel-item-prev {
  display: flex;
}
.cid-tDdkybvHSY .user_name {
  margin: 0;
  color: #ffffff;
}
.cid-tDdkybvHSY .carousel-controls a {
  font-size: 2rem;
}
.cid-tDdkybvHSY .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
  opacity: 0.5;
}
.cid-tDdkybvHSY .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-tDdkybvHSY ol {
  margin-bottom: 0;
  bottom: -2.2rem;
}
.cid-tDdkybvHSY .carousel-indicators li {
  width: 10px;
  height: 10px;
  margin: auto 7px;
  border: none;
  background: #ffffff;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
  position: relative;
}
.cid-tDdkybvHSY .carousel-indicators li:hover {
  opacity: 1;
}
.cid-tDdkybvHSY .carousel-indicators .active {
  opacity: 1;
  width: 12px;
  height: 12px;
}
.cid-tDdkybvHSY .user_status {
  color: #767676;
}
.cid-tDdkybvHSY .title {
  color: #ffffff;
  margin-bottom: 3.8rem;
}
.cid-tDdkybvHSY .mbr-text {
  margin-bottom: 1.7rem;
  text-align: center;
  color: #101010;
}
.cid-tDdkybvHSY .title,
.cid-tDdkybvHSY .line-align {
  color: #101010;
}
.cid-tDdkybQmXE {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDdkybQmXE h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tDdkybQmXE .container {
    position: relative;
  }
  .cid-tDdkybQmXE .row {
    margin: 0;
  }
  .cid-tDdkybQmXE h2 {
    margin: 0;
  }
}
.cid-tDdkybQmXE .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tDdkybQmXE .mbr-text {
  margin-top: 1.4rem;
  text-align: left;
}
.cid-tDdkyc2lXl {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/office-3.webp");
}
.cid-tDdkyc2lXl .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tDdkyc2lXl .align-center {
    text-align: center;
  }
}
.cid-tDdkycg60O {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDdkycg60O h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tDdkycg60O .container {
    position: relative;
  }
  .cid-tDdkycg60O .row {
    margin: 0;
  }
  .cid-tDdkycg60O h2 {
    margin: 0;
  }
}
.cid-tDdkycg60O .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-tDdkycg60O .mbr-section-subtitle {
  color: #b01cff;
}
.cid-tDdkycg60O .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tDdkycg60O .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tDdkyctz4C {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #101010;
}
.cid-tDdkyctz4C .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tDdkyctz4C textarea {
  min-height: 150px;
}
.cid-tDdkyctz4C input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tDdkyctz4C textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tDdkyctz4C .form-control,
.cid-tDdkyctz4C .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tDdkyctz4C .form-control input::-webkit-input-placeholder,
.cid-tDdkyctz4C .field-input input::-webkit-input-placeholder,
.cid-tDdkyctz4C .form-control textarea::-webkit-input-placeholder,
.cid-tDdkyctz4C .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tDdkyctz4C .form-control input:-moz-placeholder,
.cid-tDdkyctz4C .field-input input:-moz-placeholder,
.cid-tDdkyctz4C .form-control textarea:-moz-placeholder,
.cid-tDdkyctz4C .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tDdkyctz4C .jq-number__spin:hover,
.cid-tDdkyctz4C .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tDdkyctz4C .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tDdkyctz4C .jq-selectbox li,
.cid-tDdkyctz4C .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tDdkyctz4C .jq-selectbox li:hover,
.cid-tDdkyctz4C .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tDdkyctz4C .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tDdkyctz4C .jq-number__spin.minus:hover:after,
.cid-tDdkyctz4C .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tDdkyctz4C .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tDdkyctz4C .jq-number__spin.minus:after,
.cid-tDdkyctz4C .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tDdkyctz4C .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tDdkyctz4C .social-list {
    margin-bottom: 3rem;
  }
  .cid-tDdkyctz4C .email-input {
    margin-top: 2rem;
  }
}
.cid-tDdkyctz4C .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tDdkyctz4C .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tDdkyctz4C .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tDdkyctz4C .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tDdkyctz4C .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tDdkyctz4C .social-list {
  display: flex;
}
.cid-tDdkyctz4C .social-list a {
  transition: .3s;
}
.cid-tDdkyctz4C .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tDdkyctz4C .row {
  align-items: center;
}
.cid-tDdkyctz4C .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tDdkyctz4C .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tDdkyctz4C .form-btn {
  margin-top: 2.5rem;
}
.cid-tDdkyctz4C input::-webkit-input-placeholder,
.cid-tDdkyctz4C textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tDdkyctz4C input:-moz-placeholder,
.cid-tDdkyctz4C textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tDdkyctz4C .media-content {
    padding-right: 3rem;
  }
  .cid-tDdkyctz4C .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tDdkyctz4C .row {
    padding: 0 1rem;
  }
}
.cid-tDdkyctz4C .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tDdkyctz4C .form-btn {
    width: 100%;
  }
  .cid-tDdkyctz4C .btn {
    width: 100%;
  }
}
.cid-tDdkyctz4C .mbr-text,
.cid-tDdkyctz4C .mbr-section-btn {
  color: #ffffff;
}
.cid-tKhkWmMi6p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKhkWmMi6p .media-container-row {
  align-items: center;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKhkWmMi6p .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKhkWmMi6p .foot-menu-item {
  transform: 0.2s;
}
.cid-tKhkWmMi6p .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKhkWmMi6p .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKhkWmMi6p .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKhkWmMi6p .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: center;
  }
  .cid-tKhkWmMi6p .mbr-text {
    text-align: center;
  }
  .cid-tKhkWmMi6p .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKhkWmMi6p .link:hover {
  color: #ffffff;
}
.cid-tKhkWmMi6p .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKhkWmMi6p foot-menu-item P {
  color: #ffffff;
}
.cid-tE3Q6zj85s .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tE3Q6zj85s .nav-item:focus,
.cid-tE3Q6zj85s .nav-link:focus {
  outline: none;
}
.cid-tE3Q6zj85s .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-tE3Q6zj85s .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tE3Q6zj85s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tE3Q6zj85s .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-tE3Q6zj85s .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tE3Q6zj85s .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tE3Q6zj85s .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tE3Q6zj85s .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tE3Q6zj85s .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tE3Q6zj85s .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tE3Q6zj85s .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tE3Q6zj85s .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tE3Q6zj85s .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tE3Q6zj85s .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tE3Q6zj85s .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tE3Q6zj85s .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tE3Q6zj85s .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tE3Q6zj85s .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-tE3Q6zj85s .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tE3Q6zj85s .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tE3Q6zj85s .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tE3Q6zj85s .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tE3Q6zj85s .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tE3Q6zj85s .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tE3Q6zj85s .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tE3Q6zj85s .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tE3Q6zj85s .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-tE3Q6zj85s .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tE3Q6zj85s .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tE3Q6zj85s .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tE3Q6zj85s .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tE3Q6zj85s .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tE3Q6zj85s .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tE3Q6zj85s .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tE3Q6zj85s .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tE3Q6zj85s .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tE3Q6zj85s .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tE3Q6zj85s .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-tE3Q6zj85s .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tE3Q6zj85s .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tE3Q6zj85s .dropdown-item.active,
.cid-tE3Q6zj85s .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tE3Q6zj85s .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tE3Q6zj85s .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tE3Q6zj85s .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tE3Q6zj85s .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tE3Q6zj85s .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tE3Q6zj85s .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tE3Q6zj85s .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tE3Q6zj85s .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tE3Q6zj85s .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tE3Q6zj85s .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tE3Q6zj85s .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tE3Q6zj85s .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tE3Q6zj85s ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tE3Q6zj85s .navbar-buttons {
  text-align: center;
}
.cid-tE3Q6zj85s button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tE3Q6zj85s button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tE3Q6zj85s button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tE3Q6zj85s button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tE3Q6zj85s button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tE3Q6zj85s button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tE3Q6zj85s nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tE3Q6zj85s nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tE3Q6zj85s nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tE3Q6zj85s nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tE3Q6zj85s .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tE3Q6zj85s a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tE3Q6zj85s .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tE3Q6zj85s .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-tE3Q6zj85s .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tE3Q6zj85s .navbar {
    height: 77px;
  }
  .cid-tE3Q6zj85s .navbar.opened {
    height: auto;
  }
  .cid-tE3Q6zj85s .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tE3Q6zj85s a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tE3Q6zj85s a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tE3Q6zj85s .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tE3Q6zj85s .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tE3Q6zIWGB {
  padding-top: 195px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/adobestock-288590987-web-designer-1293x862.webp");
}
.cid-tE3Q6zIWGB .mbr-overlay {
  background-color: #000000;
  opacity: 0.3;
}
.cid-tE3Q6zIWGB input {
  padding: 0rem 1rem !important;
}
.cid-tE3Q6zIWGB .title {
  margin-bottom: 1rem;
}
.cid-tE3Q6zIWGB textarea {
  min-height: 160px;
}
.cid-tE3Q6zIWGB input::-webkit-input-placeholder,
.cid-tE3Q6zIWGB textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tE3Q6zIWGB input:-moz-placeholder,
.cid-tE3Q6zIWGB textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tE3Q6zIWGB img {
    width: 100%;
  }
  .cid-tE3Q6zIWGB form {
    margin-top: 2rem;
  }
}
.cid-tE3Q6zIWGB .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tE3Q6zIWGB .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tE3Q6zIWGB .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tE3Q6zIWGB .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tE3Q6zIWGB .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tE3Q6zIWGB .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tE3Q6zIWGB .form-btn {
  width: 100%;
}
.cid-tE3Q6zIWGB .link-btn {
  width: 100%;
}
.cid-tE3Q6zIWGB h5 {
  margin-bottom: 0.2rem;
}
.cid-tE3Q6zIWGB .mbr-form .btn {
  margin: 0;
}
.cid-tE3Q6zIWGB .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tE3Q6zIWGB .block-left {
  margin-bottom: 2.6rem;
}
.cid-tE3Q6zIWGB .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tE3Q6zIWGB .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tE3Q6zIWGB .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tE3Q6zIWGB .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tE3Q6zIWGB .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tE3Q6zIWGB .row {
    margin: 0rem;
  }
}
.cid-tE3Q6zIWGB .btn {
  margin-left: 0rem;
}
.cid-tE3Q6zIWGB P {
  text-align: left;
}
.cid-tE3Q6zZADs {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tE3Q6zZADs h1 {
  margin-bottom: 0.2rem;
}
.cid-tE3Q6zZADs .container-fluid {
  padding: 0;
}
.cid-tE3Q6zZADs img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-tE3Q6zZADs .mbr-figure {
  height: 100%;
}
.cid-tE3Q6zZADs .col-lg-6 {
  padding: 0;
}
.cid-tE3Q6zZADs .mbr-text {
  color: #747474;
}
.cid-tE3Q6zZADs hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-tE3Q6zZADs .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-tE3Q6zZADs .mbr-section-subtitle-1 {
  color: #b01cff;
}
.cid-tE3Q6zZADs .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-tE3Q6zZADs .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tE3Q6zZADs .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tE3Q6zZADs .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-tE3Q6zZADs .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-tE3Q6zZADs .left-block {
    margin-top: 4.5rem;
  }
}
.cid-tE3Q6zZADs .btn {
  color: #101010 !important;
}
.cid-tE3Q6zZADs .btn:hover {
  color: #ffffff !important;
}
.cid-tE3Q6zZADs .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tE3Q6zZADs .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tE3Q6Af1ng {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101010;
}
@media (max-width: 992px) {
  .cid-tE3Q6Af1ng {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-tE3Q6Af1ng .box {
    margin-top: 2.5rem;
    height: 300px;
  }
  .cid-tE3Q6Af1ng .video-block {
    padding: 0rem;
  }
  .cid-tE3Q6Af1ng .row {
    padding: 0rem;
  }
  .cid-tE3Q6Af1ng .left-block {
    padding: 2rem 1rem;
  }
}
.cid-tE3Q6Af1ng .btn {
  margin-left: 0rem;
}
.cid-tE3Q6Af1ng .box {
  background-image: url("../../../assets/images/adobestock-348295063-web-wireframe-plan-1613x1075.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tE3Q6Af1ng .icon-wrap {
  border: 3px solid #ffb81c !important;
  background-color: #ffffff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.cid-tE3Q6Af1ng .icon-wrap:hover span {
  color: #ffffff;
}
.cid-tE3Q6Af1ng .icon-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0.67, 0, 1.01);
}
.cid-tE3Q6Af1ng .icon-wrap:hover::before {
  background-color: #b539cf;
  transform: scaleY(1);
}
.cid-tE3Q6Af1ng .mbr-media span {
  font-size: 16px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffb81c;
}
.cid-tE3Q6Af1ng .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-tE3Q6Af1ng .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tE3Q6Af1ng .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tE3Q6Af1ng .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tE3Q6Af1ng a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tE3Q6Af1ng a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tE3Q6Af1ng {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.cid-tE3Q6Af1ng .mbr-text {
  margin-bottom: 2rem;
}
.cid-tE3Q6Af1ng .mbr-section-title {
  margin-bottom: 2rem;
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tE3Q6Af1ng .left-block {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tE3Q6Af1ng .video-block {
    padding-right: 0rem;
  }
  .cid-tE3Q6Af1ng .row {
    padding-right: 0rem;
  }
  .cid-tE3Q6Af1ng .left-block {
    padding: 7.5rem 5.5rem 7.5rem 5rem;
  }
  .cid-tE3Q6Af1ng .box {
    height: 100%;
  }
}
.cid-tE3Q6Af1ng .mbr-text,
.cid-tE3Q6Af1ng .mbr-section-btn {
  text-align: left;
}
.cid-tE3Q6AyM1e {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tE3Q6AyM1e h1 {
  margin-bottom: 0.2rem;
}
.cid-tE3Q6AyM1e .container-fluid {
  padding: 0;
}
.cid-tE3Q6AyM1e img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-tE3Q6AyM1e .mbr-figure {
  height: 100%;
}
.cid-tE3Q6AyM1e .col-lg-6 {
  padding: 0;
}
.cid-tE3Q6AyM1e .mbr-text {
  color: #747474;
}
.cid-tE3Q6AyM1e hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-tE3Q6AyM1e .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-tE3Q6AyM1e .mbr-section-subtitle-1 {
  color: #b01cff;
}
.cid-tE3Q6AyM1e .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-tE3Q6AyM1e .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tE3Q6AyM1e .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tE3Q6AyM1e .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-tE3Q6AyM1e .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-tE3Q6AyM1e .left-block {
    margin-top: 4.5rem;
  }
}
.cid-tE3Q6AyM1e .btn {
  color: #101010 !important;
}
.cid-tE3Q6AyM1e .btn:hover {
  color: #ffffff !important;
}
.cid-tE3Q6AyM1e .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tE3Q6AyM1e .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tE3Q6AMUhZ {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/adobestock-260438796-honeycomb-1344x867.webp");
}
.cid-tE3Q6AMUhZ .carousel {
  z-index: 2;
  position: relative;
}
.cid-tE3Q6AMUhZ .user {
  padding: 0!important;
}
.cid-tE3Q6AMUhZ .user_image {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.8rem;
  border: 1px solid lightgray;
  position: relative;
}
.cid-tE3Q6AMUhZ .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tE3Q6AMUhZ .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tE3Q6AMUhZ .carousel-item.active,
.cid-tE3Q6AMUhZ .carousel-item-next,
.cid-tE3Q6AMUhZ .carousel-item-prev {
  display: flex;
}
.cid-tE3Q6AMUhZ .user_name {
  margin: 0;
  color: #ffffff;
}
.cid-tE3Q6AMUhZ .carousel-controls a {
  font-size: 2rem;
}
.cid-tE3Q6AMUhZ .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
  opacity: 0.5;
}
.cid-tE3Q6AMUhZ .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-tE3Q6AMUhZ ol {
  margin-bottom: 0;
  bottom: -2.2rem;
}
.cid-tE3Q6AMUhZ .carousel-indicators li {
  width: 10px;
  height: 10px;
  margin: auto 7px;
  border: none;
  background: #ffffff;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
  position: relative;
}
.cid-tE3Q6AMUhZ .carousel-indicators li:hover {
  opacity: 1;
}
.cid-tE3Q6AMUhZ .carousel-indicators .active {
  opacity: 1;
  width: 12px;
  height: 12px;
}
.cid-tE3Q6AMUhZ .user_status {
  color: #767676;
}
.cid-tE3Q6AMUhZ .title {
  color: #ffffff;
  margin-bottom: 3.8rem;
}
.cid-tE3Q6AMUhZ .mbr-text {
  margin-bottom: 1.7rem;
  text-align: center;
  color: #101010;
}
.cid-tE3Q6AMUhZ .title,
.cid-tE3Q6AMUhZ .line-align {
  color: #101010;
}
.cid-tE3Q6BbO6O {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tE3Q6BbO6O h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tE3Q6BbO6O .container {
    position: relative;
  }
  .cid-tE3Q6BbO6O .row {
    margin: 0;
  }
  .cid-tE3Q6BbO6O h2 {
    margin: 0;
  }
}
.cid-tE3Q6BbO6O .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tE3Q6BbO6O .mbr-text {
  margin-top: 1.4rem;
  text-align: left;
}
.cid-tE3Q6BqTfX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/office-3.webp");
}
.cid-tE3Q6BqTfX .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tE3Q6BqTfX .align-center {
    text-align: center;
  }
}
.cid-tE3Q6BE73O {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tE3Q6BE73O h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tE3Q6BE73O .container {
    position: relative;
  }
  .cid-tE3Q6BE73O .row {
    margin: 0;
  }
  .cid-tE3Q6BE73O h2 {
    margin: 0;
  }
}
.cid-tE3Q6BE73O .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-tE3Q6BE73O .mbr-section-subtitle {
  color: #b01cff;
}
.cid-tE3Q6BE73O .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tE3Q6BE73O .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tE3Q6BRcCp {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #101010;
}
.cid-tE3Q6BRcCp .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tE3Q6BRcCp textarea {
  min-height: 150px;
}
.cid-tE3Q6BRcCp input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tE3Q6BRcCp textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tE3Q6BRcCp .form-control,
.cid-tE3Q6BRcCp .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tE3Q6BRcCp .form-control input::-webkit-input-placeholder,
.cid-tE3Q6BRcCp .field-input input::-webkit-input-placeholder,
.cid-tE3Q6BRcCp .form-control textarea::-webkit-input-placeholder,
.cid-tE3Q6BRcCp .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tE3Q6BRcCp .form-control input:-moz-placeholder,
.cid-tE3Q6BRcCp .field-input input:-moz-placeholder,
.cid-tE3Q6BRcCp .form-control textarea:-moz-placeholder,
.cid-tE3Q6BRcCp .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tE3Q6BRcCp .jq-number__spin:hover,
.cid-tE3Q6BRcCp .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tE3Q6BRcCp .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tE3Q6BRcCp .jq-selectbox li,
.cid-tE3Q6BRcCp .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tE3Q6BRcCp .jq-selectbox li:hover,
.cid-tE3Q6BRcCp .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tE3Q6BRcCp .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tE3Q6BRcCp .jq-number__spin.minus:hover:after,
.cid-tE3Q6BRcCp .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tE3Q6BRcCp .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tE3Q6BRcCp .jq-number__spin.minus:after,
.cid-tE3Q6BRcCp .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tE3Q6BRcCp .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tE3Q6BRcCp .social-list {
    margin-bottom: 3rem;
  }
  .cid-tE3Q6BRcCp .email-input {
    margin-top: 2rem;
  }
}
.cid-tE3Q6BRcCp .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tE3Q6BRcCp .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tE3Q6BRcCp .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tE3Q6BRcCp .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tE3Q6BRcCp .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tE3Q6BRcCp .social-list {
  display: flex;
}
.cid-tE3Q6BRcCp .social-list a {
  transition: .3s;
}
.cid-tE3Q6BRcCp .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tE3Q6BRcCp .row {
  align-items: center;
}
.cid-tE3Q6BRcCp .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tE3Q6BRcCp .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tE3Q6BRcCp .form-btn {
  margin-top: 2.5rem;
}
.cid-tE3Q6BRcCp input::-webkit-input-placeholder,
.cid-tE3Q6BRcCp textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tE3Q6BRcCp input:-moz-placeholder,
.cid-tE3Q6BRcCp textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tE3Q6BRcCp .media-content {
    padding-right: 3rem;
  }
  .cid-tE3Q6BRcCp .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tE3Q6BRcCp .row {
    padding: 0 1rem;
  }
}
.cid-tE3Q6BRcCp .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tE3Q6BRcCp .form-btn {
    width: 100%;
  }
  .cid-tE3Q6BRcCp .btn {
    width: 100%;
  }
}
.cid-tE3Q6BRcCp .mbr-text,
.cid-tE3Q6BRcCp .mbr-section-btn {
  color: #ffffff;
}
.cid-tKhkWmMi6p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKhkWmMi6p .media-container-row {
  align-items: center;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKhkWmMi6p .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKhkWmMi6p .foot-menu-item {
  transform: 0.2s;
}
.cid-tKhkWmMi6p .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKhkWmMi6p .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKhkWmMi6p .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKhkWmMi6p .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: center;
  }
  .cid-tKhkWmMi6p .mbr-text {
    text-align: center;
  }
  .cid-tKhkWmMi6p .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKhkWmMi6p .link:hover {
  color: #ffffff;
}
.cid-tKhkWmMi6p .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKhkWmMi6p foot-menu-item P {
  color: #ffffff;
}
.cid-tE4crfdGm6 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tE4crfdGm6 .nav-item:focus,
.cid-tE4crfdGm6 .nav-link:focus {
  outline: none;
}
.cid-tE4crfdGm6 .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-tE4crfdGm6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tE4crfdGm6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tE4crfdGm6 .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-tE4crfdGm6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tE4crfdGm6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tE4crfdGm6 .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tE4crfdGm6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tE4crfdGm6 .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tE4crfdGm6 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tE4crfdGm6 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tE4crfdGm6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tE4crfdGm6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tE4crfdGm6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tE4crfdGm6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tE4crfdGm6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tE4crfdGm6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tE4crfdGm6 .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-tE4crfdGm6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tE4crfdGm6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tE4crfdGm6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tE4crfdGm6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tE4crfdGm6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tE4crfdGm6 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tE4crfdGm6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tE4crfdGm6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tE4crfdGm6 .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-tE4crfdGm6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tE4crfdGm6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tE4crfdGm6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tE4crfdGm6 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tE4crfdGm6 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tE4crfdGm6 .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tE4crfdGm6 .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tE4crfdGm6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tE4crfdGm6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tE4crfdGm6 .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tE4crfdGm6 .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-tE4crfdGm6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tE4crfdGm6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tE4crfdGm6 .dropdown-item.active,
.cid-tE4crfdGm6 .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tE4crfdGm6 .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tE4crfdGm6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tE4crfdGm6 .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tE4crfdGm6 .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tE4crfdGm6 .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tE4crfdGm6 .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tE4crfdGm6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tE4crfdGm6 .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tE4crfdGm6 .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tE4crfdGm6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tE4crfdGm6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tE4crfdGm6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tE4crfdGm6 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tE4crfdGm6 .navbar-buttons {
  text-align: center;
}
.cid-tE4crfdGm6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tE4crfdGm6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tE4crfdGm6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tE4crfdGm6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tE4crfdGm6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tE4crfdGm6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tE4crfdGm6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tE4crfdGm6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tE4crfdGm6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tE4crfdGm6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tE4crfdGm6 .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tE4crfdGm6 a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tE4crfdGm6 .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tE4crfdGm6 .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-tE4crfdGm6 .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tE4crfdGm6 .navbar {
    height: 77px;
  }
  .cid-tE4crfdGm6 .navbar.opened {
    height: auto;
  }
  .cid-tE4crfdGm6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tE4crfdGm6 a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tE4crfdGm6 a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tE4crfdGm6 .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tE4crfdGm6 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tE4crfCJqK {
  padding-top: 195px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/adobestock-219101232-digital-marketing-graphic-1667x887.webp");
}
.cid-tE4crfCJqK .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-tE4crfCJqK input {
  padding: 0rem 1rem !important;
}
.cid-tE4crfCJqK .title {
  margin-bottom: 1rem;
}
.cid-tE4crfCJqK textarea {
  min-height: 160px;
}
.cid-tE4crfCJqK input::-webkit-input-placeholder,
.cid-tE4crfCJqK textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tE4crfCJqK input:-moz-placeholder,
.cid-tE4crfCJqK textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tE4crfCJqK img {
    width: 100%;
  }
  .cid-tE4crfCJqK form {
    margin-top: 2rem;
  }
}
.cid-tE4crfCJqK .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tE4crfCJqK .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tE4crfCJqK .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tE4crfCJqK .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tE4crfCJqK .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tE4crfCJqK .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tE4crfCJqK .form-btn {
  width: 100%;
}
.cid-tE4crfCJqK .link-btn {
  width: 100%;
}
.cid-tE4crfCJqK h5 {
  margin-bottom: 0.2rem;
}
.cid-tE4crfCJqK .mbr-form .btn {
  margin: 0;
}
.cid-tE4crfCJqK .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tE4crfCJqK .block-left {
  margin-bottom: 2.6rem;
}
.cid-tE4crfCJqK .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tE4crfCJqK .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tE4crfCJqK .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tE4crfCJqK .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tE4crfCJqK .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tE4crfCJqK .row {
    margin: 0rem;
  }
}
.cid-tE4crfCJqK .btn {
  margin-left: 0rem;
}
.cid-tE4crfCJqK P {
  text-align: left;
}
.cid-tE4crfTQkx {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tE4crfTQkx h1 {
  margin-bottom: 0.2rem;
}
.cid-tE4crfTQkx .container-fluid {
  padding: 0;
}
.cid-tE4crfTQkx img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-tE4crfTQkx .mbr-figure {
  height: 100%;
}
.cid-tE4crfTQkx .col-lg-6 {
  padding: 0;
}
.cid-tE4crfTQkx .mbr-text {
  color: #747474;
}
.cid-tE4crfTQkx hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-tE4crfTQkx .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-tE4crfTQkx .mbr-section-subtitle-1 {
  color: #b01cff;
}
.cid-tE4crfTQkx .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-tE4crfTQkx .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tE4crfTQkx .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tE4crfTQkx .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-tE4crfTQkx .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-tE4crfTQkx .left-block {
    margin-top: 4.5rem;
  }
}
.cid-tE4crfTQkx .btn {
  color: #101010 !important;
}
.cid-tE4crfTQkx .btn:hover {
  color: #ffffff !important;
}
.cid-tE4crfTQkx .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tE4crfTQkx .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tE4crg9L4n {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101010;
}
@media (max-width: 992px) {
  .cid-tE4crg9L4n {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-tE4crg9L4n .box {
    margin-top: 2.5rem;
    height: 300px;
  }
  .cid-tE4crg9L4n .video-block {
    padding: 0rem;
  }
  .cid-tE4crg9L4n .row {
    padding: 0rem;
  }
  .cid-tE4crg9L4n .left-block {
    padding: 2rem 1rem;
  }
}
.cid-tE4crg9L4n .btn {
  margin-left: 0rem;
}
.cid-tE4crg9L4n .box {
  background-image: url("../../../assets/images/applebee-marketing-12-2000x1333.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tE4crg9L4n .icon-wrap {
  border: 3px solid #ffb81c !important;
  background-color: #ffffff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.cid-tE4crg9L4n .icon-wrap:hover span {
  color: #ffffff;
}
.cid-tE4crg9L4n .icon-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0.67, 0, 1.01);
}
.cid-tE4crg9L4n .icon-wrap:hover::before {
  background-color: #b539cf;
  transform: scaleY(1);
}
.cid-tE4crg9L4n .mbr-media span {
  font-size: 16px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffb81c;
}
.cid-tE4crg9L4n .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-tE4crg9L4n .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tE4crg9L4n .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tE4crg9L4n .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tE4crg9L4n a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tE4crg9L4n a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tE4crg9L4n {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.cid-tE4crg9L4n .mbr-text {
  margin-bottom: 2rem;
}
.cid-tE4crg9L4n .mbr-section-title {
  margin-bottom: 2rem;
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tE4crg9L4n .left-block {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tE4crg9L4n .video-block {
    padding-right: 0rem;
  }
  .cid-tE4crg9L4n .row {
    padding-right: 0rem;
  }
  .cid-tE4crg9L4n .left-block {
    padding: 7.5rem 5.5rem 7.5rem 5rem;
  }
  .cid-tE4crg9L4n .box {
    height: 100%;
  }
}
.cid-tE4crg9L4n .mbr-text,
.cid-tE4crg9L4n .mbr-section-btn {
  text-align: left;
}
.cid-tE4crgsmFf {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tE4crgsmFf h1 {
  margin-bottom: 0.2rem;
}
.cid-tE4crgsmFf .container-fluid {
  padding: 0;
}
.cid-tE4crgsmFf img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-tE4crgsmFf .mbr-figure {
  height: 100%;
}
.cid-tE4crgsmFf .col-lg-6 {
  padding: 0;
}
.cid-tE4crgsmFf .mbr-text {
  color: #747474;
}
.cid-tE4crgsmFf hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-tE4crgsmFf .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-tE4crgsmFf .mbr-section-subtitle-1 {
  color: #b01cff;
}
.cid-tE4crgsmFf .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-tE4crgsmFf .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tE4crgsmFf .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tE4crgsmFf .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-tE4crgsmFf .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-tE4crgsmFf .left-block {
    margin-top: 4.5rem;
  }
}
.cid-tE4crgsmFf .btn {
  color: #101010 !important;
}
.cid-tE4crgsmFf .btn:hover {
  color: #ffffff !important;
}
.cid-tE4crgsmFf .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tE4crgsmFf .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tE4crgIesU {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/adobestock-260438796-honeycomb-1344x867.webp");
}
.cid-tE4crgIesU .carousel {
  z-index: 2;
  position: relative;
}
.cid-tE4crgIesU .user {
  padding: 0!important;
}
.cid-tE4crgIesU .user_image {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.8rem;
  border: 1px solid lightgray;
  position: relative;
}
.cid-tE4crgIesU .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tE4crgIesU .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tE4crgIesU .carousel-item.active,
.cid-tE4crgIesU .carousel-item-next,
.cid-tE4crgIesU .carousel-item-prev {
  display: flex;
}
.cid-tE4crgIesU .user_name {
  margin: 0;
  color: #ffffff;
}
.cid-tE4crgIesU .carousel-controls a {
  font-size: 2rem;
}
.cid-tE4crgIesU .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
  opacity: 0.5;
}
.cid-tE4crgIesU .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-tE4crgIesU ol {
  margin-bottom: 0;
  bottom: -2.2rem;
}
.cid-tE4crgIesU .carousel-indicators li {
  width: 10px;
  height: 10px;
  margin: auto 7px;
  border: none;
  background: #ffffff;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
  position: relative;
}
.cid-tE4crgIesU .carousel-indicators li:hover {
  opacity: 1;
}
.cid-tE4crgIesU .carousel-indicators .active {
  opacity: 1;
  width: 12px;
  height: 12px;
}
.cid-tE4crgIesU .user_status {
  color: #767676;
}
.cid-tE4crgIesU .title {
  color: #ffffff;
  margin-bottom: 3.8rem;
}
.cid-tE4crgIesU .mbr-text {
  margin-bottom: 1.7rem;
  text-align: center;
  color: #101010;
}
.cid-tE4crgIesU .title,
.cid-tE4crgIesU .line-align {
  color: #101010;
}
.cid-tE4crh5rlT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tE4crh5rlT h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tE4crh5rlT .container {
    position: relative;
  }
  .cid-tE4crh5rlT .row {
    margin: 0;
  }
  .cid-tE4crh5rlT h2 {
    margin: 0;
  }
}
.cid-tE4crh5rlT .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tE4crh5rlT .mbr-text {
  margin-top: 1.4rem;
  text-align: left;
}
.cid-tE4crhj0vb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/office-3.webp");
}
.cid-tE4crhj0vb .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tE4crhj0vb .align-center {
    text-align: center;
  }
}
.cid-tE4crhyqAE {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tE4crhyqAE h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tE4crhyqAE .container {
    position: relative;
  }
  .cid-tE4crhyqAE .row {
    margin: 0;
  }
  .cid-tE4crhyqAE h2 {
    margin: 0;
  }
}
.cid-tE4crhyqAE .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-tE4crhyqAE .mbr-section-subtitle {
  color: #b01cff;
}
.cid-tE4crhyqAE .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tE4crhyqAE .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tE4crhM2Gg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #101010;
}
.cid-tE4crhM2Gg .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tE4crhM2Gg textarea {
  min-height: 150px;
}
.cid-tE4crhM2Gg input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tE4crhM2Gg textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tE4crhM2Gg .form-control,
.cid-tE4crhM2Gg .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tE4crhM2Gg .form-control input::-webkit-input-placeholder,
.cid-tE4crhM2Gg .field-input input::-webkit-input-placeholder,
.cid-tE4crhM2Gg .form-control textarea::-webkit-input-placeholder,
.cid-tE4crhM2Gg .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tE4crhM2Gg .form-control input:-moz-placeholder,
.cid-tE4crhM2Gg .field-input input:-moz-placeholder,
.cid-tE4crhM2Gg .form-control textarea:-moz-placeholder,
.cid-tE4crhM2Gg .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tE4crhM2Gg .jq-number__spin:hover,
.cid-tE4crhM2Gg .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tE4crhM2Gg .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tE4crhM2Gg .jq-selectbox li,
.cid-tE4crhM2Gg .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tE4crhM2Gg .jq-selectbox li:hover,
.cid-tE4crhM2Gg .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tE4crhM2Gg .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tE4crhM2Gg .jq-number__spin.minus:hover:after,
.cid-tE4crhM2Gg .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tE4crhM2Gg .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tE4crhM2Gg .jq-number__spin.minus:after,
.cid-tE4crhM2Gg .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tE4crhM2Gg .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tE4crhM2Gg .social-list {
    margin-bottom: 3rem;
  }
  .cid-tE4crhM2Gg .email-input {
    margin-top: 2rem;
  }
}
.cid-tE4crhM2Gg .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tE4crhM2Gg .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tE4crhM2Gg .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tE4crhM2Gg .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tE4crhM2Gg .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tE4crhM2Gg .social-list {
  display: flex;
}
.cid-tE4crhM2Gg .social-list a {
  transition: .3s;
}
.cid-tE4crhM2Gg .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tE4crhM2Gg .row {
  align-items: center;
}
.cid-tE4crhM2Gg .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tE4crhM2Gg .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tE4crhM2Gg .form-btn {
  margin-top: 2.5rem;
}
.cid-tE4crhM2Gg input::-webkit-input-placeholder,
.cid-tE4crhM2Gg textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tE4crhM2Gg input:-moz-placeholder,
.cid-tE4crhM2Gg textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tE4crhM2Gg .media-content {
    padding-right: 3rem;
  }
  .cid-tE4crhM2Gg .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tE4crhM2Gg .row {
    padding: 0 1rem;
  }
}
.cid-tE4crhM2Gg .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tE4crhM2Gg .form-btn {
    width: 100%;
  }
  .cid-tE4crhM2Gg .btn {
    width: 100%;
  }
}
.cid-tE4crhM2Gg .mbr-text,
.cid-tE4crhM2Gg .mbr-section-btn {
  color: #ffffff;
}
.cid-tKhkWmMi6p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKhkWmMi6p .media-container-row {
  align-items: center;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKhkWmMi6p .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKhkWmMi6p .foot-menu-item {
  transform: 0.2s;
}
.cid-tKhkWmMi6p .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKhkWmMi6p .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKhkWmMi6p .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKhkWmMi6p .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: center;
  }
  .cid-tKhkWmMi6p .mbr-text {
    text-align: center;
  }
  .cid-tKhkWmMi6p .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKhkWmMi6p .link:hover {
  color: #ffffff;
}
.cid-tKhkWmMi6p .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKhkWmMi6p foot-menu-item P {
  color: #ffffff;
}
.cid-tHa3A5Sv6y .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tHa3A5Sv6y .nav-item:focus,
.cid-tHa3A5Sv6y .nav-link:focus {
  outline: none;
}
.cid-tHa3A5Sv6y .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-tHa3A5Sv6y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tHa3A5Sv6y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tHa3A5Sv6y .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-tHa3A5Sv6y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHa3A5Sv6y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHa3A5Sv6y .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tHa3A5Sv6y .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tHa3A5Sv6y .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tHa3A5Sv6y .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tHa3A5Sv6y .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tHa3A5Sv6y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tHa3A5Sv6y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tHa3A5Sv6y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tHa3A5Sv6y .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tHa3A5Sv6y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tHa3A5Sv6y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tHa3A5Sv6y .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-tHa3A5Sv6y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tHa3A5Sv6y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tHa3A5Sv6y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tHa3A5Sv6y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tHa3A5Sv6y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tHa3A5Sv6y .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tHa3A5Sv6y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tHa3A5Sv6y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tHa3A5Sv6y .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-tHa3A5Sv6y .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tHa3A5Sv6y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tHa3A5Sv6y .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tHa3A5Sv6y .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tHa3A5Sv6y .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tHa3A5Sv6y .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tHa3A5Sv6y .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tHa3A5Sv6y .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tHa3A5Sv6y .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tHa3A5Sv6y .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tHa3A5Sv6y .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-tHa3A5Sv6y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tHa3A5Sv6y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tHa3A5Sv6y .dropdown-item.active,
.cid-tHa3A5Sv6y .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tHa3A5Sv6y .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tHa3A5Sv6y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tHa3A5Sv6y .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tHa3A5Sv6y .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tHa3A5Sv6y .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tHa3A5Sv6y .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tHa3A5Sv6y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tHa3A5Sv6y .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tHa3A5Sv6y .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tHa3A5Sv6y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tHa3A5Sv6y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tHa3A5Sv6y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHa3A5Sv6y ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tHa3A5Sv6y .navbar-buttons {
  text-align: center;
}
.cid-tHa3A5Sv6y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHa3A5Sv6y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tHa3A5Sv6y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tHa3A5Sv6y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tHa3A5Sv6y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tHa3A5Sv6y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tHa3A5Sv6y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tHa3A5Sv6y nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tHa3A5Sv6y nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tHa3A5Sv6y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tHa3A5Sv6y .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tHa3A5Sv6y a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tHa3A5Sv6y .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tHa3A5Sv6y .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-tHa3A5Sv6y .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tHa3A5Sv6y .navbar {
    height: 77px;
  }
  .cid-tHa3A5Sv6y .navbar.opened {
    height: auto;
  }
  .cid-tHa3A5Sv6y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tHa3A5Sv6y a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tHa3A5Sv6y a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tHa3A5Sv6y .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tHa3A5Sv6y .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tHa3A6hibk {
  padding-top: 195px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/adobestock-301840748-photo-studio-white-1313x876.webp");
}
.cid-tHa3A6hibk .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-tHa3A6hibk input {
  padding: 0rem 1rem !important;
}
.cid-tHa3A6hibk .title {
  margin-bottom: 1rem;
}
.cid-tHa3A6hibk textarea {
  min-height: 160px;
}
.cid-tHa3A6hibk input::-webkit-input-placeholder,
.cid-tHa3A6hibk textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tHa3A6hibk input:-moz-placeholder,
.cid-tHa3A6hibk textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tHa3A6hibk img {
    width: 100%;
  }
  .cid-tHa3A6hibk form {
    margin-top: 2rem;
  }
}
.cid-tHa3A6hibk .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tHa3A6hibk .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tHa3A6hibk .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tHa3A6hibk .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tHa3A6hibk .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tHa3A6hibk .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tHa3A6hibk .form-btn {
  width: 100%;
}
.cid-tHa3A6hibk .link-btn {
  width: 100%;
}
.cid-tHa3A6hibk h5 {
  margin-bottom: 0.2rem;
}
.cid-tHa3A6hibk .mbr-form .btn {
  margin: 0;
}
.cid-tHa3A6hibk .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tHa3A6hibk .block-left {
  margin-bottom: 2.6rem;
}
.cid-tHa3A6hibk .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tHa3A6hibk .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tHa3A6hibk .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tHa3A6hibk .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tHa3A6hibk .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tHa3A6hibk .row {
    margin: 0rem;
  }
}
.cid-tHa3A6hibk .btn {
  margin-left: 0rem;
}
.cid-tHa3A6hibk P {
  text-align: left;
}
.cid-tHa3A6xntS {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tHa3A6xntS h1 {
  margin-bottom: 0.2rem;
}
.cid-tHa3A6xntS .container-fluid {
  padding: 0;
}
.cid-tHa3A6xntS img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-tHa3A6xntS .mbr-figure {
  height: 100%;
}
.cid-tHa3A6xntS .col-lg-6 {
  padding: 0;
}
.cid-tHa3A6xntS .mbr-text {
  color: #747474;
}
.cid-tHa3A6xntS hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-tHa3A6xntS .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-tHa3A6xntS .mbr-section-subtitle-1 {
  color: #b01cff;
}
.cid-tHa3A6xntS .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-tHa3A6xntS .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tHa3A6xntS .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tHa3A6xntS .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-tHa3A6xntS .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-tHa3A6xntS .left-block {
    margin-top: 4.5rem;
  }
}
.cid-tHa3A6xntS .btn {
  color: #101010 !important;
}
.cid-tHa3A6xntS .btn:hover {
  color: #ffffff !important;
}
.cid-tHa3A6xntS .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tHa3A6xntS .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tHa3A6MoZ3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101010;
}
@media (max-width: 992px) {
  .cid-tHa3A6MoZ3 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-tHa3A6MoZ3 .box {
    margin-top: 2.5rem;
    height: 300px;
  }
  .cid-tHa3A6MoZ3 .video-block {
    padding: 0rem;
  }
  .cid-tHa3A6MoZ3 .row {
    padding: 0rem;
  }
  .cid-tHa3A6MoZ3 .left-block {
    padding: 2rem 1rem;
  }
}
.cid-tHa3A6MoZ3 .btn {
  margin-left: 0rem;
}
.cid-tHa3A6MoZ3 .box {
  background-image: url("../../../assets/images/applebee-video-shoot-1280-1280x1215.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tHa3A6MoZ3 .icon-wrap {
  border: 3px solid #ffb81c !important;
  background-color: #ffffff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.cid-tHa3A6MoZ3 .icon-wrap:hover span {
  color: #ffffff;
}
.cid-tHa3A6MoZ3 .icon-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0.67, 0, 1.01);
}
.cid-tHa3A6MoZ3 .icon-wrap:hover::before {
  background-color: #b539cf;
  transform: scaleY(1);
}
.cid-tHa3A6MoZ3 .mbr-media span {
  font-size: 16px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffb81c;
}
.cid-tHa3A6MoZ3 .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-tHa3A6MoZ3 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tHa3A6MoZ3 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tHa3A6MoZ3 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tHa3A6MoZ3 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tHa3A6MoZ3 a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tHa3A6MoZ3 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.cid-tHa3A6MoZ3 .mbr-text {
  margin-bottom: 2rem;
}
.cid-tHa3A6MoZ3 .mbr-section-title {
  margin-bottom: 2rem;
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tHa3A6MoZ3 .left-block {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tHa3A6MoZ3 .video-block {
    padding-right: 0rem;
  }
  .cid-tHa3A6MoZ3 .row {
    padding-right: 0rem;
  }
  .cid-tHa3A6MoZ3 .left-block {
    padding: 7.5rem 5.5rem 7.5rem 5rem;
  }
  .cid-tHa3A6MoZ3 .box {
    height: 100%;
  }
}
.cid-tHa3A6MoZ3 .mbr-text,
.cid-tHa3A6MoZ3 .mbr-section-btn {
  text-align: left;
}
.cid-tHa3A754j5 {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tHa3A754j5 h1 {
  margin-bottom: 0.2rem;
}
.cid-tHa3A754j5 .container-fluid {
  padding: 0;
}
.cid-tHa3A754j5 img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-tHa3A754j5 .mbr-figure {
  height: 100%;
}
.cid-tHa3A754j5 .col-lg-6 {
  padding: 0;
}
.cid-tHa3A754j5 .mbr-text {
  color: #747474;
}
.cid-tHa3A754j5 hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-tHa3A754j5 .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-tHa3A754j5 .mbr-section-subtitle-1 {
  color: #b01cff;
}
.cid-tHa3A754j5 .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-tHa3A754j5 .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tHa3A754j5 .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tHa3A754j5 .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-tHa3A754j5 .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-tHa3A754j5 .left-block {
    margin-top: 4.5rem;
  }
}
.cid-tHa3A754j5 .btn {
  color: #101010 !important;
}
.cid-tHa3A754j5 .btn:hover {
  color: #ffffff !important;
}
.cid-tHa3A754j5 .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tHa3A754j5 .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tHa3A7jERM {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/adobestock-260438796-honeycomb-1344x867.webp");
}
.cid-tHa3A7jERM .carousel {
  z-index: 2;
  position: relative;
}
.cid-tHa3A7jERM .user {
  padding: 0!important;
}
.cid-tHa3A7jERM .user_image {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.8rem;
  border: 1px solid lightgray;
  position: relative;
}
.cid-tHa3A7jERM .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tHa3A7jERM .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tHa3A7jERM .carousel-item.active,
.cid-tHa3A7jERM .carousel-item-next,
.cid-tHa3A7jERM .carousel-item-prev {
  display: flex;
}
.cid-tHa3A7jERM .user_name {
  margin: 0;
  color: #ffffff;
}
.cid-tHa3A7jERM .carousel-controls a {
  font-size: 2rem;
}
.cid-tHa3A7jERM .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
  opacity: 0.5;
}
.cid-tHa3A7jERM .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-tHa3A7jERM ol {
  margin-bottom: 0;
  bottom: -2.2rem;
}
.cid-tHa3A7jERM .carousel-indicators li {
  width: 10px;
  height: 10px;
  margin: auto 7px;
  border: none;
  background: #ffffff;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
  position: relative;
}
.cid-tHa3A7jERM .carousel-indicators li:hover {
  opacity: 1;
}
.cid-tHa3A7jERM .carousel-indicators .active {
  opacity: 1;
  width: 12px;
  height: 12px;
}
.cid-tHa3A7jERM .user_status {
  color: #767676;
}
.cid-tHa3A7jERM .title {
  color: #ffffff;
  margin-bottom: 3.8rem;
}
.cid-tHa3A7jERM .mbr-text {
  margin-bottom: 1.7rem;
  text-align: left;
  color: #101010;
}
.cid-tHa3A7jERM .title,
.cid-tHa3A7jERM .line-align {
  color: #101010;
}
.cid-tHa3A7JaVA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tHa3A7JaVA h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tHa3A7JaVA .container {
    position: relative;
  }
  .cid-tHa3A7JaVA .row {
    margin: 0;
  }
  .cid-tHa3A7JaVA h2 {
    margin: 0;
  }
}
.cid-tHa3A7JaVA .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tHa3A7JaVA .mbr-text {
  margin-top: 1.4rem;
  text-align: left;
}
.cid-tHa3A7XjeV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/office-3.webp");
}
.cid-tHa3A7XjeV .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tHa3A7XjeV .align-center {
    text-align: center;
  }
}
.cid-tHa3A8ayX1 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tHa3A8ayX1 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tHa3A8ayX1 .container {
    position: relative;
  }
  .cid-tHa3A8ayX1 .row {
    margin: 0;
  }
  .cid-tHa3A8ayX1 h2 {
    margin: 0;
  }
}
.cid-tHa3A8ayX1 .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-tHa3A8ayX1 .mbr-section-subtitle {
  color: #b01cff;
}
.cid-tHa3A8ayX1 .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tHa3A8ayX1 .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tHa3A8qeJU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #101010;
}
.cid-tHa3A8qeJU .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tHa3A8qeJU textarea {
  min-height: 150px;
}
.cid-tHa3A8qeJU input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tHa3A8qeJU textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tHa3A8qeJU .form-control,
.cid-tHa3A8qeJU .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tHa3A8qeJU .form-control input::-webkit-input-placeholder,
.cid-tHa3A8qeJU .field-input input::-webkit-input-placeholder,
.cid-tHa3A8qeJU .form-control textarea::-webkit-input-placeholder,
.cid-tHa3A8qeJU .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tHa3A8qeJU .form-control input:-moz-placeholder,
.cid-tHa3A8qeJU .field-input input:-moz-placeholder,
.cid-tHa3A8qeJU .form-control textarea:-moz-placeholder,
.cid-tHa3A8qeJU .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tHa3A8qeJU .jq-number__spin:hover,
.cid-tHa3A8qeJU .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tHa3A8qeJU .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tHa3A8qeJU .jq-selectbox li,
.cid-tHa3A8qeJU .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tHa3A8qeJU .jq-selectbox li:hover,
.cid-tHa3A8qeJU .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tHa3A8qeJU .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tHa3A8qeJU .jq-number__spin.minus:hover:after,
.cid-tHa3A8qeJU .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tHa3A8qeJU .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tHa3A8qeJU .jq-number__spin.minus:after,
.cid-tHa3A8qeJU .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tHa3A8qeJU .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tHa3A8qeJU .social-list {
    margin-bottom: 3rem;
  }
  .cid-tHa3A8qeJU .email-input {
    margin-top: 2rem;
  }
}
.cid-tHa3A8qeJU .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tHa3A8qeJU .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tHa3A8qeJU .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tHa3A8qeJU .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tHa3A8qeJU .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tHa3A8qeJU .social-list {
  display: flex;
}
.cid-tHa3A8qeJU .social-list a {
  transition: .3s;
}
.cid-tHa3A8qeJU .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tHa3A8qeJU .row {
  align-items: center;
}
.cid-tHa3A8qeJU .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tHa3A8qeJU .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tHa3A8qeJU .form-btn {
  margin-top: 2.5rem;
}
.cid-tHa3A8qeJU input::-webkit-input-placeholder,
.cid-tHa3A8qeJU textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tHa3A8qeJU input:-moz-placeholder,
.cid-tHa3A8qeJU textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tHa3A8qeJU .media-content {
    padding-right: 3rem;
  }
  .cid-tHa3A8qeJU .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tHa3A8qeJU .row {
    padding: 0 1rem;
  }
}
.cid-tHa3A8qeJU .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tHa3A8qeJU .form-btn {
    width: 100%;
  }
  .cid-tHa3A8qeJU .btn {
    width: 100%;
  }
}
.cid-tHa3A8qeJU .mbr-text,
.cid-tHa3A8qeJU .mbr-section-btn {
  color: #ffffff;
}
.cid-tKhkWmMi6p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKhkWmMi6p .media-container-row {
  align-items: center;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKhkWmMi6p .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKhkWmMi6p .foot-menu-item {
  transform: 0.2s;
}
.cid-tKhkWmMi6p .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKhkWmMi6p .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKhkWmMi6p .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKhkWmMi6p .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: center;
  }
  .cid-tKhkWmMi6p .mbr-text {
    text-align: center;
  }
  .cid-tKhkWmMi6p .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKhkWmMi6p .link:hover {
  color: #ffffff;
}
.cid-tKhkWmMi6p .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKhkWmMi6p foot-menu-item P {
  color: #ffffff;
}
.cid-tHle1alpae .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tHle1alpae .nav-item:focus,
.cid-tHle1alpae .nav-link:focus {
  outline: none;
}
.cid-tHle1alpae .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-tHle1alpae .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tHle1alpae .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tHle1alpae .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-tHle1alpae .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHle1alpae .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHle1alpae .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tHle1alpae .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tHle1alpae .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tHle1alpae .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tHle1alpae .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tHle1alpae .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tHle1alpae .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tHle1alpae .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tHle1alpae .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tHle1alpae .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tHle1alpae .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tHle1alpae .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-tHle1alpae .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tHle1alpae .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tHle1alpae .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tHle1alpae .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tHle1alpae .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tHle1alpae .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tHle1alpae .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tHle1alpae .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tHle1alpae .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-tHle1alpae .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tHle1alpae .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tHle1alpae .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tHle1alpae .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tHle1alpae .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tHle1alpae .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tHle1alpae .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tHle1alpae .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tHle1alpae .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tHle1alpae .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tHle1alpae .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-tHle1alpae .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tHle1alpae .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tHle1alpae .dropdown-item.active,
.cid-tHle1alpae .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tHle1alpae .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tHle1alpae .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tHle1alpae .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tHle1alpae .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tHle1alpae .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tHle1alpae .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tHle1alpae .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tHle1alpae .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tHle1alpae .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tHle1alpae .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tHle1alpae .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tHle1alpae .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHle1alpae ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tHle1alpae .navbar-buttons {
  text-align: center;
}
.cid-tHle1alpae button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHle1alpae button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tHle1alpae button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tHle1alpae button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tHle1alpae button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tHle1alpae button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tHle1alpae nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tHle1alpae nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tHle1alpae nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tHle1alpae nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tHle1alpae .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tHle1alpae a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tHle1alpae .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tHle1alpae .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-tHle1alpae .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tHle1alpae .navbar {
    height: 77px;
  }
  .cid-tHle1alpae .navbar.opened {
    height: auto;
  }
  .cid-tHle1alpae .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tHle1alpae a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tHle1alpae a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tHle1alpae .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tHle1alpae .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tHle1aL3JW {
  padding-top: 195px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-tHle1aL3JW .mbr-overlay {
  background-color: #000000;
  opacity: 0.3;
}
.cid-tHle1aL3JW input {
  padding: 0rem 1rem !important;
}
.cid-tHle1aL3JW .title {
  margin-bottom: 1rem;
}
.cid-tHle1aL3JW textarea {
  min-height: 160px;
}
.cid-tHle1aL3JW input::-webkit-input-placeholder,
.cid-tHle1aL3JW textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tHle1aL3JW input:-moz-placeholder,
.cid-tHle1aL3JW textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tHle1aL3JW img {
    width: 100%;
  }
  .cid-tHle1aL3JW form {
    margin-top: 2rem;
  }
}
.cid-tHle1aL3JW .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tHle1aL3JW .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tHle1aL3JW .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tHle1aL3JW .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tHle1aL3JW .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tHle1aL3JW .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tHle1aL3JW .form-btn {
  width: 100%;
}
.cid-tHle1aL3JW .link-btn {
  width: 100%;
}
.cid-tHle1aL3JW h5 {
  margin-bottom: 0.2rem;
}
.cid-tHle1aL3JW .mbr-form .btn {
  margin: 0;
}
.cid-tHle1aL3JW .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tHle1aL3JW .block-left {
  margin-bottom: 2.6rem;
}
.cid-tHle1aL3JW .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tHle1aL3JW .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tHle1aL3JW .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tHle1aL3JW .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tHle1aL3JW .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tHle1aL3JW .row {
    margin: 0rem;
  }
}
.cid-tHle1aL3JW .btn {
  margin-left: 0rem;
}
.cid-tHle1aL3JW P {
  text-align: left;
}
.cid-tHle1ciQF1 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tHle1ciQF1 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tHle1ciQF1 .container {
    position: relative;
  }
  .cid-tHle1ciQF1 .row {
    margin: 0;
  }
  .cid-tHle1ciQF1 h2 {
    margin: 0;
  }
}
.cid-tHle1ciQF1 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tHle1ciQF1 .mbr-text {
  margin-top: 1.4rem;
  text-align: left;
}
.cid-tHle1cAQOj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/office-3.webp");
}
.cid-tHle1cAQOj .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tHle1cAQOj .align-center {
    text-align: center;
  }
}
.cid-tHle1cAQOj .mbr-text,
.cid-tHle1cAQOj .mbr-section-btn {
  text-align: left;
}
.cid-tHle1cPVte {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tHle1cPVte h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tHle1cPVte .container {
    position: relative;
  }
  .cid-tHle1cPVte .row {
    margin: 0;
  }
  .cid-tHle1cPVte h2 {
    margin: 0;
  }
}
.cid-tHle1cPVte .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-tHle1cPVte .mbr-section-subtitle {
  color: #b01cff;
}
.cid-tHle1cPVte .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tHle1cPVte .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tHle1d4RiY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #101010;
}
.cid-tHle1d4RiY .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tHle1d4RiY textarea {
  min-height: 150px;
}
.cid-tHle1d4RiY input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tHle1d4RiY textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tHle1d4RiY .form-control,
.cid-tHle1d4RiY .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tHle1d4RiY .form-control input::-webkit-input-placeholder,
.cid-tHle1d4RiY .field-input input::-webkit-input-placeholder,
.cid-tHle1d4RiY .form-control textarea::-webkit-input-placeholder,
.cid-tHle1d4RiY .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tHle1d4RiY .form-control input:-moz-placeholder,
.cid-tHle1d4RiY .field-input input:-moz-placeholder,
.cid-tHle1d4RiY .form-control textarea:-moz-placeholder,
.cid-tHle1d4RiY .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tHle1d4RiY .jq-number__spin:hover,
.cid-tHle1d4RiY .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tHle1d4RiY .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tHle1d4RiY .jq-selectbox li,
.cid-tHle1d4RiY .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tHle1d4RiY .jq-selectbox li:hover,
.cid-tHle1d4RiY .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tHle1d4RiY .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tHle1d4RiY .jq-number__spin.minus:hover:after,
.cid-tHle1d4RiY .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tHle1d4RiY .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tHle1d4RiY .jq-number__spin.minus:after,
.cid-tHle1d4RiY .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tHle1d4RiY .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tHle1d4RiY .social-list {
    margin-bottom: 3rem;
  }
  .cid-tHle1d4RiY .email-input {
    margin-top: 2rem;
  }
}
.cid-tHle1d4RiY .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tHle1d4RiY .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tHle1d4RiY .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tHle1d4RiY .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tHle1d4RiY .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tHle1d4RiY .social-list {
  display: flex;
}
.cid-tHle1d4RiY .social-list a {
  transition: .3s;
}
.cid-tHle1d4RiY .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tHle1d4RiY .row {
  align-items: center;
}
.cid-tHle1d4RiY .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tHle1d4RiY .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tHle1d4RiY .form-btn {
  margin-top: 2.5rem;
}
.cid-tHle1d4RiY input::-webkit-input-placeholder,
.cid-tHle1d4RiY textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tHle1d4RiY input:-moz-placeholder,
.cid-tHle1d4RiY textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tHle1d4RiY .media-content {
    padding-right: 3rem;
  }
  .cid-tHle1d4RiY .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tHle1d4RiY .row {
    padding: 0 1rem;
  }
}
.cid-tHle1d4RiY .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tHle1d4RiY .form-btn {
    width: 100%;
  }
  .cid-tHle1d4RiY .btn {
    width: 100%;
  }
}
.cid-tHle1d4RiY .mbr-text,
.cid-tHle1d4RiY .mbr-section-btn {
  color: #ffffff;
}
.cid-tKhkWmMi6p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKhkWmMi6p .media-container-row {
  align-items: center;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKhkWmMi6p .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKhkWmMi6p .foot-menu-item {
  transform: 0.2s;
}
.cid-tKhkWmMi6p .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKhkWmMi6p .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKhkWmMi6p .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKhkWmMi6p .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: center;
  }
  .cid-tKhkWmMi6p .mbr-text {
    text-align: center;
  }
  .cid-tKhkWmMi6p .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKhkWmMi6p .link:hover {
  color: #ffffff;
}
.cid-tKhkWmMi6p .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKhkWmMi6p foot-menu-item P {
  color: #ffffff;
}
.cid-tHlDm86XIU .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tHlDm86XIU .nav-item:focus,
.cid-tHlDm86XIU .nav-link:focus {
  outline: none;
}
.cid-tHlDm86XIU .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-tHlDm86XIU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tHlDm86XIU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tHlDm86XIU .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-tHlDm86XIU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHlDm86XIU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHlDm86XIU .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tHlDm86XIU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tHlDm86XIU .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tHlDm86XIU .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tHlDm86XIU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tHlDm86XIU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tHlDm86XIU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tHlDm86XIU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tHlDm86XIU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tHlDm86XIU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tHlDm86XIU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tHlDm86XIU .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-tHlDm86XIU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tHlDm86XIU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tHlDm86XIU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tHlDm86XIU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tHlDm86XIU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tHlDm86XIU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tHlDm86XIU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tHlDm86XIU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tHlDm86XIU .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-tHlDm86XIU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tHlDm86XIU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tHlDm86XIU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tHlDm86XIU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tHlDm86XIU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tHlDm86XIU .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tHlDm86XIU .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tHlDm86XIU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tHlDm86XIU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tHlDm86XIU .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tHlDm86XIU .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-tHlDm86XIU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tHlDm86XIU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tHlDm86XIU .dropdown-item.active,
.cid-tHlDm86XIU .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tHlDm86XIU .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tHlDm86XIU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tHlDm86XIU .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tHlDm86XIU .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tHlDm86XIU .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tHlDm86XIU .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tHlDm86XIU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tHlDm86XIU .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tHlDm86XIU .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tHlDm86XIU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tHlDm86XIU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tHlDm86XIU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHlDm86XIU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tHlDm86XIU .navbar-buttons {
  text-align: center;
}
.cid-tHlDm86XIU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHlDm86XIU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tHlDm86XIU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tHlDm86XIU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tHlDm86XIU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tHlDm86XIU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tHlDm86XIU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tHlDm86XIU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tHlDm86XIU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tHlDm86XIU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tHlDm86XIU .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tHlDm86XIU a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tHlDm86XIU .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tHlDm86XIU .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-tHlDm86XIU .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tHlDm86XIU .navbar {
    height: 77px;
  }
  .cid-tHlDm86XIU .navbar.opened {
    height: auto;
  }
  .cid-tHlDm86XIU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tHlDm86XIU a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tHlDm86XIU a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tHlDm86XIU .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tHlDm86XIU .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tHlDm8ycS9 {
  padding-top: 195px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/the-librarian-1194x693.webp");
}
.cid-tHlDm8ycS9 .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-tHlDm8ycS9 input {
  padding: 0rem 1rem !important;
}
.cid-tHlDm8ycS9 .title {
  margin-bottom: 1rem;
}
.cid-tHlDm8ycS9 textarea {
  min-height: 160px;
}
.cid-tHlDm8ycS9 input::-webkit-input-placeholder,
.cid-tHlDm8ycS9 textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tHlDm8ycS9 input:-moz-placeholder,
.cid-tHlDm8ycS9 textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tHlDm8ycS9 img {
    width: 100%;
  }
  .cid-tHlDm8ycS9 form {
    margin-top: 2rem;
  }
}
.cid-tHlDm8ycS9 .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tHlDm8ycS9 .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tHlDm8ycS9 .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tHlDm8ycS9 .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tHlDm8ycS9 .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tHlDm8ycS9 .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tHlDm8ycS9 .form-btn {
  width: 100%;
}
.cid-tHlDm8ycS9 .link-btn {
  width: 100%;
}
.cid-tHlDm8ycS9 h5 {
  margin-bottom: 0.2rem;
}
.cid-tHlDm8ycS9 .mbr-form .btn {
  margin: 0;
}
.cid-tHlDm8ycS9 .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tHlDm8ycS9 .block-left {
  margin-bottom: 2.6rem;
}
.cid-tHlDm8ycS9 .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tHlDm8ycS9 .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tHlDm8ycS9 .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tHlDm8ycS9 .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tHlDm8ycS9 .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tHlDm8ycS9 .row {
    margin: 0rem;
  }
}
.cid-tHlDm8ycS9 .btn {
  margin-left: 0rem;
}
.cid-tHlDm8ycS9 P {
  text-align: left;
}
.cid-tLSNW8JAkJ {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tLSNW8JAkJ .mbr-section-subtitle,
.cid-tLSNW8JAkJ .mbr-text {
  color: #767676;
}
.cid-tLSNW8JAkJ .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tLSNW8JAkJ .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tLSNW8JAkJ .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tLSNW8JAkJ .card-wrapper .card-img .mbr-overlay {
  background-color: #ffffff;
  display: none;
  transition: opacity .3s;
}
.cid-tLSNW8JAkJ .card-wrapper .card-img .mbr-section-btn {
  position: absolute;
  transition: opacity .3s;
  width: 100%;
  left: 0;
  top: 50%;
  height: auto;
  transform: translateY(-50%);
}
.cid-tLSNW8JAkJ .card-wrapper .card-img img {
  width: 100%;
}
.cid-tLSNW8JAkJ .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-tLSNW8JAkJ .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-tLSNW8JAkJ .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-tLSNW8JAkJ .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-tLSNW8JAkJ .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-tLSNW8JAkJ .card-img .mbr-section-btn {
  opacity: 0;
}
.cid-tLSNW8JAkJ .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-tLSNW8JAkJ .card-img:hover .mbr-section-btn {
  opacity: 1;
}
.cid-tLSNW8JAkJ .mbr-text {
  color: #7e7e7e;
}
.cid-tHlWZUUgTg {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tHlWZUUgTg .mbr-section-subtitle,
.cid-tHlWZUUgTg .mbr-text {
  color: #767676;
}
.cid-tHlWZUUgTg .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tHlWZUUgTg .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tHlWZUUgTg .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tHlWZUUgTg .card-wrapper .card-img .mbr-overlay {
  background-color: #ffffff;
  display: none;
  transition: opacity .3s;
}
.cid-tHlWZUUgTg .card-wrapper .card-img .mbr-section-btn {
  position: absolute;
  transition: opacity .3s;
  width: 100%;
  left: 0;
  top: 50%;
  height: auto;
  transform: translateY(-50%);
}
.cid-tHlWZUUgTg .card-wrapper .card-img img {
  width: 100%;
}
.cid-tHlWZUUgTg .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-tHlWZUUgTg .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-tHlWZUUgTg .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-tHlWZUUgTg .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-tHlWZUUgTg .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-tHlWZUUgTg .card-img .mbr-section-btn {
  opacity: 0;
}
.cid-tHlWZUUgTg .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-tHlWZUUgTg .card-img:hover .mbr-section-btn {
  opacity: 1;
}
.cid-tHlWZUUgTg .mbr-text {
  color: #7e7e7e;
}
.cid-tHlSunsqkA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tHlSunsqkA .mbr-section-subtitle,
.cid-tHlSunsqkA .mbr-text {
  color: #767676;
}
.cid-tHlSunsqkA .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tHlSunsqkA .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tHlSunsqkA .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tHlSunsqkA .card-wrapper .card-img .mbr-overlay {
  background-color: #ffffff;
  display: none;
  transition: opacity .3s;
}
.cid-tHlSunsqkA .card-wrapper .card-img .mbr-section-btn {
  position: absolute;
  transition: opacity .3s;
  width: 100%;
  left: 0;
  top: 50%;
  height: auto;
  transform: translateY(-50%);
}
.cid-tHlSunsqkA .card-wrapper .card-img img {
  width: 100%;
}
.cid-tHlSunsqkA .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-tHlSunsqkA .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-tHlSunsqkA .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-tHlSunsqkA .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-tHlSunsqkA .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-tHlSunsqkA .card-img .mbr-section-btn {
  opacity: 0;
}
.cid-tHlSunsqkA .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-tHlSunsqkA .card-img:hover .mbr-section-btn {
  opacity: 1;
}
.cid-tHlDmbCKPd {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/office-3.webp");
}
.cid-tHlDmbCKPd .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tHlDmbCKPd .align-center {
    text-align: center;
  }
}
.cid-tHlDmbWaSm {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tHlDmbWaSm h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tHlDmbWaSm .container {
    position: relative;
  }
  .cid-tHlDmbWaSm .row {
    margin: 0;
  }
  .cid-tHlDmbWaSm h2 {
    margin: 0;
  }
}
.cid-tHlDmbWaSm .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-tHlDmbWaSm .mbr-section-subtitle {
  color: #b01cff;
}
.cid-tHlDmbWaSm .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tHlDmbWaSm .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tHlDmcfstT {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #101010;
}
.cid-tHlDmcfstT .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tHlDmcfstT textarea {
  min-height: 150px;
}
.cid-tHlDmcfstT input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tHlDmcfstT textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tHlDmcfstT .form-control,
.cid-tHlDmcfstT .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tHlDmcfstT .form-control input::-webkit-input-placeholder,
.cid-tHlDmcfstT .field-input input::-webkit-input-placeholder,
.cid-tHlDmcfstT .form-control textarea::-webkit-input-placeholder,
.cid-tHlDmcfstT .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tHlDmcfstT .form-control input:-moz-placeholder,
.cid-tHlDmcfstT .field-input input:-moz-placeholder,
.cid-tHlDmcfstT .form-control textarea:-moz-placeholder,
.cid-tHlDmcfstT .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tHlDmcfstT .jq-number__spin:hover,
.cid-tHlDmcfstT .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tHlDmcfstT .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tHlDmcfstT .jq-selectbox li,
.cid-tHlDmcfstT .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tHlDmcfstT .jq-selectbox li:hover,
.cid-tHlDmcfstT .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tHlDmcfstT .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tHlDmcfstT .jq-number__spin.minus:hover:after,
.cid-tHlDmcfstT .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tHlDmcfstT .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tHlDmcfstT .jq-number__spin.minus:after,
.cid-tHlDmcfstT .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tHlDmcfstT .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tHlDmcfstT .social-list {
    margin-bottom: 3rem;
  }
  .cid-tHlDmcfstT .email-input {
    margin-top: 2rem;
  }
}
.cid-tHlDmcfstT .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tHlDmcfstT .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tHlDmcfstT .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tHlDmcfstT .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tHlDmcfstT .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tHlDmcfstT .social-list {
  display: flex;
}
.cid-tHlDmcfstT .social-list a {
  transition: .3s;
}
.cid-tHlDmcfstT .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tHlDmcfstT .row {
  align-items: center;
}
.cid-tHlDmcfstT .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tHlDmcfstT .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tHlDmcfstT .form-btn {
  margin-top: 2.5rem;
}
.cid-tHlDmcfstT input::-webkit-input-placeholder,
.cid-tHlDmcfstT textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tHlDmcfstT input:-moz-placeholder,
.cid-tHlDmcfstT textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tHlDmcfstT .media-content {
    padding-right: 3rem;
  }
  .cid-tHlDmcfstT .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tHlDmcfstT .row {
    padding: 0 1rem;
  }
}
.cid-tHlDmcfstT .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tHlDmcfstT .form-btn {
    width: 100%;
  }
  .cid-tHlDmcfstT .btn {
    width: 100%;
  }
}
.cid-tHlDmcfstT .mbr-text,
.cid-tHlDmcfstT .mbr-section-btn {
  color: #ffffff;
}
.cid-tKhkWmMi6p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKhkWmMi6p .media-container-row {
  align-items: center;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKhkWmMi6p .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKhkWmMi6p .foot-menu-item {
  transform: 0.2s;
}
.cid-tKhkWmMi6p .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKhkWmMi6p .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKhkWmMi6p .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKhkWmMi6p .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: center;
  }
  .cid-tKhkWmMi6p .mbr-text {
    text-align: center;
  }
  .cid-tKhkWmMi6p .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKhkWmMi6p .link:hover {
  color: #ffffff;
}
.cid-tKhkWmMi6p .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKhkWmMi6p foot-menu-item P {
  color: #ffffff;
}
.cid-tHlZ65vC0Q .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tHlZ65vC0Q .nav-item:focus,
.cid-tHlZ65vC0Q .nav-link:focus {
  outline: none;
}
.cid-tHlZ65vC0Q .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-tHlZ65vC0Q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tHlZ65vC0Q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tHlZ65vC0Q .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-tHlZ65vC0Q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHlZ65vC0Q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHlZ65vC0Q .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tHlZ65vC0Q .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tHlZ65vC0Q .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tHlZ65vC0Q .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tHlZ65vC0Q .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tHlZ65vC0Q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tHlZ65vC0Q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tHlZ65vC0Q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tHlZ65vC0Q .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tHlZ65vC0Q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tHlZ65vC0Q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tHlZ65vC0Q .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-tHlZ65vC0Q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tHlZ65vC0Q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tHlZ65vC0Q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tHlZ65vC0Q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tHlZ65vC0Q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tHlZ65vC0Q .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tHlZ65vC0Q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tHlZ65vC0Q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tHlZ65vC0Q .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-tHlZ65vC0Q .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tHlZ65vC0Q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tHlZ65vC0Q .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tHlZ65vC0Q .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tHlZ65vC0Q .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tHlZ65vC0Q .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tHlZ65vC0Q .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tHlZ65vC0Q .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tHlZ65vC0Q .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tHlZ65vC0Q .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tHlZ65vC0Q .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-tHlZ65vC0Q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tHlZ65vC0Q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tHlZ65vC0Q .dropdown-item.active,
.cid-tHlZ65vC0Q .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tHlZ65vC0Q .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tHlZ65vC0Q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tHlZ65vC0Q .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tHlZ65vC0Q .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tHlZ65vC0Q .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tHlZ65vC0Q .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tHlZ65vC0Q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tHlZ65vC0Q .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tHlZ65vC0Q .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tHlZ65vC0Q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tHlZ65vC0Q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tHlZ65vC0Q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHlZ65vC0Q ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tHlZ65vC0Q .navbar-buttons {
  text-align: center;
}
.cid-tHlZ65vC0Q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHlZ65vC0Q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tHlZ65vC0Q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tHlZ65vC0Q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tHlZ65vC0Q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tHlZ65vC0Q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tHlZ65vC0Q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tHlZ65vC0Q nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tHlZ65vC0Q nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tHlZ65vC0Q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tHlZ65vC0Q .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tHlZ65vC0Q a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tHlZ65vC0Q .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tHlZ65vC0Q .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-tHlZ65vC0Q .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tHlZ65vC0Q .navbar {
    height: 77px;
  }
  .cid-tHlZ65vC0Q .navbar.opened {
    height: auto;
  }
  .cid-tHlZ65vC0Q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tHlZ65vC0Q a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tHlZ65vC0Q a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tHlZ65vC0Q .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tHlZ65vC0Q .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tHlZ666vqS {
  padding-top: 195px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/adobestock-85867211-press-camera-group-1824x1216.webp");
}
.cid-tHlZ666vqS .mbr-overlay {
  background-color: #000000;
  opacity: 0.5;
}
.cid-tHlZ666vqS input {
  padding: 0rem 1rem !important;
}
.cid-tHlZ666vqS .title {
  margin-bottom: 1rem;
}
.cid-tHlZ666vqS textarea {
  min-height: 160px;
}
.cid-tHlZ666vqS input::-webkit-input-placeholder,
.cid-tHlZ666vqS textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tHlZ666vqS input:-moz-placeholder,
.cid-tHlZ666vqS textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tHlZ666vqS img {
    width: 100%;
  }
  .cid-tHlZ666vqS form {
    margin-top: 2rem;
  }
}
.cid-tHlZ666vqS .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tHlZ666vqS .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tHlZ666vqS .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tHlZ666vqS .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tHlZ666vqS .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tHlZ666vqS .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tHlZ666vqS .form-btn {
  width: 100%;
}
.cid-tHlZ666vqS .link-btn {
  width: 100%;
}
.cid-tHlZ666vqS h5 {
  margin-bottom: 0.2rem;
}
.cid-tHlZ666vqS .mbr-form .btn {
  margin: 0;
}
.cid-tHlZ666vqS .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tHlZ666vqS .block-left {
  margin-bottom: 2.6rem;
}
.cid-tHlZ666vqS .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tHlZ666vqS .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tHlZ666vqS .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tHlZ666vqS .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tHlZ666vqS .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tHlZ666vqS .row {
    margin: 0rem;
  }
}
.cid-tHlZ666vqS .btn {
  margin-left: 0rem;
}
.cid-tHlZ666vqS P {
  text-align: left;
}
.cid-tHlZ666vqS .block-left,
.cid-tHlZ666vqS .mbr-section-btn {
  color: #ffffff;
}
.cid-tHlZ68mwtG {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #101010;
}
.cid-tHlZ68mwtG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tHlZ68mwtG textarea {
  min-height: 150px;
}
.cid-tHlZ68mwtG input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tHlZ68mwtG textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tHlZ68mwtG .form-control,
.cid-tHlZ68mwtG .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tHlZ68mwtG .form-control input::-webkit-input-placeholder,
.cid-tHlZ68mwtG .field-input input::-webkit-input-placeholder,
.cid-tHlZ68mwtG .form-control textarea::-webkit-input-placeholder,
.cid-tHlZ68mwtG .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tHlZ68mwtG .form-control input:-moz-placeholder,
.cid-tHlZ68mwtG .field-input input:-moz-placeholder,
.cid-tHlZ68mwtG .form-control textarea:-moz-placeholder,
.cid-tHlZ68mwtG .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tHlZ68mwtG .jq-number__spin:hover,
.cid-tHlZ68mwtG .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tHlZ68mwtG .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tHlZ68mwtG .jq-selectbox li,
.cid-tHlZ68mwtG .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tHlZ68mwtG .jq-selectbox li:hover,
.cid-tHlZ68mwtG .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tHlZ68mwtG .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tHlZ68mwtG .jq-number__spin.minus:hover:after,
.cid-tHlZ68mwtG .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tHlZ68mwtG .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tHlZ68mwtG .jq-number__spin.minus:after,
.cid-tHlZ68mwtG .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tHlZ68mwtG .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tHlZ68mwtG .social-list {
    margin-bottom: 3rem;
  }
  .cid-tHlZ68mwtG .email-input {
    margin-top: 2rem;
  }
}
.cid-tHlZ68mwtG .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tHlZ68mwtG .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tHlZ68mwtG .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tHlZ68mwtG .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tHlZ68mwtG .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tHlZ68mwtG .social-list {
  display: flex;
}
.cid-tHlZ68mwtG .social-list a {
  transition: .3s;
}
.cid-tHlZ68mwtG .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tHlZ68mwtG .row {
  align-items: center;
}
.cid-tHlZ68mwtG .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tHlZ68mwtG .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tHlZ68mwtG .form-btn {
  margin-top: 2.5rem;
}
.cid-tHlZ68mwtG input::-webkit-input-placeholder,
.cid-tHlZ68mwtG textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tHlZ68mwtG input:-moz-placeholder,
.cid-tHlZ68mwtG textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tHlZ68mwtG .media-content {
    padding-right: 3rem;
  }
  .cid-tHlZ68mwtG .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tHlZ68mwtG .row {
    padding: 0 1rem;
  }
}
.cid-tHlZ68mwtG .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tHlZ68mwtG .form-btn {
    width: 100%;
  }
  .cid-tHlZ68mwtG .btn {
    width: 100%;
  }
}
.cid-tHlZ68mwtG .mbr-text,
.cid-tHlZ68mwtG .mbr-section-btn {
  color: #ffffff;
}
.cid-tKhkWmMi6p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKhkWmMi6p .media-container-row {
  align-items: center;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKhkWmMi6p .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKhkWmMi6p .foot-menu-item {
  transform: 0.2s;
}
.cid-tKhkWmMi6p .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKhkWmMi6p .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKhkWmMi6p .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKhkWmMi6p .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: center;
  }
  .cid-tKhkWmMi6p .mbr-text {
    text-align: center;
  }
  .cid-tKhkWmMi6p .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKhkWmMi6p .link:hover {
  color: #ffffff;
}
.cid-tKhkWmMi6p .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKhkWmMi6p foot-menu-item P {
  color: #ffffff;
}
.cid-tHm2rf8Pd8 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tHm2rf8Pd8 .nav-item:focus,
.cid-tHm2rf8Pd8 .nav-link:focus {
  outline: none;
}
.cid-tHm2rf8Pd8 .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-tHm2rf8Pd8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tHm2rf8Pd8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tHm2rf8Pd8 .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-tHm2rf8Pd8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHm2rf8Pd8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHm2rf8Pd8 .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tHm2rf8Pd8 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tHm2rf8Pd8 .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tHm2rf8Pd8 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tHm2rf8Pd8 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tHm2rf8Pd8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tHm2rf8Pd8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tHm2rf8Pd8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tHm2rf8Pd8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tHm2rf8Pd8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tHm2rf8Pd8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tHm2rf8Pd8 .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-tHm2rf8Pd8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tHm2rf8Pd8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tHm2rf8Pd8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tHm2rf8Pd8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tHm2rf8Pd8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tHm2rf8Pd8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tHm2rf8Pd8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tHm2rf8Pd8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tHm2rf8Pd8 .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-tHm2rf8Pd8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tHm2rf8Pd8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tHm2rf8Pd8 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tHm2rf8Pd8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tHm2rf8Pd8 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tHm2rf8Pd8 .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tHm2rf8Pd8 .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tHm2rf8Pd8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tHm2rf8Pd8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tHm2rf8Pd8 .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tHm2rf8Pd8 .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-tHm2rf8Pd8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tHm2rf8Pd8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tHm2rf8Pd8 .dropdown-item.active,
.cid-tHm2rf8Pd8 .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tHm2rf8Pd8 .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tHm2rf8Pd8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tHm2rf8Pd8 .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tHm2rf8Pd8 .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tHm2rf8Pd8 .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tHm2rf8Pd8 .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tHm2rf8Pd8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tHm2rf8Pd8 .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tHm2rf8Pd8 .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tHm2rf8Pd8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tHm2rf8Pd8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tHm2rf8Pd8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHm2rf8Pd8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tHm2rf8Pd8 .navbar-buttons {
  text-align: center;
}
.cid-tHm2rf8Pd8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHm2rf8Pd8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tHm2rf8Pd8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tHm2rf8Pd8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tHm2rf8Pd8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tHm2rf8Pd8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tHm2rf8Pd8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tHm2rf8Pd8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tHm2rf8Pd8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tHm2rf8Pd8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tHm2rf8Pd8 .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tHm2rf8Pd8 a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tHm2rf8Pd8 .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tHm2rf8Pd8 .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-tHm2rf8Pd8 .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tHm2rf8Pd8 .navbar {
    height: 77px;
  }
  .cid-tHm2rf8Pd8 .navbar.opened {
    height: auto;
  }
  .cid-tHm2rf8Pd8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tHm2rf8Pd8 a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tHm2rf8Pd8 a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tHm2rf8Pd8 .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tHm2rf8Pd8 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tHm2rfOkYQ {
  padding-top: 195px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/adobestock-10704855-spiral-bound-notebook-864x1291.webp");
}
.cid-tHm2rfOkYQ .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-tHm2rfOkYQ input {
  padding: 0rem 1rem !important;
}
.cid-tHm2rfOkYQ .title {
  margin-bottom: 1rem;
}
.cid-tHm2rfOkYQ textarea {
  min-height: 160px;
}
.cid-tHm2rfOkYQ input::-webkit-input-placeholder,
.cid-tHm2rfOkYQ textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tHm2rfOkYQ input:-moz-placeholder,
.cid-tHm2rfOkYQ textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tHm2rfOkYQ img {
    width: 100%;
  }
  .cid-tHm2rfOkYQ form {
    margin-top: 2rem;
  }
}
.cid-tHm2rfOkYQ .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tHm2rfOkYQ .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tHm2rfOkYQ .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tHm2rfOkYQ .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tHm2rfOkYQ .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tHm2rfOkYQ .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tHm2rfOkYQ .form-btn {
  width: 100%;
}
.cid-tHm2rfOkYQ .link-btn {
  width: 100%;
}
.cid-tHm2rfOkYQ h5 {
  margin-bottom: 0.2rem;
}
.cid-tHm2rfOkYQ .mbr-form .btn {
  margin: 0;
}
.cid-tHm2rfOkYQ .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tHm2rfOkYQ .block-left {
  margin-bottom: 2.6rem;
}
.cid-tHm2rfOkYQ .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tHm2rfOkYQ .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tHm2rfOkYQ .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tHm2rfOkYQ .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tHm2rfOkYQ .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tHm2rfOkYQ .row {
    margin: 0rem;
  }
}
.cid-tHm2rfOkYQ .btn {
  margin-left: 0rem;
}
.cid-tHm2rfOkYQ P {
  text-align: left;
}
.cid-tHm2rfOkYQ .block-left,
.cid-tHm2rfOkYQ .mbr-section-btn {
  color: #ffffff;
}
.cid-tHm2rgmgGm {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #101010;
}
.cid-tHm2rgmgGm .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tHm2rgmgGm textarea {
  min-height: 150px;
}
.cid-tHm2rgmgGm input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tHm2rgmgGm textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tHm2rgmgGm .form-control,
.cid-tHm2rgmgGm .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tHm2rgmgGm .form-control input::-webkit-input-placeholder,
.cid-tHm2rgmgGm .field-input input::-webkit-input-placeholder,
.cid-tHm2rgmgGm .form-control textarea::-webkit-input-placeholder,
.cid-tHm2rgmgGm .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tHm2rgmgGm .form-control input:-moz-placeholder,
.cid-tHm2rgmgGm .field-input input:-moz-placeholder,
.cid-tHm2rgmgGm .form-control textarea:-moz-placeholder,
.cid-tHm2rgmgGm .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tHm2rgmgGm .jq-number__spin:hover,
.cid-tHm2rgmgGm .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tHm2rgmgGm .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tHm2rgmgGm .jq-selectbox li,
.cid-tHm2rgmgGm .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tHm2rgmgGm .jq-selectbox li:hover,
.cid-tHm2rgmgGm .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tHm2rgmgGm .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tHm2rgmgGm .jq-number__spin.minus:hover:after,
.cid-tHm2rgmgGm .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tHm2rgmgGm .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tHm2rgmgGm .jq-number__spin.minus:after,
.cid-tHm2rgmgGm .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tHm2rgmgGm .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tHm2rgmgGm .social-list {
    margin-bottom: 3rem;
  }
  .cid-tHm2rgmgGm .email-input {
    margin-top: 2rem;
  }
}
.cid-tHm2rgmgGm .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tHm2rgmgGm .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tHm2rgmgGm .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tHm2rgmgGm .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tHm2rgmgGm .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tHm2rgmgGm .social-list {
  display: flex;
}
.cid-tHm2rgmgGm .social-list a {
  transition: .3s;
}
.cid-tHm2rgmgGm .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tHm2rgmgGm .row {
  align-items: center;
}
.cid-tHm2rgmgGm .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tHm2rgmgGm .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tHm2rgmgGm .form-btn {
  margin-top: 2.5rem;
}
.cid-tHm2rgmgGm input::-webkit-input-placeholder,
.cid-tHm2rgmgGm textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tHm2rgmgGm input:-moz-placeholder,
.cid-tHm2rgmgGm textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tHm2rgmgGm .media-content {
    padding-right: 3rem;
  }
  .cid-tHm2rgmgGm .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tHm2rgmgGm .row {
    padding: 0 1rem;
  }
}
.cid-tHm2rgmgGm .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tHm2rgmgGm .form-btn {
    width: 100%;
  }
  .cid-tHm2rgmgGm .btn {
    width: 100%;
  }
}
.cid-tHm2rgmgGm .mbr-text,
.cid-tHm2rgmgGm .mbr-section-btn {
  color: #ffffff;
}
.cid-tKhkWmMi6p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKhkWmMi6p .media-container-row {
  align-items: center;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKhkWmMi6p .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKhkWmMi6p .foot-menu-item {
  transform: 0.2s;
}
.cid-tKhkWmMi6p .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKhkWmMi6p .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKhkWmMi6p .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKhkWmMi6p .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: center;
  }
  .cid-tKhkWmMi6p .mbr-text {
    text-align: center;
  }
  .cid-tKhkWmMi6p .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKhkWmMi6p .link:hover {
  color: #ffffff;
}
.cid-tKhkWmMi6p .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKhkWmMi6p foot-menu-item P {
  color: #ffffff;
}
.cid-tHm6ph2HW1 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tHm6ph2HW1 .nav-item:focus,
.cid-tHm6ph2HW1 .nav-link:focus {
  outline: none;
}
.cid-tHm6ph2HW1 .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-tHm6ph2HW1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tHm6ph2HW1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tHm6ph2HW1 .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-tHm6ph2HW1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHm6ph2HW1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHm6ph2HW1 .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tHm6ph2HW1 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tHm6ph2HW1 .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tHm6ph2HW1 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tHm6ph2HW1 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tHm6ph2HW1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tHm6ph2HW1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tHm6ph2HW1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tHm6ph2HW1 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tHm6ph2HW1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tHm6ph2HW1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tHm6ph2HW1 .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-tHm6ph2HW1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tHm6ph2HW1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tHm6ph2HW1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tHm6ph2HW1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tHm6ph2HW1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tHm6ph2HW1 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tHm6ph2HW1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tHm6ph2HW1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tHm6ph2HW1 .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-tHm6ph2HW1 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tHm6ph2HW1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tHm6ph2HW1 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tHm6ph2HW1 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tHm6ph2HW1 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tHm6ph2HW1 .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tHm6ph2HW1 .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tHm6ph2HW1 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tHm6ph2HW1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tHm6ph2HW1 .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tHm6ph2HW1 .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-tHm6ph2HW1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tHm6ph2HW1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tHm6ph2HW1 .dropdown-item.active,
.cid-tHm6ph2HW1 .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tHm6ph2HW1 .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tHm6ph2HW1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tHm6ph2HW1 .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tHm6ph2HW1 .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tHm6ph2HW1 .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tHm6ph2HW1 .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tHm6ph2HW1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tHm6ph2HW1 .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tHm6ph2HW1 .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tHm6ph2HW1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tHm6ph2HW1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tHm6ph2HW1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHm6ph2HW1 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tHm6ph2HW1 .navbar-buttons {
  text-align: center;
}
.cid-tHm6ph2HW1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHm6ph2HW1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tHm6ph2HW1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tHm6ph2HW1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tHm6ph2HW1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tHm6ph2HW1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tHm6ph2HW1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tHm6ph2HW1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tHm6ph2HW1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tHm6ph2HW1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tHm6ph2HW1 .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tHm6ph2HW1 a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tHm6ph2HW1 .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tHm6ph2HW1 .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-tHm6ph2HW1 .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tHm6ph2HW1 .navbar {
    height: 77px;
  }
  .cid-tHm6ph2HW1 .navbar.opened {
    height: auto;
  }
  .cid-tHm6ph2HW1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tHm6ph2HW1 a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tHm6ph2HW1 a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tHm6ph2HW1 .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tHm6ph2HW1 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tHm6phFG6e {
  padding-top: 195px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/adobestock-85867211-press-camera-group-1824x1216.webp");
}
.cid-tHm6phFG6e .mbr-overlay {
  background-color: #000000;
  opacity: 0.5;
}
.cid-tHm6phFG6e input {
  padding: 0rem 1rem !important;
}
.cid-tHm6phFG6e .title {
  margin-bottom: 1rem;
}
.cid-tHm6phFG6e textarea {
  min-height: 160px;
}
.cid-tHm6phFG6e input::-webkit-input-placeholder,
.cid-tHm6phFG6e textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tHm6phFG6e input:-moz-placeholder,
.cid-tHm6phFG6e textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tHm6phFG6e img {
    width: 100%;
  }
  .cid-tHm6phFG6e form {
    margin-top: 2rem;
  }
}
.cid-tHm6phFG6e .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tHm6phFG6e .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tHm6phFG6e .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tHm6phFG6e .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tHm6phFG6e .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tHm6phFG6e .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tHm6phFG6e .form-btn {
  width: 100%;
}
.cid-tHm6phFG6e .link-btn {
  width: 100%;
}
.cid-tHm6phFG6e h5 {
  margin-bottom: 0.2rem;
}
.cid-tHm6phFG6e .mbr-form .btn {
  margin: 0;
}
.cid-tHm6phFG6e .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tHm6phFG6e .block-left {
  margin-bottom: 2.6rem;
}
.cid-tHm6phFG6e .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tHm6phFG6e .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tHm6phFG6e .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tHm6phFG6e .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tHm6phFG6e .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tHm6phFG6e .row {
    margin: 0rem;
  }
}
.cid-tHm6phFG6e .btn {
  margin-left: 0rem;
}
.cid-tHm6phFG6e P {
  text-align: left;
}
.cid-tHm6phFG6e .block-left,
.cid-tHm6phFG6e .mbr-section-btn {
  color: #ffffff;
}
.cid-tHm6pid7Os {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #101010;
}
.cid-tHm6pid7Os .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tHm6pid7Os textarea {
  min-height: 150px;
}
.cid-tHm6pid7Os input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tHm6pid7Os textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tHm6pid7Os .form-control,
.cid-tHm6pid7Os .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tHm6pid7Os .form-control input::-webkit-input-placeholder,
.cid-tHm6pid7Os .field-input input::-webkit-input-placeholder,
.cid-tHm6pid7Os .form-control textarea::-webkit-input-placeholder,
.cid-tHm6pid7Os .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tHm6pid7Os .form-control input:-moz-placeholder,
.cid-tHm6pid7Os .field-input input:-moz-placeholder,
.cid-tHm6pid7Os .form-control textarea:-moz-placeholder,
.cid-tHm6pid7Os .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tHm6pid7Os .jq-number__spin:hover,
.cid-tHm6pid7Os .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tHm6pid7Os .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tHm6pid7Os .jq-selectbox li,
.cid-tHm6pid7Os .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tHm6pid7Os .jq-selectbox li:hover,
.cid-tHm6pid7Os .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tHm6pid7Os .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tHm6pid7Os .jq-number__spin.minus:hover:after,
.cid-tHm6pid7Os .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tHm6pid7Os .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tHm6pid7Os .jq-number__spin.minus:after,
.cid-tHm6pid7Os .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tHm6pid7Os .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tHm6pid7Os .social-list {
    margin-bottom: 3rem;
  }
  .cid-tHm6pid7Os .email-input {
    margin-top: 2rem;
  }
}
.cid-tHm6pid7Os .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tHm6pid7Os .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tHm6pid7Os .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tHm6pid7Os .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tHm6pid7Os .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tHm6pid7Os .social-list {
  display: flex;
}
.cid-tHm6pid7Os .social-list a {
  transition: .3s;
}
.cid-tHm6pid7Os .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tHm6pid7Os .row {
  align-items: center;
}
.cid-tHm6pid7Os .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tHm6pid7Os .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tHm6pid7Os .form-btn {
  margin-top: 2.5rem;
}
.cid-tHm6pid7Os input::-webkit-input-placeholder,
.cid-tHm6pid7Os textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tHm6pid7Os input:-moz-placeholder,
.cid-tHm6pid7Os textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tHm6pid7Os .media-content {
    padding-right: 3rem;
  }
  .cid-tHm6pid7Os .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tHm6pid7Os .row {
    padding: 0 1rem;
  }
}
.cid-tHm6pid7Os .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tHm6pid7Os .form-btn {
    width: 100%;
  }
  .cid-tHm6pid7Os .btn {
    width: 100%;
  }
}
.cid-tHm6pid7Os .mbr-text,
.cid-tHm6pid7Os .mbr-section-btn {
  color: #ffffff;
}
.cid-tKhkWmMi6p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKhkWmMi6p .media-container-row {
  align-items: center;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKhkWmMi6p .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKhkWmMi6p .foot-menu-item {
  transform: 0.2s;
}
.cid-tKhkWmMi6p .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKhkWmMi6p .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKhkWmMi6p .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKhkWmMi6p .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: center;
  }
  .cid-tKhkWmMi6p .mbr-text {
    text-align: center;
  }
  .cid-tKhkWmMi6p .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKhkWmMi6p .link:hover {
  color: #ffffff;
}
.cid-tKhkWmMi6p .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKhkWmMi6p foot-menu-item P {
  color: #ffffff;
}
.cid-tIAwOzp4D5 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tIAwOzp4D5 .nav-item:focus,
.cid-tIAwOzp4D5 .nav-link:focus {
  outline: none;
}
.cid-tIAwOzp4D5 .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-tIAwOzp4D5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIAwOzp4D5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tIAwOzp4D5 .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-tIAwOzp4D5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIAwOzp4D5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIAwOzp4D5 .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tIAwOzp4D5 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tIAwOzp4D5 .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tIAwOzp4D5 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tIAwOzp4D5 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIAwOzp4D5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIAwOzp4D5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tIAwOzp4D5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tIAwOzp4D5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tIAwOzp4D5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIAwOzp4D5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIAwOzp4D5 .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-tIAwOzp4D5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIAwOzp4D5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tIAwOzp4D5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tIAwOzp4D5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIAwOzp4D5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIAwOzp4D5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tIAwOzp4D5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIAwOzp4D5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIAwOzp4D5 .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-tIAwOzp4D5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tIAwOzp4D5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIAwOzp4D5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIAwOzp4D5 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tIAwOzp4D5 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tIAwOzp4D5 .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tIAwOzp4D5 .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tIAwOzp4D5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tIAwOzp4D5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tIAwOzp4D5 .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tIAwOzp4D5 .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-tIAwOzp4D5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIAwOzp4D5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIAwOzp4D5 .dropdown-item.active,
.cid-tIAwOzp4D5 .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tIAwOzp4D5 .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tIAwOzp4D5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tIAwOzp4D5 .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tIAwOzp4D5 .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tIAwOzp4D5 .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tIAwOzp4D5 .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tIAwOzp4D5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tIAwOzp4D5 .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tIAwOzp4D5 .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tIAwOzp4D5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tIAwOzp4D5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIAwOzp4D5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIAwOzp4D5 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tIAwOzp4D5 .navbar-buttons {
  text-align: center;
}
.cid-tIAwOzp4D5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tIAwOzp4D5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tIAwOzp4D5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tIAwOzp4D5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tIAwOzp4D5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tIAwOzp4D5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tIAwOzp4D5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tIAwOzp4D5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tIAwOzp4D5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tIAwOzp4D5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tIAwOzp4D5 .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tIAwOzp4D5 a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tIAwOzp4D5 .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tIAwOzp4D5 .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-tIAwOzp4D5 .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIAwOzp4D5 .navbar {
    height: 77px;
  }
  .cid-tIAwOzp4D5 .navbar.opened {
    height: auto;
  }
  .cid-tIAwOzp4D5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIAwOzp4D5 a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tIAwOzp4D5 a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tIAwOzp4D5 .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tIAwOzp4D5 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tIAwOzJrMN {
  padding-top: 195px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/adobestock-332231026-mono-hands-typing-on-laptop-856x1028.webp");
}
.cid-tIAwOzJrMN .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-tIAwOzJrMN input {
  padding: 0rem 1rem !important;
}
.cid-tIAwOzJrMN .title {
  margin-bottom: 1rem;
}
.cid-tIAwOzJrMN textarea {
  min-height: 160px;
}
.cid-tIAwOzJrMN input::-webkit-input-placeholder,
.cid-tIAwOzJrMN textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tIAwOzJrMN input:-moz-placeholder,
.cid-tIAwOzJrMN textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tIAwOzJrMN img {
    width: 100%;
  }
  .cid-tIAwOzJrMN form {
    margin-top: 2rem;
  }
}
.cid-tIAwOzJrMN .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tIAwOzJrMN .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tIAwOzJrMN .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tIAwOzJrMN .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tIAwOzJrMN .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tIAwOzJrMN .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tIAwOzJrMN .form-btn {
  width: 100%;
}
.cid-tIAwOzJrMN .link-btn {
  width: 100%;
}
.cid-tIAwOzJrMN h5 {
  margin-bottom: 0.2rem;
}
.cid-tIAwOzJrMN .mbr-form .btn {
  margin: 0;
}
.cid-tIAwOzJrMN .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tIAwOzJrMN .block-left {
  margin-bottom: 2.6rem;
}
.cid-tIAwOzJrMN .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tIAwOzJrMN .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tIAwOzJrMN .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tIAwOzJrMN .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tIAwOzJrMN .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tIAwOzJrMN .row {
    margin: 0rem;
  }
}
.cid-tIAwOzJrMN .btn {
  margin-left: 0rem;
}
.cid-tIAwOzJrMN P {
  text-align: left;
}
.cid-tIAwOzJrMN .block-left,
.cid-tIAwOzJrMN .mbr-section-btn {
  color: #ffffff;
}
.cid-tIAwOzXSDW {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #101010;
}
.cid-tIAwOzXSDW .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tIAwOzXSDW textarea {
  min-height: 150px;
}
.cid-tIAwOzXSDW input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tIAwOzXSDW textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tIAwOzXSDW .form-control,
.cid-tIAwOzXSDW .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tIAwOzXSDW .form-control input::-webkit-input-placeholder,
.cid-tIAwOzXSDW .field-input input::-webkit-input-placeholder,
.cid-tIAwOzXSDW .form-control textarea::-webkit-input-placeholder,
.cid-tIAwOzXSDW .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tIAwOzXSDW .form-control input:-moz-placeholder,
.cid-tIAwOzXSDW .field-input input:-moz-placeholder,
.cid-tIAwOzXSDW .form-control textarea:-moz-placeholder,
.cid-tIAwOzXSDW .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tIAwOzXSDW .jq-number__spin:hover,
.cid-tIAwOzXSDW .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tIAwOzXSDW .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tIAwOzXSDW .jq-selectbox li,
.cid-tIAwOzXSDW .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tIAwOzXSDW .jq-selectbox li:hover,
.cid-tIAwOzXSDW .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tIAwOzXSDW .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tIAwOzXSDW .jq-number__spin.minus:hover:after,
.cid-tIAwOzXSDW .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tIAwOzXSDW .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tIAwOzXSDW .jq-number__spin.minus:after,
.cid-tIAwOzXSDW .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tIAwOzXSDW .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tIAwOzXSDW .social-list {
    margin-bottom: 3rem;
  }
  .cid-tIAwOzXSDW .email-input {
    margin-top: 2rem;
  }
}
.cid-tIAwOzXSDW .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tIAwOzXSDW .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tIAwOzXSDW .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tIAwOzXSDW .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tIAwOzXSDW .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tIAwOzXSDW .social-list {
  display: flex;
}
.cid-tIAwOzXSDW .social-list a {
  transition: .3s;
}
.cid-tIAwOzXSDW .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tIAwOzXSDW .row {
  align-items: center;
}
.cid-tIAwOzXSDW .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tIAwOzXSDW .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tIAwOzXSDW .form-btn {
  margin-top: 2.5rem;
}
.cid-tIAwOzXSDW input::-webkit-input-placeholder,
.cid-tIAwOzXSDW textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tIAwOzXSDW input:-moz-placeholder,
.cid-tIAwOzXSDW textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tIAwOzXSDW .media-content {
    padding-right: 3rem;
  }
  .cid-tIAwOzXSDW .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tIAwOzXSDW .row {
    padding: 0 1rem;
  }
}
.cid-tIAwOzXSDW .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tIAwOzXSDW .form-btn {
    width: 100%;
  }
  .cid-tIAwOzXSDW .btn {
    width: 100%;
  }
}
.cid-tIAwOzXSDW .mbr-text,
.cid-tIAwOzXSDW .mbr-section-btn {
  color: #ffffff;
}
.cid-tKhkWmMi6p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKhkWmMi6p .media-container-row {
  align-items: center;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKhkWmMi6p .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKhkWmMi6p .foot-menu-item {
  transform: 0.2s;
}
.cid-tKhkWmMi6p .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKhkWmMi6p .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKhkWmMi6p .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKhkWmMi6p .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: center;
  }
  .cid-tKhkWmMi6p .mbr-text {
    text-align: center;
  }
  .cid-tKhkWmMi6p .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKhkWmMi6p .link:hover {
  color: #ffffff;
}
.cid-tKhkWmMi6p .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKhkWmMi6p foot-menu-item P {
  color: #ffffff;
}
.cid-tIAD3AF2ky .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tIAD3AF2ky .nav-item:focus,
.cid-tIAD3AF2ky .nav-link:focus {
  outline: none;
}
.cid-tIAD3AF2ky .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-tIAD3AF2ky .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIAD3AF2ky .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tIAD3AF2ky .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-tIAD3AF2ky .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIAD3AF2ky .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIAD3AF2ky .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tIAD3AF2ky .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tIAD3AF2ky .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tIAD3AF2ky .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tIAD3AF2ky .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIAD3AF2ky .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIAD3AF2ky .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tIAD3AF2ky .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tIAD3AF2ky .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tIAD3AF2ky .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIAD3AF2ky .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIAD3AF2ky .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-tIAD3AF2ky .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIAD3AF2ky .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tIAD3AF2ky .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tIAD3AF2ky .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIAD3AF2ky .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIAD3AF2ky .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tIAD3AF2ky .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIAD3AF2ky .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIAD3AF2ky .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-tIAD3AF2ky .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tIAD3AF2ky .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIAD3AF2ky .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIAD3AF2ky .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tIAD3AF2ky .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tIAD3AF2ky .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tIAD3AF2ky .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tIAD3AF2ky .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tIAD3AF2ky .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tIAD3AF2ky .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tIAD3AF2ky .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-tIAD3AF2ky .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIAD3AF2ky .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIAD3AF2ky .dropdown-item.active,
.cid-tIAD3AF2ky .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tIAD3AF2ky .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tIAD3AF2ky .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tIAD3AF2ky .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tIAD3AF2ky .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tIAD3AF2ky .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tIAD3AF2ky .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tIAD3AF2ky .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tIAD3AF2ky .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tIAD3AF2ky .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tIAD3AF2ky .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tIAD3AF2ky .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIAD3AF2ky .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIAD3AF2ky ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tIAD3AF2ky .navbar-buttons {
  text-align: center;
}
.cid-tIAD3AF2ky button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tIAD3AF2ky button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tIAD3AF2ky button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tIAD3AF2ky button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tIAD3AF2ky button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tIAD3AF2ky button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tIAD3AF2ky nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tIAD3AF2ky nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tIAD3AF2ky nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tIAD3AF2ky nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tIAD3AF2ky .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tIAD3AF2ky a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tIAD3AF2ky .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tIAD3AF2ky .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-tIAD3AF2ky .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIAD3AF2ky .navbar {
    height: 77px;
  }
  .cid-tIAD3AF2ky .navbar.opened {
    height: auto;
  }
  .cid-tIAD3AF2ky .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIAD3AF2ky a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tIAD3AF2ky a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tIAD3AF2ky .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tIAD3AF2ky .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tIAD3B2JQu {
  padding-top: 195px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/adobestock-332231026-mono-hands-typing-on-laptop-856x1028.webp");
}
.cid-tIAD3B2JQu .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-tIAD3B2JQu input {
  padding: 0rem 1rem !important;
}
.cid-tIAD3B2JQu .title {
  margin-bottom: 1rem;
}
.cid-tIAD3B2JQu textarea {
  min-height: 160px;
}
.cid-tIAD3B2JQu input::-webkit-input-placeholder,
.cid-tIAD3B2JQu textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tIAD3B2JQu input:-moz-placeholder,
.cid-tIAD3B2JQu textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tIAD3B2JQu img {
    width: 100%;
  }
  .cid-tIAD3B2JQu form {
    margin-top: 2rem;
  }
}
.cid-tIAD3B2JQu .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tIAD3B2JQu .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tIAD3B2JQu .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tIAD3B2JQu .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tIAD3B2JQu .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tIAD3B2JQu .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tIAD3B2JQu .form-btn {
  width: 100%;
}
.cid-tIAD3B2JQu .link-btn {
  width: 100%;
}
.cid-tIAD3B2JQu h5 {
  margin-bottom: 0.2rem;
}
.cid-tIAD3B2JQu .mbr-form .btn {
  margin: 0;
}
.cid-tIAD3B2JQu .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tIAD3B2JQu .block-left {
  margin-bottom: 2.6rem;
}
.cid-tIAD3B2JQu .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tIAD3B2JQu .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tIAD3B2JQu .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tIAD3B2JQu .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tIAD3B2JQu .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tIAD3B2JQu .row {
    margin: 0rem;
  }
}
.cid-tIAD3B2JQu .btn {
  margin-left: 0rem;
}
.cid-tIAD3B2JQu P {
  text-align: left;
}
.cid-tIAD3B2JQu .block-left,
.cid-tIAD3B2JQu .mbr-section-btn {
  color: #ffffff;
}
.cid-tIAD3BkKEd {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #101010;
}
.cid-tIAD3BkKEd .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tIAD3BkKEd textarea {
  min-height: 150px;
}
.cid-tIAD3BkKEd input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tIAD3BkKEd textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tIAD3BkKEd .form-control,
.cid-tIAD3BkKEd .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tIAD3BkKEd .form-control input::-webkit-input-placeholder,
.cid-tIAD3BkKEd .field-input input::-webkit-input-placeholder,
.cid-tIAD3BkKEd .form-control textarea::-webkit-input-placeholder,
.cid-tIAD3BkKEd .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tIAD3BkKEd .form-control input:-moz-placeholder,
.cid-tIAD3BkKEd .field-input input:-moz-placeholder,
.cid-tIAD3BkKEd .form-control textarea:-moz-placeholder,
.cid-tIAD3BkKEd .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tIAD3BkKEd .jq-number__spin:hover,
.cid-tIAD3BkKEd .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tIAD3BkKEd .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tIAD3BkKEd .jq-selectbox li,
.cid-tIAD3BkKEd .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tIAD3BkKEd .jq-selectbox li:hover,
.cid-tIAD3BkKEd .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tIAD3BkKEd .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tIAD3BkKEd .jq-number__spin.minus:hover:after,
.cid-tIAD3BkKEd .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tIAD3BkKEd .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tIAD3BkKEd .jq-number__spin.minus:after,
.cid-tIAD3BkKEd .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tIAD3BkKEd .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tIAD3BkKEd .social-list {
    margin-bottom: 3rem;
  }
  .cid-tIAD3BkKEd .email-input {
    margin-top: 2rem;
  }
}
.cid-tIAD3BkKEd .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tIAD3BkKEd .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tIAD3BkKEd .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tIAD3BkKEd .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tIAD3BkKEd .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tIAD3BkKEd .social-list {
  display: flex;
}
.cid-tIAD3BkKEd .social-list a {
  transition: .3s;
}
.cid-tIAD3BkKEd .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tIAD3BkKEd .row {
  align-items: center;
}
.cid-tIAD3BkKEd .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tIAD3BkKEd .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tIAD3BkKEd .form-btn {
  margin-top: 2.5rem;
}
.cid-tIAD3BkKEd input::-webkit-input-placeholder,
.cid-tIAD3BkKEd textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tIAD3BkKEd input:-moz-placeholder,
.cid-tIAD3BkKEd textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tIAD3BkKEd .media-content {
    padding-right: 3rem;
  }
  .cid-tIAD3BkKEd .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tIAD3BkKEd .row {
    padding: 0 1rem;
  }
}
.cid-tIAD3BkKEd .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tIAD3BkKEd .form-btn {
    width: 100%;
  }
  .cid-tIAD3BkKEd .btn {
    width: 100%;
  }
}
.cid-tIAD3BkKEd .mbr-text,
.cid-tIAD3BkKEd .mbr-section-btn {
  color: #ffffff;
}
.cid-tKhkWmMi6p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKhkWmMi6p .media-container-row {
  align-items: center;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKhkWmMi6p .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKhkWmMi6p .foot-menu-item {
  transform: 0.2s;
}
.cid-tKhkWmMi6p .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKhkWmMi6p .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKhkWmMi6p .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKhkWmMi6p .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: center;
  }
  .cid-tKhkWmMi6p .mbr-text {
    text-align: center;
  }
  .cid-tKhkWmMi6p .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKhkWmMi6p .link:hover {
  color: #ffffff;
}
.cid-tKhkWmMi6p .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKhkWmMi6p foot-menu-item P {
  color: #ffffff;
}
.cid-tKifDhUweB .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tKifDhUweB .nav-item:focus,
.cid-tKifDhUweB .nav-link:focus {
  outline: none;
}
.cid-tKifDhUweB .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-tKifDhUweB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tKifDhUweB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tKifDhUweB .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-tKifDhUweB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tKifDhUweB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tKifDhUweB .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tKifDhUweB .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tKifDhUweB .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tKifDhUweB .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tKifDhUweB .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tKifDhUweB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tKifDhUweB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tKifDhUweB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tKifDhUweB .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tKifDhUweB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tKifDhUweB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tKifDhUweB .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-tKifDhUweB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tKifDhUweB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tKifDhUweB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tKifDhUweB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tKifDhUweB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tKifDhUweB .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tKifDhUweB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tKifDhUweB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tKifDhUweB .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-tKifDhUweB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tKifDhUweB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tKifDhUweB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tKifDhUweB .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tKifDhUweB .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tKifDhUweB .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tKifDhUweB .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tKifDhUweB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tKifDhUweB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tKifDhUweB .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tKifDhUweB .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-tKifDhUweB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tKifDhUweB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKifDhUweB .dropdown-item.active,
.cid-tKifDhUweB .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tKifDhUweB .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tKifDhUweB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tKifDhUweB .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tKifDhUweB .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tKifDhUweB .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tKifDhUweB .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tKifDhUweB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tKifDhUweB .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tKifDhUweB .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tKifDhUweB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tKifDhUweB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tKifDhUweB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tKifDhUweB ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tKifDhUweB .navbar-buttons {
  text-align: center;
}
.cid-tKifDhUweB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tKifDhUweB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tKifDhUweB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tKifDhUweB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tKifDhUweB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tKifDhUweB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tKifDhUweB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKifDhUweB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tKifDhUweB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tKifDhUweB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKifDhUweB .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tKifDhUweB a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tKifDhUweB .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tKifDhUweB .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-tKifDhUweB .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tKifDhUweB .navbar {
    height: 77px;
  }
  .cid-tKifDhUweB .navbar.opened {
    height: auto;
  }
  .cid-tKifDhUweB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKifDhUweB a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tKifDhUweB a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tKifDhUweB .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tKifDhUweB .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tKifDikZPS {
  padding-top: 195px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/adobestock-401300584-pencil-letters-1417x1984.webp");
}
.cid-tKifDikZPS .mbr-overlay {
  background-color: #000000;
  opacity: 0.6;
}
.cid-tKifDikZPS input {
  padding: 0rem 1rem !important;
}
.cid-tKifDikZPS .title {
  margin-bottom: 1rem;
}
.cid-tKifDikZPS textarea {
  min-height: 160px;
}
.cid-tKifDikZPS input::-webkit-input-placeholder,
.cid-tKifDikZPS textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tKifDikZPS input:-moz-placeholder,
.cid-tKifDikZPS textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tKifDikZPS img {
    width: 100%;
  }
  .cid-tKifDikZPS form {
    margin-top: 2rem;
  }
}
.cid-tKifDikZPS .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tKifDikZPS .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tKifDikZPS .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tKifDikZPS .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tKifDikZPS .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tKifDikZPS .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tKifDikZPS .form-btn {
  width: 100%;
}
.cid-tKifDikZPS .link-btn {
  width: 100%;
}
.cid-tKifDikZPS h5 {
  margin-bottom: 0.2rem;
}
.cid-tKifDikZPS .mbr-form .btn {
  margin: 0;
}
.cid-tKifDikZPS .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tKifDikZPS .block-left {
  margin-bottom: 2.6rem;
}
.cid-tKifDikZPS .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tKifDikZPS .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tKifDikZPS .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tKifDikZPS .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tKifDikZPS .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tKifDikZPS .row {
    margin: 0rem;
  }
}
.cid-tKifDikZPS .btn {
  margin-left: 0rem;
}
.cid-tKifDikZPS P {
  text-align: left;
}
.cid-tKifDikZPS .block-left,
.cid-tKifDikZPS .mbr-section-btn {
  color: #ffffff;
}
.cid-tKifDiLoP2 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #101010;
}
.cid-tKifDiLoP2 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tKifDiLoP2 textarea {
  min-height: 150px;
}
.cid-tKifDiLoP2 input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tKifDiLoP2 textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tKifDiLoP2 .form-control,
.cid-tKifDiLoP2 .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tKifDiLoP2 .form-control input::-webkit-input-placeholder,
.cid-tKifDiLoP2 .field-input input::-webkit-input-placeholder,
.cid-tKifDiLoP2 .form-control textarea::-webkit-input-placeholder,
.cid-tKifDiLoP2 .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tKifDiLoP2 .form-control input:-moz-placeholder,
.cid-tKifDiLoP2 .field-input input:-moz-placeholder,
.cid-tKifDiLoP2 .form-control textarea:-moz-placeholder,
.cid-tKifDiLoP2 .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tKifDiLoP2 .jq-number__spin:hover,
.cid-tKifDiLoP2 .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tKifDiLoP2 .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tKifDiLoP2 .jq-selectbox li,
.cid-tKifDiLoP2 .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tKifDiLoP2 .jq-selectbox li:hover,
.cid-tKifDiLoP2 .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tKifDiLoP2 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tKifDiLoP2 .jq-number__spin.minus:hover:after,
.cid-tKifDiLoP2 .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tKifDiLoP2 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tKifDiLoP2 .jq-number__spin.minus:after,
.cid-tKifDiLoP2 .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tKifDiLoP2 .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tKifDiLoP2 .social-list {
    margin-bottom: 3rem;
  }
  .cid-tKifDiLoP2 .email-input {
    margin-top: 2rem;
  }
}
.cid-tKifDiLoP2 .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tKifDiLoP2 .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tKifDiLoP2 .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tKifDiLoP2 .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tKifDiLoP2 .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tKifDiLoP2 .social-list {
  display: flex;
}
.cid-tKifDiLoP2 .social-list a {
  transition: .3s;
}
.cid-tKifDiLoP2 .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tKifDiLoP2 .row {
  align-items: center;
}
.cid-tKifDiLoP2 .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tKifDiLoP2 .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tKifDiLoP2 .form-btn {
  margin-top: 2.5rem;
}
.cid-tKifDiLoP2 input::-webkit-input-placeholder,
.cid-tKifDiLoP2 textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tKifDiLoP2 input:-moz-placeholder,
.cid-tKifDiLoP2 textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tKifDiLoP2 .media-content {
    padding-right: 3rem;
  }
  .cid-tKifDiLoP2 .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tKifDiLoP2 .row {
    padding: 0 1rem;
  }
}
.cid-tKifDiLoP2 .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tKifDiLoP2 .form-btn {
    width: 100%;
  }
  .cid-tKifDiLoP2 .btn {
    width: 100%;
  }
}
.cid-tKifDiLoP2 .mbr-text,
.cid-tKifDiLoP2 .mbr-section-btn {
  color: #ffffff;
}
.cid-tKifDja55r {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKifDja55r .media-container-row {
  align-items: center;
}
.cid-tKifDja55r .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKifDja55r .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKifDja55r .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKifDja55r .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKifDja55r .foot-menu-item {
  transform: 0.2s;
}
.cid-tKifDja55r .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKifDja55r .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKifDja55r .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKifDja55r .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKifDja55r .foot-menu {
    justify-content: center;
  }
  .cid-tKifDja55r .mbr-text {
    text-align: center;
  }
  .cid-tKifDja55r .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKifDja55r .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKifDja55r .link:hover {
  color: #ffffff;
}
.cid-tKifDja55r .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKifDja55r foot-menu-item P {
  color: #ffffff;
}
.cid-tKlqWa7YeM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tKlqWa7YeM .nav-item:focus,
.cid-tKlqWa7YeM .nav-link:focus {
  outline: none;
}
.cid-tKlqWa7YeM .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-tKlqWa7YeM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tKlqWa7YeM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tKlqWa7YeM .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-tKlqWa7YeM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tKlqWa7YeM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tKlqWa7YeM .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tKlqWa7YeM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tKlqWa7YeM .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tKlqWa7YeM .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tKlqWa7YeM .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tKlqWa7YeM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tKlqWa7YeM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tKlqWa7YeM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tKlqWa7YeM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tKlqWa7YeM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tKlqWa7YeM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tKlqWa7YeM .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-tKlqWa7YeM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tKlqWa7YeM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tKlqWa7YeM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tKlqWa7YeM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tKlqWa7YeM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tKlqWa7YeM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tKlqWa7YeM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tKlqWa7YeM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tKlqWa7YeM .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-tKlqWa7YeM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tKlqWa7YeM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tKlqWa7YeM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tKlqWa7YeM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tKlqWa7YeM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tKlqWa7YeM .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tKlqWa7YeM .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tKlqWa7YeM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tKlqWa7YeM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tKlqWa7YeM .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tKlqWa7YeM .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-tKlqWa7YeM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tKlqWa7YeM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKlqWa7YeM .dropdown-item.active,
.cid-tKlqWa7YeM .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tKlqWa7YeM .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tKlqWa7YeM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tKlqWa7YeM .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tKlqWa7YeM .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tKlqWa7YeM .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tKlqWa7YeM .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tKlqWa7YeM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tKlqWa7YeM .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tKlqWa7YeM .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tKlqWa7YeM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tKlqWa7YeM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tKlqWa7YeM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tKlqWa7YeM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tKlqWa7YeM .navbar-buttons {
  text-align: center;
}
.cid-tKlqWa7YeM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tKlqWa7YeM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tKlqWa7YeM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tKlqWa7YeM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tKlqWa7YeM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tKlqWa7YeM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tKlqWa7YeM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKlqWa7YeM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tKlqWa7YeM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tKlqWa7YeM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKlqWa7YeM .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tKlqWa7YeM a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tKlqWa7YeM .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tKlqWa7YeM .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-tKlqWa7YeM .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tKlqWa7YeM .navbar {
    height: 77px;
  }
  .cid-tKlqWa7YeM .navbar.opened {
    height: auto;
  }
  .cid-tKlqWa7YeM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKlqWa7YeM a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tKlqWa7YeM a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tKlqWa7YeM .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tKlqWa7YeM .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tKlqWasll9 {
  padding-top: 195px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tKlqWasll9 .mbr-overlay {
  background-color: #000000;
  opacity: 0.6;
}
.cid-tKlqWasll9 input {
  padding: 0rem 1rem !important;
}
.cid-tKlqWasll9 .title {
  margin-bottom: 1rem;
}
.cid-tKlqWasll9 textarea {
  min-height: 160px;
}
.cid-tKlqWasll9 input::-webkit-input-placeholder,
.cid-tKlqWasll9 textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tKlqWasll9 input:-moz-placeholder,
.cid-tKlqWasll9 textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tKlqWasll9 img {
    width: 100%;
  }
  .cid-tKlqWasll9 form {
    margin-top: 2rem;
  }
}
.cid-tKlqWasll9 .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tKlqWasll9 .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tKlqWasll9 .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tKlqWasll9 .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tKlqWasll9 .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tKlqWasll9 .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tKlqWasll9 .form-btn {
  width: 100%;
}
.cid-tKlqWasll9 .link-btn {
  width: 100%;
}
.cid-tKlqWasll9 h5 {
  margin-bottom: 0.2rem;
}
.cid-tKlqWasll9 .mbr-form .btn {
  margin: 0;
}
.cid-tKlqWasll9 .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tKlqWasll9 .block-left {
  margin-bottom: 2.6rem;
}
.cid-tKlqWasll9 .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tKlqWasll9 .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tKlqWasll9 .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tKlqWasll9 .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tKlqWasll9 .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tKlqWasll9 .row {
    margin: 0rem;
  }
}
.cid-tKlqWasll9 .btn {
  margin-left: 0rem;
}
.cid-tKlqWasll9 P {
  text-align: left;
  color: #ffffff;
}
.cid-tKlqWasll9 .block-left,
.cid-tKlqWasll9 .mbr-section-btn {
  color: #ffffff;
}
.cid-tKlqWb0hll {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKlqWb0hll .media-container-row {
  align-items: center;
}
.cid-tKlqWb0hll .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKlqWb0hll .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKlqWb0hll .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKlqWb0hll .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKlqWb0hll .foot-menu-item {
  transform: 0.2s;
}
.cid-tKlqWb0hll .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKlqWb0hll .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKlqWb0hll .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKlqWb0hll .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKlqWb0hll .foot-menu {
    justify-content: center;
  }
  .cid-tKlqWb0hll .mbr-text {
    text-align: center;
  }
  .cid-tKlqWb0hll .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKlqWb0hll .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKlqWb0hll .link:hover {
  color: #ffffff;
}
.cid-tKlqWb0hll .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKlqWb0hll foot-menu-item P {
  color: #ffffff;
}
.cid-tntfcOkF5K .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tntfcOkF5K .nav-item:focus,
.cid-tntfcOkF5K .nav-link:focus {
  outline: none;
}
.cid-tntfcOkF5K .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-tntfcOkF5K .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tntfcOkF5K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tntfcOkF5K .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-tntfcOkF5K .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tntfcOkF5K .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tntfcOkF5K .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tntfcOkF5K .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tntfcOkF5K .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tntfcOkF5K .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tntfcOkF5K .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tntfcOkF5K .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tntfcOkF5K .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tntfcOkF5K .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tntfcOkF5K .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tntfcOkF5K .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tntfcOkF5K .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tntfcOkF5K .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-tntfcOkF5K .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tntfcOkF5K .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tntfcOkF5K .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tntfcOkF5K .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tntfcOkF5K .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tntfcOkF5K .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tntfcOkF5K .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tntfcOkF5K .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tntfcOkF5K .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-tntfcOkF5K .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tntfcOkF5K .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tntfcOkF5K .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tntfcOkF5K .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tntfcOkF5K .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tntfcOkF5K .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tntfcOkF5K .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tntfcOkF5K .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tntfcOkF5K .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tntfcOkF5K .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tntfcOkF5K .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-tntfcOkF5K .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tntfcOkF5K .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tntfcOkF5K .dropdown-item.active,
.cid-tntfcOkF5K .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tntfcOkF5K .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tntfcOkF5K .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tntfcOkF5K .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tntfcOkF5K .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tntfcOkF5K .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tntfcOkF5K .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tntfcOkF5K .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tntfcOkF5K .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tntfcOkF5K .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tntfcOkF5K .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tntfcOkF5K .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tntfcOkF5K .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tntfcOkF5K ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tntfcOkF5K .navbar-buttons {
  text-align: center;
}
.cid-tntfcOkF5K button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tntfcOkF5K button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tntfcOkF5K button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tntfcOkF5K button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tntfcOkF5K button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tntfcOkF5K button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tntfcOkF5K nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tntfcOkF5K nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tntfcOkF5K nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tntfcOkF5K nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tntfcOkF5K .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tntfcOkF5K a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tntfcOkF5K .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tntfcOkF5K .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-tntfcOkF5K .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tntfcOkF5K .navbar {
    height: 77px;
  }
  .cid-tntfcOkF5K .navbar.opened {
    height: auto;
  }
  .cid-tntfcOkF5K .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tntfcOkF5K a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tntfcOkF5K a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tntfcOkF5K .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tntfcOkF5K .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tntfcP0iL3 {
  padding-top: 195px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/applebee-video-shoot-1280-1280x1215.webp");
}
.cid-tntfcP0iL3 .mbr-overlay {
  background-color: #000000;
  opacity: 0.3;
}
.cid-tntfcP0iL3 input {
  padding: 0rem 1rem !important;
}
.cid-tntfcP0iL3 .title {
  margin-bottom: 1rem;
}
.cid-tntfcP0iL3 textarea {
  min-height: 160px;
}
.cid-tntfcP0iL3 input::-webkit-input-placeholder,
.cid-tntfcP0iL3 textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tntfcP0iL3 input:-moz-placeholder,
.cid-tntfcP0iL3 textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tntfcP0iL3 img {
    width: 100%;
  }
  .cid-tntfcP0iL3 form {
    margin-top: 2rem;
  }
}
.cid-tntfcP0iL3 .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tntfcP0iL3 .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tntfcP0iL3 .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tntfcP0iL3 .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tntfcP0iL3 .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tntfcP0iL3 .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tntfcP0iL3 .form-btn {
  width: 100%;
}
.cid-tntfcP0iL3 .link-btn {
  width: 100%;
}
.cid-tntfcP0iL3 h5 {
  margin-bottom: 0.2rem;
}
.cid-tntfcP0iL3 .mbr-form .btn {
  margin: 0;
}
.cid-tntfcP0iL3 .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tntfcP0iL3 .block-left {
  margin-bottom: 2.6rem;
}
.cid-tntfcP0iL3 .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tntfcP0iL3 .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tntfcP0iL3 .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tntfcP0iL3 .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tntfcP0iL3 .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tntfcP0iL3 .row {
    margin: 0rem;
  }
}
.cid-tntfcP0iL3 .btn {
  margin-left: 0rem;
}
.cid-tntfcP0iL3 P {
  text-align: left;
}
.cid-tntfMuGwUL {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tntfMuGwUL h1 {
  margin-bottom: 0.2rem;
}
.cid-tntfMuGwUL .container-fluid {
  padding: 0;
}
.cid-tntfMuGwUL img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-tntfMuGwUL .mbr-figure {
  height: 100%;
}
.cid-tntfMuGwUL .col-lg-6 {
  padding: 0;
}
.cid-tntfMuGwUL .mbr-text {
  color: #747474;
}
.cid-tntfMuGwUL hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-tntfMuGwUL .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-tntfMuGwUL .mbr-section-subtitle-1 {
  color: #ffb81c;
}
.cid-tntfMuGwUL .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-tntfMuGwUL .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tntfMuGwUL .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tntfMuGwUL .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-tntfMuGwUL .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-tntfMuGwUL .left-block {
    margin-top: 4.5rem;
  }
}
.cid-tntfMuGwUL .btn {
  color: #101010 !important;
}
.cid-tntfMuGwUL .btn:hover {
  color: #ffffff !important;
}
.cid-tntfMuGwUL .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tntfMuGwUL .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tntfcTlmsV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/office-3.webp");
}
.cid-tntfcTlmsV .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tntfcTlmsV .align-center {
    text-align: center;
  }
}
.cid-tntfcTEEcg {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tntfcTEEcg h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tntfcTEEcg .container {
    position: relative;
  }
  .cid-tntfcTEEcg .row {
    margin: 0;
  }
  .cid-tntfcTEEcg h2 {
    margin: 0;
  }
}
.cid-tntfcTEEcg .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-tntfcTEEcg .mbr-section-subtitle {
  color: #b01cff;
}
.cid-tntfcTEEcg .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tntfcTEEcg .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tntfcTYuA7 {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #101010;
}
.cid-tntfcTYuA7 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tntfcTYuA7 textarea {
  min-height: 150px;
}
.cid-tntfcTYuA7 input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tntfcTYuA7 textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tntfcTYuA7 .form-control,
.cid-tntfcTYuA7 .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tntfcTYuA7 .form-control input::-webkit-input-placeholder,
.cid-tntfcTYuA7 .field-input input::-webkit-input-placeholder,
.cid-tntfcTYuA7 .form-control textarea::-webkit-input-placeholder,
.cid-tntfcTYuA7 .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tntfcTYuA7 .form-control input:-moz-placeholder,
.cid-tntfcTYuA7 .field-input input:-moz-placeholder,
.cid-tntfcTYuA7 .form-control textarea:-moz-placeholder,
.cid-tntfcTYuA7 .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tntfcTYuA7 .jq-number__spin:hover,
.cid-tntfcTYuA7 .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tntfcTYuA7 .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tntfcTYuA7 .jq-selectbox li,
.cid-tntfcTYuA7 .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tntfcTYuA7 .jq-selectbox li:hover,
.cid-tntfcTYuA7 .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tntfcTYuA7 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tntfcTYuA7 .jq-number__spin.minus:hover:after,
.cid-tntfcTYuA7 .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tntfcTYuA7 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tntfcTYuA7 .jq-number__spin.minus:after,
.cid-tntfcTYuA7 .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tntfcTYuA7 .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tntfcTYuA7 .social-list {
    margin-bottom: 3rem;
  }
  .cid-tntfcTYuA7 .email-input {
    margin-top: 2rem;
  }
}
.cid-tntfcTYuA7 .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tntfcTYuA7 .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tntfcTYuA7 .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tntfcTYuA7 .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tntfcTYuA7 .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tntfcTYuA7 .social-list {
  display: flex;
}
.cid-tntfcTYuA7 .social-list a {
  transition: .3s;
}
.cid-tntfcTYuA7 .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tntfcTYuA7 .row {
  align-items: center;
}
.cid-tntfcTYuA7 .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tntfcTYuA7 .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tntfcTYuA7 .form-btn {
  margin-top: 2.5rem;
}
.cid-tntfcTYuA7 input::-webkit-input-placeholder,
.cid-tntfcTYuA7 textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tntfcTYuA7 input:-moz-placeholder,
.cid-tntfcTYuA7 textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tntfcTYuA7 .media-content {
    padding-right: 3rem;
  }
  .cid-tntfcTYuA7 .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tntfcTYuA7 .row {
    padding: 0 1rem;
  }
}
.cid-tntfcTYuA7 .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tntfcTYuA7 .form-btn {
    width: 100%;
  }
  .cid-tntfcTYuA7 .btn {
    width: 100%;
  }
}
.cid-tntfcTYuA7 .mbr-text,
.cid-tntfcTYuA7 .mbr-section-btn {
  color: #ffffff;
}
.cid-tKhkWmMi6p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKhkWmMi6p .media-container-row {
  align-items: center;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKhkWmMi6p .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKhkWmMi6p .foot-menu-item {
  transform: 0.2s;
}
.cid-tKhkWmMi6p .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKhkWmMi6p .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKhkWmMi6p .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKhkWmMi6p .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: center;
  }
  .cid-tKhkWmMi6p .mbr-text {
    text-align: center;
  }
  .cid-tKhkWmMi6p .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKhkWmMi6p .link:hover {
  color: #ffffff;
}
.cid-tKhkWmMi6p .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKhkWmMi6p foot-menu-item P {
  color: #ffffff;
}
.cid-ty0jFqsz16 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-ty0jFqsz16 .nav-item:focus,
.cid-ty0jFqsz16 .nav-link:focus {
  outline: none;
}
.cid-ty0jFqsz16 .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-ty0jFqsz16 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ty0jFqsz16 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ty0jFqsz16 .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-ty0jFqsz16 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ty0jFqsz16 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ty0jFqsz16 .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ty0jFqsz16 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-ty0jFqsz16 .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-ty0jFqsz16 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ty0jFqsz16 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ty0jFqsz16 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ty0jFqsz16 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ty0jFqsz16 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-ty0jFqsz16 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ty0jFqsz16 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ty0jFqsz16 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ty0jFqsz16 .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-ty0jFqsz16 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ty0jFqsz16 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ty0jFqsz16 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ty0jFqsz16 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ty0jFqsz16 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ty0jFqsz16 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ty0jFqsz16 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ty0jFqsz16 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ty0jFqsz16 .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-ty0jFqsz16 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ty0jFqsz16 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ty0jFqsz16 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ty0jFqsz16 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ty0jFqsz16 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ty0jFqsz16 .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ty0jFqsz16 .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ty0jFqsz16 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ty0jFqsz16 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ty0jFqsz16 .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ty0jFqsz16 .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-ty0jFqsz16 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ty0jFqsz16 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ty0jFqsz16 .dropdown-item.active,
.cid-ty0jFqsz16 .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ty0jFqsz16 .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ty0jFqsz16 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ty0jFqsz16 .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ty0jFqsz16 .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ty0jFqsz16 .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ty0jFqsz16 .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ty0jFqsz16 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ty0jFqsz16 .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ty0jFqsz16 .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ty0jFqsz16 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-ty0jFqsz16 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ty0jFqsz16 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ty0jFqsz16 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ty0jFqsz16 .navbar-buttons {
  text-align: center;
}
.cid-ty0jFqsz16 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ty0jFqsz16 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-ty0jFqsz16 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ty0jFqsz16 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ty0jFqsz16 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ty0jFqsz16 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ty0jFqsz16 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ty0jFqsz16 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ty0jFqsz16 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ty0jFqsz16 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ty0jFqsz16 .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ty0jFqsz16 a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-ty0jFqsz16 .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ty0jFqsz16 .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-ty0jFqsz16 .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ty0jFqsz16 .navbar {
    height: 77px;
  }
  .cid-ty0jFqsz16 .navbar.opened {
    height: auto;
  }
  .cid-ty0jFqsz16 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ty0jFqsz16 a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-ty0jFqsz16 a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-ty0jFqsz16 .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ty0jFqsz16 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-ty0jFqRDvf {
  padding-top: 195px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/adobestock-511517396-marketing-campaign-planning-1824x1216.webp");
}
.cid-ty0jFqRDvf .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-ty0jFqRDvf input {
  padding: 0rem 1rem !important;
}
.cid-ty0jFqRDvf .title {
  margin-bottom: 1rem;
}
.cid-ty0jFqRDvf textarea {
  min-height: 160px;
}
.cid-ty0jFqRDvf input::-webkit-input-placeholder,
.cid-ty0jFqRDvf textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-ty0jFqRDvf input:-moz-placeholder,
.cid-ty0jFqRDvf textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-ty0jFqRDvf img {
    width: 100%;
  }
  .cid-ty0jFqRDvf form {
    margin-top: 2rem;
  }
}
.cid-ty0jFqRDvf .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-ty0jFqRDvf .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-ty0jFqRDvf .mbr-form {
    padding-left: 2rem;
  }
}
.cid-ty0jFqRDvf .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-ty0jFqRDvf .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-ty0jFqRDvf .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-ty0jFqRDvf .form-btn {
  width: 100%;
}
.cid-ty0jFqRDvf .link-btn {
  width: 100%;
}
.cid-ty0jFqRDvf h5 {
  margin-bottom: 0.2rem;
}
.cid-ty0jFqRDvf .mbr-form .btn {
  margin: 0;
}
.cid-ty0jFqRDvf .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-ty0jFqRDvf .block-left {
  margin-bottom: 2.6rem;
}
.cid-ty0jFqRDvf .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-ty0jFqRDvf .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-ty0jFqRDvf .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-ty0jFqRDvf .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-ty0jFqRDvf .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-ty0jFqRDvf .row {
    margin: 0rem;
  }
}
.cid-ty0jFqRDvf .btn {
  margin-left: 0rem;
}
.cid-ty0jFqRDvf P {
  text-align: left;
}
.cid-ty1aCLIDVp {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-ty1aCLIDVp h1 {
  margin-bottom: 0.2rem;
}
.cid-ty1aCLIDVp .container-fluid {
  padding: 0;
}
.cid-ty1aCLIDVp img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-ty1aCLIDVp .mbr-figure {
  height: 100%;
}
.cid-ty1aCLIDVp .col-lg-6 {
  padding: 0;
}
.cid-ty1aCLIDVp .mbr-text {
  color: #747474;
}
.cid-ty1aCLIDVp hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-ty1aCLIDVp .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-ty1aCLIDVp .mbr-section-subtitle-1 {
  color: #b01cff;
}
.cid-ty1aCLIDVp .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-ty1aCLIDVp .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-ty1aCLIDVp .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-ty1aCLIDVp .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-ty1aCLIDVp .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-ty1aCLIDVp .left-block {
    margin-top: 4.5rem;
  }
}
.cid-ty1aCLIDVp .btn {
  color: #101010 !important;
}
.cid-ty1aCLIDVp .btn:hover {
  color: #ffffff !important;
}
.cid-ty1aCLIDVp .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-ty1aCLIDVp .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-ty0jFrWYeX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101010;
}
@media (max-width: 992px) {
  .cid-ty0jFrWYeX {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-ty0jFrWYeX .box {
    margin-top: 2.5rem;
    height: 300px;
  }
  .cid-ty0jFrWYeX .video-block {
    padding: 0rem;
  }
  .cid-ty0jFrWYeX .row {
    padding: 0rem;
  }
  .cid-ty0jFrWYeX .left-block {
    padding: 2rem 1rem;
  }
}
.cid-ty0jFrWYeX .btn {
  margin-left: 0rem;
}
.cid-ty0jFrWYeX .box {
  background-image: url("../../../assets/images/applebee-marketing-5-2000x1125.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ty0jFrWYeX .icon-wrap {
  border: 3px solid #ffb81c !important;
  background-color: #ffffff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.cid-ty0jFrWYeX .icon-wrap:hover span {
  color: #ffffff;
}
.cid-ty0jFrWYeX .icon-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0.67, 0, 1.01);
}
.cid-ty0jFrWYeX .icon-wrap:hover::before {
  background-color: #b539cf;
  transform: scaleY(1);
}
.cid-ty0jFrWYeX .mbr-media span {
  font-size: 16px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffb81c;
}
.cid-ty0jFrWYeX .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-ty0jFrWYeX .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-ty0jFrWYeX .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-ty0jFrWYeX .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-ty0jFrWYeX a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-ty0jFrWYeX a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-ty0jFrWYeX {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.cid-ty0jFrWYeX .mbr-text {
  margin-bottom: 2rem;
}
.cid-ty0jFrWYeX .mbr-section-title {
  margin-bottom: 2rem;
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-ty0jFrWYeX .left-block {
    padding: 5rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ty0jFrWYeX .video-block {
    padding-right: 0rem;
  }
  .cid-ty0jFrWYeX .row {
    padding-right: 0rem;
  }
  .cid-ty0jFrWYeX .left-block {
    padding: 7.5rem 5.5rem 7.5rem 5rem;
  }
  .cid-ty0jFrWYeX .box {
    height: 100%;
  }
}
.cid-ty0jFrWYeX .mbr-text,
.cid-ty0jFrWYeX .mbr-section-btn {
  text-align: left;
}
.cid-ty1cF1A1jj {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-ty1cF1A1jj h1 {
  margin-bottom: 0.2rem;
}
.cid-ty1cF1A1jj .container-fluid {
  padding: 0;
}
.cid-ty1cF1A1jj img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-ty1cF1A1jj .mbr-figure {
  height: 100%;
}
.cid-ty1cF1A1jj .col-lg-6 {
  padding: 0;
}
.cid-ty1cF1A1jj .mbr-text {
  color: #747474;
}
.cid-ty1cF1A1jj hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-ty1cF1A1jj .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-ty1cF1A1jj .mbr-section-subtitle-1 {
  color: #b01cff;
}
.cid-ty1cF1A1jj .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-ty1cF1A1jj .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-ty1cF1A1jj .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-ty1cF1A1jj .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-ty1cF1A1jj .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-ty1cF1A1jj .left-block {
    margin-top: 4.5rem;
  }
}
.cid-ty1cF1A1jj .btn {
  color: #101010 !important;
}
.cid-ty1cF1A1jj .btn:hover {
  color: #ffffff !important;
}
.cid-ty1cF1A1jj .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-ty1cF1A1jj .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-ty0jFsX34p {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/adobestock-260438796-honeycomb-1344x867.webp");
}
.cid-ty0jFsX34p .carousel {
  z-index: 2;
  position: relative;
}
.cid-ty0jFsX34p .user {
  padding: 0!important;
}
.cid-ty0jFsX34p .user_image {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.8rem;
  border: 1px solid lightgray;
  position: relative;
}
.cid-ty0jFsX34p .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-ty0jFsX34p .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-ty0jFsX34p .carousel-item.active,
.cid-ty0jFsX34p .carousel-item-next,
.cid-ty0jFsX34p .carousel-item-prev {
  display: flex;
}
.cid-ty0jFsX34p .user_name {
  margin: 0;
  color: #ffffff;
}
.cid-ty0jFsX34p .carousel-controls a {
  font-size: 2rem;
}
.cid-ty0jFsX34p .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
  opacity: 0.5;
}
.cid-ty0jFsX34p .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-ty0jFsX34p ol {
  margin-bottom: 0;
  bottom: -2.2rem;
}
.cid-ty0jFsX34p .carousel-indicators li {
  width: 10px;
  height: 10px;
  margin: auto 7px;
  border: none;
  background: #ffffff;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
  position: relative;
}
.cid-ty0jFsX34p .carousel-indicators li:hover {
  opacity: 1;
}
.cid-ty0jFsX34p .carousel-indicators .active {
  opacity: 1;
  width: 12px;
  height: 12px;
}
.cid-ty0jFsX34p .user_status {
  color: #767676;
}
.cid-ty0jFsX34p .title {
  color: #ffffff;
  margin-bottom: 3.8rem;
}
.cid-ty0jFsX34p .mbr-text {
  margin-bottom: 1.7rem;
  text-align: left;
  color: #101010;
}
.cid-ty0jFsX34p .title,
.cid-ty0jFsX34p .line-align {
  color: #101010;
}
.cid-ty0jFtmFND {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ty0jFtmFND h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-ty0jFtmFND .container {
    position: relative;
  }
  .cid-ty0jFtmFND .row {
    margin: 0;
  }
  .cid-ty0jFtmFND h2 {
    margin: 0;
  }
}
.cid-ty0jFtmFND .mbr-section-subtitle {
  color: #e9204f;
}
.cid-ty0jFtmFND .mbr-text {
  margin-top: 1.4rem;
  text-align: left;
}
.cid-ty0jFuad4p {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/office-3.webp");
}
.cid-ty0jFuad4p .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-ty0jFuad4p .align-center {
    text-align: center;
  }
}
.cid-ty0jFuqTA4 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ty0jFuqTA4 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-ty0jFuqTA4 .container {
    position: relative;
  }
  .cid-ty0jFuqTA4 .row {
    margin: 0;
  }
  .cid-ty0jFuqTA4 h2 {
    margin: 0;
  }
}
.cid-ty0jFuqTA4 .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-ty0jFuqTA4 .mbr-section-subtitle {
  color: #b01cff;
}
.cid-ty0jFuqTA4 .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-ty0jFuqTA4 .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-ty0jFuFyV7 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #101010;
}
.cid-ty0jFuFyV7 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ty0jFuFyV7 textarea {
  min-height: 150px;
}
.cid-ty0jFuFyV7 input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ty0jFuFyV7 textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ty0jFuFyV7 .form-control,
.cid-ty0jFuFyV7 .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-ty0jFuFyV7 .form-control input::-webkit-input-placeholder,
.cid-ty0jFuFyV7 .field-input input::-webkit-input-placeholder,
.cid-ty0jFuFyV7 .form-control textarea::-webkit-input-placeholder,
.cid-ty0jFuFyV7 .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-ty0jFuFyV7 .form-control input:-moz-placeholder,
.cid-ty0jFuFyV7 .field-input input:-moz-placeholder,
.cid-ty0jFuFyV7 .form-control textarea:-moz-placeholder,
.cid-ty0jFuFyV7 .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-ty0jFuFyV7 .jq-number__spin:hover,
.cid-ty0jFuFyV7 .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ty0jFuFyV7 .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ty0jFuFyV7 .jq-selectbox li,
.cid-ty0jFuFyV7 .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ty0jFuFyV7 .jq-selectbox li:hover,
.cid-ty0jFuFyV7 .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ty0jFuFyV7 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ty0jFuFyV7 .jq-number__spin.minus:hover:after,
.cid-ty0jFuFyV7 .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ty0jFuFyV7 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ty0jFuFyV7 .jq-number__spin.minus:after,
.cid-ty0jFuFyV7 .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ty0jFuFyV7 .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ty0jFuFyV7 .social-list {
    margin-bottom: 3rem;
  }
  .cid-ty0jFuFyV7 .email-input {
    margin-top: 2rem;
  }
}
.cid-ty0jFuFyV7 .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-ty0jFuFyV7 .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ty0jFuFyV7 .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ty0jFuFyV7 .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-ty0jFuFyV7 .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-ty0jFuFyV7 .social-list {
  display: flex;
}
.cid-ty0jFuFyV7 .social-list a {
  transition: .3s;
}
.cid-ty0jFuFyV7 .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ty0jFuFyV7 .row {
  align-items: center;
}
.cid-ty0jFuFyV7 .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ty0jFuFyV7 .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ty0jFuFyV7 .form-btn {
  margin-top: 2.5rem;
}
.cid-ty0jFuFyV7 input::-webkit-input-placeholder,
.cid-ty0jFuFyV7 textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-ty0jFuFyV7 input:-moz-placeholder,
.cid-ty0jFuFyV7 textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-ty0jFuFyV7 .media-content {
    padding-right: 3rem;
  }
  .cid-ty0jFuFyV7 .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ty0jFuFyV7 .row {
    padding: 0 1rem;
  }
}
.cid-ty0jFuFyV7 .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ty0jFuFyV7 .form-btn {
    width: 100%;
  }
  .cid-ty0jFuFyV7 .btn {
    width: 100%;
  }
}
.cid-ty0jFuFyV7 .mbr-text,
.cid-ty0jFuFyV7 .mbr-section-btn {
  color: #ffffff;
}
.cid-tKhkWmMi6p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tKhkWmMi6p .media-container-row {
  align-items: center;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tKhkWmMi6p .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tKhkWmMi6p .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tKhkWmMi6p .foot-menu-item {
  transform: 0.2s;
}
.cid-tKhkWmMi6p .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tKhkWmMi6p .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tKhkWmMi6p .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tKhkWmMi6p .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: center;
  }
  .cid-tKhkWmMi6p .mbr-text {
    text-align: center;
  }
  .cid-tKhkWmMi6p .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKhkWmMi6p .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tKhkWmMi6p .link:hover {
  color: #ffffff;
}
.cid-tKhkWmMi6p .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tKhkWmMi6p foot-menu-item P {
  color: #ffffff;
}
.cid-tLSN8YWsyY .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tLSN8YWsyY .nav-item:focus,
.cid-tLSN8YWsyY .nav-link:focus {
  outline: none;
}
.cid-tLSN8YWsyY .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-tLSN8YWsyY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLSN8YWsyY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tLSN8YWsyY .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-tLSN8YWsyY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLSN8YWsyY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLSN8YWsyY .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tLSN8YWsyY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tLSN8YWsyY .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tLSN8YWsyY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLSN8YWsyY .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLSN8YWsyY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLSN8YWsyY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLSN8YWsyY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tLSN8YWsyY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLSN8YWsyY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLSN8YWsyY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLSN8YWsyY .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-tLSN8YWsyY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLSN8YWsyY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLSN8YWsyY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLSN8YWsyY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLSN8YWsyY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLSN8YWsyY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLSN8YWsyY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLSN8YWsyY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLSN8YWsyY .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-tLSN8YWsyY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLSN8YWsyY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLSN8YWsyY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLSN8YWsyY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLSN8YWsyY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLSN8YWsyY .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLSN8YWsyY .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tLSN8YWsyY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLSN8YWsyY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLSN8YWsyY .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tLSN8YWsyY .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-tLSN8YWsyY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLSN8YWsyY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLSN8YWsyY .dropdown-item.active,
.cid-tLSN8YWsyY .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tLSN8YWsyY .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tLSN8YWsyY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tLSN8YWsyY .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tLSN8YWsyY .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tLSN8YWsyY .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tLSN8YWsyY .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tLSN8YWsyY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tLSN8YWsyY .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tLSN8YWsyY .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tLSN8YWsyY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tLSN8YWsyY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLSN8YWsyY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLSN8YWsyY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLSN8YWsyY .navbar-buttons {
  text-align: center;
}
.cid-tLSN8YWsyY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLSN8YWsyY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tLSN8YWsyY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLSN8YWsyY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLSN8YWsyY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLSN8YWsyY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLSN8YWsyY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLSN8YWsyY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLSN8YWsyY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLSN8YWsyY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLSN8YWsyY .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tLSN8YWsyY a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tLSN8YWsyY .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tLSN8YWsyY .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-tLSN8YWsyY .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLSN8YWsyY .navbar {
    height: 77px;
  }
  .cid-tLSN8YWsyY .navbar.opened {
    height: auto;
  }
  .cid-tLSN8YWsyY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLSN8YWsyY a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tLSN8YWsyY a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tLSN8YWsyY .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tLSN8YWsyY .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tLSN8ZiQqO {
  padding-top: 195px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/adobestock-332231026-mono-hands-typing-on-laptop-856x1028.webp");
}
.cid-tLSN8ZiQqO .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-tLSN8ZiQqO input {
  padding: 0rem 1rem !important;
}
.cid-tLSN8ZiQqO .title {
  margin-bottom: 1rem;
}
.cid-tLSN8ZiQqO textarea {
  min-height: 160px;
}
.cid-tLSN8ZiQqO input::-webkit-input-placeholder,
.cid-tLSN8ZiQqO textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tLSN8ZiQqO input:-moz-placeholder,
.cid-tLSN8ZiQqO textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tLSN8ZiQqO img {
    width: 100%;
  }
  .cid-tLSN8ZiQqO form {
    margin-top: 2rem;
  }
}
.cid-tLSN8ZiQqO .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tLSN8ZiQqO .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tLSN8ZiQqO .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tLSN8ZiQqO .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tLSN8ZiQqO .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tLSN8ZiQqO .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tLSN8ZiQqO .form-btn {
  width: 100%;
}
.cid-tLSN8ZiQqO .link-btn {
  width: 100%;
}
.cid-tLSN8ZiQqO h5 {
  margin-bottom: 0.2rem;
}
.cid-tLSN8ZiQqO .mbr-form .btn {
  margin: 0;
}
.cid-tLSN8ZiQqO .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tLSN8ZiQqO .block-left {
  margin-bottom: 2.6rem;
}
.cid-tLSN8ZiQqO .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tLSN8ZiQqO .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tLSN8ZiQqO .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tLSN8ZiQqO .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tLSN8ZiQqO .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tLSN8ZiQqO .row {
    margin: 0rem;
  }
}
.cid-tLSN8ZiQqO .btn {
  margin-left: 0rem;
}
.cid-tLSN8ZiQqO P {
  text-align: left;
}
.cid-tLSN8ZiQqO .block-left,
.cid-tLSN8ZiQqO .mbr-section-btn {
  color: #ffffff;
}
.cid-tLSN8Zz6S8 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #101010;
}
.cid-tLSN8Zz6S8 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tLSN8Zz6S8 textarea {
  min-height: 150px;
}
.cid-tLSN8Zz6S8 input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tLSN8Zz6S8 textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tLSN8Zz6S8 .form-control,
.cid-tLSN8Zz6S8 .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tLSN8Zz6S8 .form-control input::-webkit-input-placeholder,
.cid-tLSN8Zz6S8 .field-input input::-webkit-input-placeholder,
.cid-tLSN8Zz6S8 .form-control textarea::-webkit-input-placeholder,
.cid-tLSN8Zz6S8 .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tLSN8Zz6S8 .form-control input:-moz-placeholder,
.cid-tLSN8Zz6S8 .field-input input:-moz-placeholder,
.cid-tLSN8Zz6S8 .form-control textarea:-moz-placeholder,
.cid-tLSN8Zz6S8 .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tLSN8Zz6S8 .jq-number__spin:hover,
.cid-tLSN8Zz6S8 .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tLSN8Zz6S8 .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tLSN8Zz6S8 .jq-selectbox li,
.cid-tLSN8Zz6S8 .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tLSN8Zz6S8 .jq-selectbox li:hover,
.cid-tLSN8Zz6S8 .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tLSN8Zz6S8 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tLSN8Zz6S8 .jq-number__spin.minus:hover:after,
.cid-tLSN8Zz6S8 .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tLSN8Zz6S8 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tLSN8Zz6S8 .jq-number__spin.minus:after,
.cid-tLSN8Zz6S8 .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tLSN8Zz6S8 .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tLSN8Zz6S8 .social-list {
    margin-bottom: 3rem;
  }
  .cid-tLSN8Zz6S8 .email-input {
    margin-top: 2rem;
  }
}
.cid-tLSN8Zz6S8 .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tLSN8Zz6S8 .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tLSN8Zz6S8 .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tLSN8Zz6S8 .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tLSN8Zz6S8 .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tLSN8Zz6S8 .social-list {
  display: flex;
}
.cid-tLSN8Zz6S8 .social-list a {
  transition: .3s;
}
.cid-tLSN8Zz6S8 .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tLSN8Zz6S8 .row {
  align-items: center;
}
.cid-tLSN8Zz6S8 .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tLSN8Zz6S8 .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tLSN8Zz6S8 .form-btn {
  margin-top: 2.5rem;
}
.cid-tLSN8Zz6S8 input::-webkit-input-placeholder,
.cid-tLSN8Zz6S8 textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tLSN8Zz6S8 input:-moz-placeholder,
.cid-tLSN8Zz6S8 textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tLSN8Zz6S8 .media-content {
    padding-right: 3rem;
  }
  .cid-tLSN8Zz6S8 .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tLSN8Zz6S8 .row {
    padding: 0 1rem;
  }
}
.cid-tLSN8Zz6S8 .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tLSN8Zz6S8 .form-btn {
    width: 100%;
  }
  .cid-tLSN8Zz6S8 .btn {
    width: 100%;
  }
}
.cid-tLSN8Zz6S8 .mbr-text,
.cid-tLSN8Zz6S8 .mbr-section-btn {
  color: #ffffff;
}
.cid-tLSN8ZSkmi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tLSN8ZSkmi .media-container-row {
  align-items: center;
}
.cid-tLSN8ZSkmi .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLSN8ZSkmi .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLSN8ZSkmi .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLSN8ZSkmi .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tLSN8ZSkmi .foot-menu-item {
  transform: 0.2s;
}
.cid-tLSN8ZSkmi .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tLSN8ZSkmi .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tLSN8ZSkmi .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tLSN8ZSkmi .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tLSN8ZSkmi .foot-menu {
    justify-content: center;
  }
  .cid-tLSN8ZSkmi .mbr-text {
    text-align: center;
  }
  .cid-tLSN8ZSkmi .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tLSN8ZSkmi .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tLSN8ZSkmi .link:hover {
  color: #ffffff;
}
.cid-tLSN8ZSkmi .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tLSN8ZSkmi foot-menu-item P {
  color: #ffffff;
}
.cid-tLTFHzXGtn .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tLTFHzXGtn .nav-item:focus,
.cid-tLTFHzXGtn .nav-link:focus {
  outline: none;
}
.cid-tLTFHzXGtn .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-tLTFHzXGtn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLTFHzXGtn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tLTFHzXGtn .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-tLTFHzXGtn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLTFHzXGtn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLTFHzXGtn .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tLTFHzXGtn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tLTFHzXGtn .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tLTFHzXGtn .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tLTFHzXGtn .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLTFHzXGtn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLTFHzXGtn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLTFHzXGtn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tLTFHzXGtn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLTFHzXGtn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLTFHzXGtn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLTFHzXGtn .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-tLTFHzXGtn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLTFHzXGtn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tLTFHzXGtn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLTFHzXGtn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLTFHzXGtn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLTFHzXGtn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLTFHzXGtn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLTFHzXGtn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLTFHzXGtn .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-tLTFHzXGtn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLTFHzXGtn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLTFHzXGtn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLTFHzXGtn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLTFHzXGtn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLTFHzXGtn .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLTFHzXGtn .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tLTFHzXGtn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLTFHzXGtn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLTFHzXGtn .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tLTFHzXGtn .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-tLTFHzXGtn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLTFHzXGtn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLTFHzXGtn .dropdown-item.active,
.cid-tLTFHzXGtn .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tLTFHzXGtn .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tLTFHzXGtn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tLTFHzXGtn .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tLTFHzXGtn .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tLTFHzXGtn .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tLTFHzXGtn .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tLTFHzXGtn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tLTFHzXGtn .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tLTFHzXGtn .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tLTFHzXGtn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tLTFHzXGtn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLTFHzXGtn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLTFHzXGtn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLTFHzXGtn .navbar-buttons {
  text-align: center;
}
.cid-tLTFHzXGtn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLTFHzXGtn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tLTFHzXGtn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLTFHzXGtn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLTFHzXGtn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLTFHzXGtn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLTFHzXGtn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLTFHzXGtn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLTFHzXGtn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLTFHzXGtn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLTFHzXGtn .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tLTFHzXGtn a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tLTFHzXGtn .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tLTFHzXGtn .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-tLTFHzXGtn .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLTFHzXGtn .navbar {
    height: 77px;
  }
  .cid-tLTFHzXGtn .navbar.opened {
    height: auto;
  }
  .cid-tLTFHzXGtn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLTFHzXGtn a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tLTFHzXGtn a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tLTFHzXGtn .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tLTFHzXGtn .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tLTFHAhhhk {
  padding-top: 195px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/adobestock-332231026-mono-hands-typing-on-laptop-856x1028.webp");
}
.cid-tLTFHAhhhk .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-tLTFHAhhhk input {
  padding: 0rem 1rem !important;
}
.cid-tLTFHAhhhk .title {
  margin-bottom: 1rem;
}
.cid-tLTFHAhhhk textarea {
  min-height: 160px;
}
.cid-tLTFHAhhhk input::-webkit-input-placeholder,
.cid-tLTFHAhhhk textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tLTFHAhhhk input:-moz-placeholder,
.cid-tLTFHAhhhk textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tLTFHAhhhk img {
    width: 100%;
  }
  .cid-tLTFHAhhhk form {
    margin-top: 2rem;
  }
}
.cid-tLTFHAhhhk .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tLTFHAhhhk .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tLTFHAhhhk .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tLTFHAhhhk .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tLTFHAhhhk .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tLTFHAhhhk .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tLTFHAhhhk .form-btn {
  width: 100%;
}
.cid-tLTFHAhhhk .link-btn {
  width: 100%;
}
.cid-tLTFHAhhhk h5 {
  margin-bottom: 0.2rem;
}
.cid-tLTFHAhhhk .mbr-form .btn {
  margin: 0;
}
.cid-tLTFHAhhhk .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tLTFHAhhhk .block-left {
  margin-bottom: 2.6rem;
}
.cid-tLTFHAhhhk .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tLTFHAhhhk .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tLTFHAhhhk .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tLTFHAhhhk .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tLTFHAhhhk .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tLTFHAhhhk .row {
    margin: 0rem;
  }
}
.cid-tLTFHAhhhk .btn {
  margin-left: 0rem;
}
.cid-tLTFHAhhhk P {
  text-align: left;
}
.cid-tLTFHAhhhk .block-left,
.cid-tLTFHAhhhk .mbr-section-btn {
  color: #ffffff;
}
.cid-tLTFHAAYCM {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #101010;
}
.cid-tLTFHAAYCM .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tLTFHAAYCM textarea {
  min-height: 150px;
}
.cid-tLTFHAAYCM input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tLTFHAAYCM textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tLTFHAAYCM .form-control,
.cid-tLTFHAAYCM .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tLTFHAAYCM .form-control input::-webkit-input-placeholder,
.cid-tLTFHAAYCM .field-input input::-webkit-input-placeholder,
.cid-tLTFHAAYCM .form-control textarea::-webkit-input-placeholder,
.cid-tLTFHAAYCM .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tLTFHAAYCM .form-control input:-moz-placeholder,
.cid-tLTFHAAYCM .field-input input:-moz-placeholder,
.cid-tLTFHAAYCM .form-control textarea:-moz-placeholder,
.cid-tLTFHAAYCM .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tLTFHAAYCM .jq-number__spin:hover,
.cid-tLTFHAAYCM .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tLTFHAAYCM .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tLTFHAAYCM .jq-selectbox li,
.cid-tLTFHAAYCM .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tLTFHAAYCM .jq-selectbox li:hover,
.cid-tLTFHAAYCM .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tLTFHAAYCM .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tLTFHAAYCM .jq-number__spin.minus:hover:after,
.cid-tLTFHAAYCM .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tLTFHAAYCM .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tLTFHAAYCM .jq-number__spin.minus:after,
.cid-tLTFHAAYCM .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tLTFHAAYCM .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tLTFHAAYCM .social-list {
    margin-bottom: 3rem;
  }
  .cid-tLTFHAAYCM .email-input {
    margin-top: 2rem;
  }
}
.cid-tLTFHAAYCM .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tLTFHAAYCM .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tLTFHAAYCM .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tLTFHAAYCM .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tLTFHAAYCM .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tLTFHAAYCM .social-list {
  display: flex;
}
.cid-tLTFHAAYCM .social-list a {
  transition: .3s;
}
.cid-tLTFHAAYCM .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tLTFHAAYCM .row {
  align-items: center;
}
.cid-tLTFHAAYCM .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tLTFHAAYCM .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tLTFHAAYCM .form-btn {
  margin-top: 2.5rem;
}
.cid-tLTFHAAYCM input::-webkit-input-placeholder,
.cid-tLTFHAAYCM textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tLTFHAAYCM input:-moz-placeholder,
.cid-tLTFHAAYCM textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tLTFHAAYCM .media-content {
    padding-right: 3rem;
  }
  .cid-tLTFHAAYCM .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tLTFHAAYCM .row {
    padding: 0 1rem;
  }
}
.cid-tLTFHAAYCM .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tLTFHAAYCM .form-btn {
    width: 100%;
  }
  .cid-tLTFHAAYCM .btn {
    width: 100%;
  }
}
.cid-tLTFHAAYCM .mbr-text,
.cid-tLTFHAAYCM .mbr-section-btn {
  color: #ffffff;
}
.cid-tLTFHASGpa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tLTFHASGpa .media-container-row {
  align-items: center;
}
.cid-tLTFHASGpa .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLTFHASGpa .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLTFHASGpa .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLTFHASGpa .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tLTFHASGpa .foot-menu-item {
  transform: 0.2s;
}
.cid-tLTFHASGpa .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tLTFHASGpa .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tLTFHASGpa .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tLTFHASGpa .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tLTFHASGpa .foot-menu {
    justify-content: center;
  }
  .cid-tLTFHASGpa .mbr-text {
    text-align: center;
  }
  .cid-tLTFHASGpa .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tLTFHASGpa .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tLTFHASGpa .link:hover {
  color: #ffffff;
}
.cid-tLTFHASGpa .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tLTFHASGpa foot-menu-item P {
  color: #ffffff;
}
.cid-tM9gkED3Yg .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tM9gkED3Yg .nav-item:focus,
.cid-tM9gkED3Yg .nav-link:focus {
  outline: none;
}
.cid-tM9gkED3Yg .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-tM9gkED3Yg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tM9gkED3Yg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tM9gkED3Yg .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-tM9gkED3Yg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tM9gkED3Yg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tM9gkED3Yg .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tM9gkED3Yg .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #101010;
  background: none;
}
.cid-tM9gkED3Yg .navbar.opened {
  transition: all .3s;
  background: #101010 !important;
}
.cid-tM9gkED3Yg .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tM9gkED3Yg .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tM9gkED3Yg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tM9gkED3Yg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tM9gkED3Yg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tM9gkED3Yg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tM9gkED3Yg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tM9gkED3Yg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tM9gkED3Yg .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-tM9gkED3Yg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tM9gkED3Yg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tM9gkED3Yg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tM9gkED3Yg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tM9gkED3Yg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tM9gkED3Yg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tM9gkED3Yg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tM9gkED3Yg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tM9gkED3Yg .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-tM9gkED3Yg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tM9gkED3Yg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tM9gkED3Yg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tM9gkED3Yg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tM9gkED3Yg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tM9gkED3Yg .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tM9gkED3Yg .navbar.navbar-short {
  background: #101010 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tM9gkED3Yg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tM9gkED3Yg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tM9gkED3Yg .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tM9gkED3Yg .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-tM9gkED3Yg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tM9gkED3Yg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tM9gkED3Yg .dropdown-item.active,
.cid-tM9gkED3Yg .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tM9gkED3Yg .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tM9gkED3Yg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tM9gkED3Yg .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tM9gkED3Yg .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tM9gkED3Yg .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tM9gkED3Yg .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tM9gkED3Yg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tM9gkED3Yg .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-tM9gkED3Yg .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tM9gkED3Yg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-tM9gkED3Yg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tM9gkED3Yg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tM9gkED3Yg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tM9gkED3Yg .navbar-buttons {
  text-align: center;
}
.cid-tM9gkED3Yg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tM9gkED3Yg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffb81c;
}
.cid-tM9gkED3Yg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tM9gkED3Yg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tM9gkED3Yg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tM9gkED3Yg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tM9gkED3Yg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tM9gkED3Yg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tM9gkED3Yg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tM9gkED3Yg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tM9gkED3Yg .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tM9gkED3Yg a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tM9gkED3Yg .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tM9gkED3Yg .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-tM9gkED3Yg .icons-menu span {
  font-size: 20px;
  color: #ffb81c;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tM9gkED3Yg .navbar {
    height: 77px;
  }
  .cid-tM9gkED3Yg .navbar.opened {
    height: auto;
  }
  .cid-tM9gkED3Yg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tM9gkED3Yg a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tM9gkED3Yg a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffb81c;
}
.cid-tM9gkED3Yg .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tM9gkED3Yg .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tM9gkEWzaw {
  padding-top: 195px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/adobestock-332231026-mono-hands-typing-on-laptop-856x1028.webp");
}
.cid-tM9gkEWzaw .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-tM9gkEWzaw input {
  padding: 0rem 1rem !important;
}
.cid-tM9gkEWzaw .title {
  margin-bottom: 1rem;
}
.cid-tM9gkEWzaw textarea {
  min-height: 160px;
}
.cid-tM9gkEWzaw input::-webkit-input-placeholder,
.cid-tM9gkEWzaw textarea::-webkit-input-placeholder {
  color: #101010;
}
.cid-tM9gkEWzaw input:-moz-placeholder,
.cid-tM9gkEWzaw textarea:-moz-placeholder {
  color: #101010;
}
@media (max-width: 992px) {
  .cid-tM9gkEWzaw img {
    width: 100%;
  }
  .cid-tM9gkEWzaw form {
    margin-top: 2rem;
  }
}
.cid-tM9gkEWzaw .form-row {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-tM9gkEWzaw .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tM9gkEWzaw .mbr-form {
    padding-left: 2rem;
  }
}
.cid-tM9gkEWzaw .form-control {
  border-radius: 0px !important;
  border: none !important;
}
.cid-tM9gkEWzaw .form-control:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #f3f3f3;
}
.cid-tM9gkEWzaw .dragArea {
  background-color: #ffffff;
  border-radius: 5px;
}
.cid-tM9gkEWzaw .form-btn {
  width: 100%;
}
.cid-tM9gkEWzaw .link-btn {
  width: 100%;
}
.cid-tM9gkEWzaw h5 {
  margin-bottom: 0.2rem;
}
.cid-tM9gkEWzaw .mbr-form .btn {
  margin: 0;
}
.cid-tM9gkEWzaw .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tM9gkEWzaw .block-left {
  margin-bottom: 2.6rem;
}
.cid-tM9gkEWzaw .text-form {
  color: #4c4c4c;
  margin-bottom: 1.3rem;
}
.cid-tM9gkEWzaw .link-btn:hover {
  background-color: #bd4ed4 !important;
  color: #ffffff !important;
  border-color: #bd4ed4 !important;
}
.cid-tM9gkEWzaw .link-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .cid-tM9gkEWzaw .dragArea {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tM9gkEWzaw .dragArea {
    padding: 3.8rem 2.8rem 4rem;
  }
  .cid-tM9gkEWzaw .row {
    margin: 0rem;
  }
}
.cid-tM9gkEWzaw .btn {
  margin-left: 0rem;
}
.cid-tM9gkEWzaw P {
  text-align: left;
}
.cid-tM9gkEWzaw .block-left,
.cid-tM9gkEWzaw .mbr-section-btn {
  color: #ffffff;
}
.cid-tM9gkFf74O {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #101010;
}
.cid-tM9gkFf74O .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tM9gkFf74O textarea {
  min-height: 150px;
}
.cid-tM9gkFf74O input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-tM9gkFf74O textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-tM9gkFf74O .form-control,
.cid-tM9gkFf74O .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tM9gkFf74O .form-control input::-webkit-input-placeholder,
.cid-tM9gkFf74O .field-input input::-webkit-input-placeholder,
.cid-tM9gkFf74O .form-control textarea::-webkit-input-placeholder,
.cid-tM9gkFf74O .field-input textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tM9gkFf74O .form-control input:-moz-placeholder,
.cid-tM9gkFf74O .field-input input:-moz-placeholder,
.cid-tM9gkFf74O .form-control textarea:-moz-placeholder,
.cid-tM9gkFf74O .field-input textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-tM9gkFf74O .jq-number__spin:hover,
.cid-tM9gkFf74O .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tM9gkFf74O .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tM9gkFf74O .jq-selectbox li,
.cid-tM9gkFf74O .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tM9gkFf74O .jq-selectbox li:hover,
.cid-tM9gkFf74O .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tM9gkFf74O .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tM9gkFf74O .jq-number__spin.minus:hover:after,
.cid-tM9gkFf74O .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tM9gkFf74O .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tM9gkFf74O .jq-number__spin.minus:after,
.cid-tM9gkFf74O .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tM9gkFf74O .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tM9gkFf74O .social-list {
    margin-bottom: 3rem;
  }
  .cid-tM9gkFf74O .email-input {
    margin-top: 2rem;
  }
}
.cid-tM9gkFf74O .mbr-section-subtitle {
  color: #ffb81c;
  margin-bottom: 2.4rem;
}
.cid-tM9gkFf74O .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tM9gkFf74O .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-tM9gkFf74O .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #b539cf;
  transition: all .3s;
}
.cid-tM9gkFf74O .mbr-iconfont-social:hover {
  color: #b539cf;
}
.cid-tM9gkFf74O .social-list {
  display: flex;
}
.cid-tM9gkFf74O .social-list a {
  transition: .3s;
}
.cid-tM9gkFf74O .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tM9gkFf74O .row {
  align-items: center;
}
.cid-tM9gkFf74O .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tM9gkFf74O .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tM9gkFf74O .form-btn {
  margin-top: 2.5rem;
}
.cid-tM9gkFf74O input::-webkit-input-placeholder,
.cid-tM9gkFf74O textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-tM9gkFf74O input:-moz-placeholder,
.cid-tM9gkFf74O textarea:-moz-placeholder {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tM9gkFf74O .media-content {
    padding-right: 3rem;
  }
  .cid-tM9gkFf74O .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tM9gkFf74O .row {
    padding: 0 1rem;
  }
}
.cid-tM9gkFf74O .btn:hover {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tM9gkFf74O .form-btn {
    width: 100%;
  }
  .cid-tM9gkFf74O .btn {
    width: 100%;
  }
}
.cid-tM9gkFf74O .mbr-text,
.cid-tM9gkFf74O .mbr-section-btn {
  color: #ffffff;
}
.cid-tM9gkFy9xi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-tM9gkFy9xi .media-container-row {
  align-items: center;
}
.cid-tM9gkFy9xi .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tM9gkFy9xi .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tM9gkFy9xi .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tM9gkFy9xi .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-tM9gkFy9xi .foot-menu-item {
  transform: 0.2s;
}
.cid-tM9gkFy9xi .foot-menu-item:hover a {
  color: #b539cf !important;
}
.cid-tM9gkFy9xi .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tM9gkFy9xi .foot-menu-item:hover::before {
  width: 60px;
  background-color: #b539cf;
}
.cid-tM9gkFy9xi .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-tM9gkFy9xi .foot-menu {
    justify-content: center;
  }
  .cid-tM9gkFy9xi .mbr-text {
    text-align: center;
  }
  .cid-tM9gkFy9xi .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tM9gkFy9xi .foot-menu {
    justify-content: flex-end;
  }
}
.cid-tM9gkFy9xi .link:hover {
  color: #ffffff;
}
.cid-tM9gkFy9xi .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tM9gkFy9xi foot-menu-item P {
  color: #ffffff;
}
