body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Comfortaa', display;
  font-size: 4.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6rem;
}
.display-2 {
  font-family: 'Comfortaa', display;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Comfortaa', display;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.84rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.36rem;
    font-size: calc( 2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ff0800 !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #ff0800 !important;
}
.bg-warning {
  background-color: #161616 !important;
}
.bg-danger {
  background-color: #000000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff0800 !important;
  border-color: #ff0800 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #a80500 !important;
  border-color: #a80500 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a80500 !important;
  border-color: #a80500 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ff0800 !important;
  border-color: #ff0800 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #a80500 !important;
  border-color: #a80500 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a80500 !important;
  border-color: #a80500 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #161616 !important;
  border-color: #161616 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff0800;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a80500 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0800 !important;
  border-color: #ff0800 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff0800;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #a80500 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0800 !important;
  border-color: #ff0800 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #161616;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #161616 !important;
  border-color: #161616 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ff0800 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #ff0800 !important;
}
.text-warning {
  color: #161616 !important;
}
.text-danger {
  color: #000000 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #990500 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #cccccc !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #990500 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ff0800;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ff0800;
}
.alert-warning {
  background-color: #161616;
}
.alert-danger {
  background-color: #000000;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff0800;
  border-color: #ff0800;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff0800;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffcecc;
}
.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: #ffcecc;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c9c9c9;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b3b3b3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ff0800 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #ff0800;
}
/* Forms */
.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: #ff0800;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff0800;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff0800;
  border-bottom-color: #ff0800;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #ff0800 !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: #ffffff !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='%23ff0800' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-szHDYdcqmB {
  padding-top: 9rem;
  padding-bottom: 5rem;
}
.cid-szHDYdcqmB .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szHDYdcqmB .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-szHDYdcqmB .mbr-section-title {
  color: #ffffff;
}
.cid-szHDYdcqmB .mbr-text,
.cid-szHDYdcqmB .mbr-section-btn {
  color: #ffffff;
}
.cid-sLwoT8BKKw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sLwoT8BKKw .mbr-text {
  text-align: center;
  color: #100f0f;
}
.cid-sLwoT8BKKw .mbr-section-subtitle {
  text-align: center;
  color: #100f0f;
}
.cid-sLwoT8BKKw .mbr-section-title {
  text-align: center;
  color: #100f0f;
}
.cid-tRAI7DHots {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tRAI7DHots .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRAI7DHots .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRAI7DHots .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tRAI7DHots .container {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .cid-tRAI7DHots .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tRAI7DHots .container {
    max-width: 540px;
  }
}
.cid-tRAI7DHots .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tRAI7DHots .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tRAI7DHots .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tRAI7DHots .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tRAI7DHots .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tRAI7DHots .mbr-section-title {
  color: #ff0800;
}
.cid-tRAI7DHots .mbr-section-subtitle {
  color: #100f0f;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .cid-tRAI7DHots .mbr-section-subtitle {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
  }
}
.cid-tRAI7DHots .card-row {
  align-items: stretch;
}
.cid-tRAI7DHots .card {
  margin-top: 30px;
}
.cid-tRAI7DHots .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #161616, #23272b);
}
.cid-tRAI7DHots .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tRAI7DHots .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tRAI7DHots .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tRAI7DHots .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tRAI7DHots .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tRAI7DHots .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tRAI7DHots .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-tRAI7DHots .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ffffff;
}
.cid-tRAI7DHots .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-tRAI7DHots .card-text {
  color: #ffffff;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tRAI7DHots .card-title,
.cid-tRAI7DHots .iconfont-wrapper {
  color: #0684ff;
}
.cid-tRAIsuTLJb {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tRAIsuTLJb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRAIsuTLJb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRAIsuTLJb .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tRAIsuTLJb .container {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .cid-tRAIsuTLJb .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tRAIsuTLJb .container {
    max-width: 540px;
  }
}
.cid-tRAIsuTLJb .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tRAIsuTLJb .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tRAIsuTLJb .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tRAIsuTLJb .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tRAIsuTLJb .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tRAIsuTLJb .mbr-section-title {
  color: #0684ff;
}
.cid-tRAIsuTLJb .mbr-section-subtitle {
  color: #ffffff;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .cid-tRAIsuTLJb .mbr-section-subtitle {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
  }
}
.cid-tRAIsuTLJb .card-row {
  align-items: stretch;
}
.cid-tRAIsuTLJb .card {
  margin-top: 30px;
}
.cid-tRAIsuTLJb .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #161616, #23272b);
}
.cid-tRAIsuTLJb .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tRAIsuTLJb .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tRAIsuTLJb .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tRAIsuTLJb .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tRAIsuTLJb .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tRAIsuTLJb .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tRAIsuTLJb .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-tRAIsuTLJb .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ffffff;
}
.cid-tRAIsuTLJb .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-tRAIsuTLJb .card-text {
  color: #ffffff;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tRAIsuTLJb .card-title,
.cid-tRAIsuTLJb .iconfont-wrapper {
  color: #ff0800;
}
.cid-tXeS6UlVkl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tXeS6UlVkl .mbr-text {
  text-align: center;
  color: #100f0f;
}
.cid-tXeS6UlVkl .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tXeS6UlVkl .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-ufVAd758xB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-free-website-consultation.webp");
}
.cid-ufVAd758xB .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ufVAd758xB form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-ufVAd758xB form.mbr-form {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufVAd758xB form.mbr-form {
    padding: 1rem;
  }
}
.cid-ufVAd758xB form.mbr-form .mbr-section-btn {
  text-align: center;
  margin-bottom: 1.2rem;
}
.cid-ufVAd758xB form.mbr-form .mbr-section-btn .btn {
  width: 100%;
  height: 100%;
}
.cid-ufVAd758xB .mbr-section-title {
  color: #ffffff;
}
.cid-ufVAd758xB P {
  color: #232323;
}
.cid-sh66EEmHuc {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sh66EEmHuc [class^="socicon-"]:before,
.cid-sh66EEmHuc [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sh66EEmHuc .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ff0800;
  border-width: 2px;
  transition: all .3s;
  border-color: #ff0800;
}
.cid-sh66EEmHuc .btn-social:hover {
  background: #ff0800;
}
.cid-sh66EEmHuc .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sh66EEmHuc .mbr-section-title,
.cid-sh66EEmHuc .mbr-social-likes {
  color: #100f0f;
}
.cid-tR9trx2wuz {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tR9trx2wuz .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tR9trx2wuz form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tR9trx2wuz form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tR9trx2wuz form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tR9trx2wuz .mbr-section-title {
  color: #ff0800;
}
.cid-tR9trx2wuz .mbr-section-subtitle {
  color: #100f0f;
}
.cid-tR9trx2wuz LABEL {
  color: #ffffff;
}
.cid-ul3OZDHojR .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 100px;
  background-color: #ff0800;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-ul3OZDHojR .my-float {
  margin-top: 16px;
}
.cid-ul3OZDHojR P {
  color: #232323;
}
.cid-ul3OZDHojR DIV {
  color: #ffffff;
}
.cid-ul3OZDHojR H10 {
  color: #767676;
}
.cid-ul3OZDHojR .hidden {
  display: none;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-sFJ51qkRZP {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-sFJ51qkRZP .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sFJ51qkRZP .image-wrap img {
    display: block;
    margin: auto;
    width: 30%;
  }
}
.cid-sFJ51qkRZP .mbr-section-title {
  color: #ffffff;
}
.cid-sFJ51qkRZP .mbr-text,
.cid-sFJ51qkRZP .mbr-section-btn {
  color: #ffffff;
}
.cid-sg1tulAApM {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sg1tulAApM .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-sg1tulAApM .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-sg1tulAApM .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-tve7MCv9L8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tve7MCv9L8 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-tve7MCv9L8 .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-tve7MCv9L8 .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-su9pPpLP81 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-su9pPpLP81 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-su9pPpLP81 .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-su9pPpLP81 .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0800;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-su9pPpLP81 .mbr-text UL {
  text-align: left;
}
.cid-su9pPpLP81 .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-su9pPpLP81 .mbr-text {
  color: #353535;
}
.cid-sh6adByq84 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sh6adByq84 [class^="socicon-"]:before,
.cid-sh6adByq84 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sh6adByq84 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-sh6adByq84 .btn-social:hover {
  background: #161616;
}
.cid-sh6adByq84 .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sh6adByq84 .mbr-section-title,
.cid-sh6adByq84 .mbr-social-likes {
  color: #ff0800;
}
.cid-sIoADlJV9u {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sIoADlJV9u .mbr-section-title {
  color: #ff0800;
}
.cid-sIoADlJV9u .mbr-text,
.cid-sIoADlJV9u .mbr-section-btn {
  color: #000000;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tX3iiNPopk {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-tX3iiNPopk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX3iiNPopk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tX3iiNPopk .row {
    flex-direction: column-reverse;
  }
  .cid-tX3iiNPopk .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-tX3iiNPopk .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tX3iiNPopk .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tX3iiNPopk .media-content,
.cid-tX3iiNPopk .mbr-figure {
  align-self: center;
}
.cid-tX3iiNPopk .mbr-figure iframe {
  width: 100%;
}
.cid-tX3iiNPopk .mbr-section-title {
  color: #ffffff;
}
.cid-tX3iiNPopk .mbr-text,
.cid-tX3iiNPopk .mbr-section-btn {
  color: #ffffff;
}
.cid-sg32mEUcQk {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sg32mEUcQk .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-sg32mEUcQk .mbr-section-subtitle {
  text-align: center;
  color: #161616;
}
.cid-sg32mEUcQk .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-snIQEjreFm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-snIQEjreFm .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-snIQEjreFm .mbr-section-subtitle {
  text-align: center;
  color: #161616;
}
.cid-snIQEjreFm .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-su0fOODWL7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-su0fOODWL7 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-su0fOODWL7 .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-su0fOODWL7 .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0800;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-su0fOODWL7 .mbr-text UL {
  text-align: left;
}
.cid-su0fOODWL7 .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-su0fOODWL7 .mbr-text {
  color: #000000;
}
.cid-sTMRcYZJhg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sTMRcYZJhg .mbr-section-title {
  color: #ff0800;
}
.cid-sTMRcYZJhg .mbr-section-subtitle {
  color: #000000;
}
.cid-sh6dFVGYCd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sh6dFVGYCd [class^="socicon-"]:before,
.cid-sh6dFVGYCd [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sh6dFVGYCd .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-sh6dFVGYCd .btn-social:hover {
  background: #161616;
}
.cid-sh6dFVGYCd .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sh6dFVGYCd .mbr-section-title,
.cid-sh6dFVGYCd .mbr-social-likes {
  color: #ff0800;
}
.cid-sIoJFihfZu {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sIoJFihfZu .mbr-section-title {
  color: #ff0800;
}
.cid-sIoJFihfZu .mbr-text,
.cid-sIoJFihfZu .mbr-section-btn {
  color: #000000;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-sUyqXsXFLl {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-sUyqXsXFLl .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sUyqXsXFLl .image-wrap img {
    display: block;
    margin: auto;
    width: 30%;
  }
}
.cid-sUyqXsXFLl .mbr-section-title {
  color: #ffffff;
}
.cid-sUyqXsXFLl .mbr-text,
.cid-sUyqXsXFLl .mbr-section-btn {
  color: #ffffff;
}
.cid-tiHbhE8dzB {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tiHbhE8dzB .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-tiHbhE8dzB .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-tiHbhE8dzB .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-tWyfB0GYP0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWyfB0GYP0 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tWyfB0GYP0 .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-tWyfB0GYP0 .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0800;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-tWyfB0GYP0 .mbr-text {
  color: #000000;
}
.cid-tWyfB0GYP0 .mbr-section-title {
  color: #ff0800;
  text-align: center;
}
.cid-smQV14D08H {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-smQV14D08H .mbr-text {
  text-align: center;
  color: #100f0f;
}
.cid-smQV14D08H .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-smQV14D08H .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-suc0uDZiOX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-suc0uDZiOX .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-suc0uDZiOX .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-suc0uDZiOX .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0800;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-suc0uDZiOX .mbr-text UL {
  text-align: left;
}
.cid-suc0uDZiOX .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-suc0uDZiOX .mbr-text {
  color: #000000;
}
.cid-sh6dn8ZFBY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sh6dn8ZFBY [class^="socicon-"]:before,
.cid-sh6dn8ZFBY [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sh6dn8ZFBY .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-sh6dn8ZFBY .btn-social:hover {
  background: #161616;
}
.cid-sh6dn8ZFBY .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sh6dn8ZFBY .mbr-section-title,
.cid-sh6dn8ZFBY .mbr-social-likes {
  color: #ff0800;
}
.cid-sIoIpShutT {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sIoIpShutT .mbr-section-title {
  color: #ff0800;
}
.cid-sIoIpShutT .mbr-text,
.cid-sIoIpShutT .mbr-section-btn {
  color: #000000;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-sFzZOcMhRV {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-sFzZOcMhRV .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sFzZOcMhRV .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sFzZOcMhRV .mbr-section-title {
  color: #ffffff;
}
.cid-sFzZOcMhRV .mbr-text,
.cid-sFzZOcMhRV .mbr-section-btn {
  color: #ffffff;
}
.cid-sgT2Y6AbqZ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sgT2Y6AbqZ .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-sgT2Y6AbqZ .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-sgT2Y6AbqZ .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-sntJM4Z6jn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sntJM4Z6jn .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-sntJM4Z6jn .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-sntJM4Z6jn .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-sh6g9sUqVr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sh6g9sUqVr [class^="socicon-"]:before,
.cid-sh6g9sUqVr [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sh6g9sUqVr .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-sh6g9sUqVr .btn-social:hover {
  background: #161616;
}
.cid-sh6g9sUqVr .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sh6g9sUqVr .mbr-section-title,
.cid-sh6g9sUqVr .mbr-social-likes {
  color: #ff0800;
}
.cid-sunZpjYfox {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sunZpjYfox .mbr-text {
  text-align: center;
  color: #100f0f;
}
.cid-sunZpjYfox .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-sunZpjYfox .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-sunZDUT3U2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sunZDUT3U2 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sunZDUT3U2 .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sunZDUT3U2 .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0800;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sunZDUT3U2 .mbr-text UL {
  text-align: left;
}
.cid-sunZDUT3U2 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-sunZDUT3U2 .mbr-text {
  color: #000000;
}
.cid-sInGqRZ7tQ {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sInGqRZ7tQ .mbr-section-title {
  color: #ff0800;
}
.cid-sInGqRZ7tQ .mbr-text,
.cid-sInGqRZ7tQ .mbr-section-btn {
  color: #000000;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-sFvGaum9Jx {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-sFvGaum9Jx .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sFvGaum9Jx .image-wrap img {
    display: block;
    margin: auto;
    width: 30%;
  }
}
.cid-sFvGaum9Jx .mbr-section-title {
  color: #ffffff;
}
.cid-sFvGaum9Jx .mbr-text,
.cid-sFvGaum9Jx .mbr-section-btn {
  color: #ffffff;
}
.cid-sgYpCQNWay {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sgYpCQNWay .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-sgYpCQNWay .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-sgYpCQNWay .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-snIWaI9Gcn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-snIWaI9Gcn .mbr-text {
  text-align: center;
  color: #161616;
}
.cid-snIWaI9Gcn .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-snIWaI9Gcn .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-su9m4TgLO1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-su9m4TgLO1 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-su9m4TgLO1 .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-su9m4TgLO1 .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0800;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-su9m4TgLO1 .mbr-text UL {
  text-align: left;
}
.cid-su9m4TgLO1 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-su9m4TgLO1 .mbr-text {
  color: #000000;
}
.cid-sTW70uQwER {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTW70uQwER .mbr-section-title {
  color: #ff0800;
}
.cid-sTW70uQwER .mbr-section-subtitle {
  color: #000000;
}
.cid-sh68WY8Ulz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sh68WY8Ulz [class^="socicon-"]:before,
.cid-sh68WY8Ulz [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sh68WY8Ulz .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-sh68WY8Ulz .btn-social:hover {
  background: #161616;
}
.cid-sh68WY8Ulz .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sh68WY8Ulz .mbr-section-title,
.cid-sh68WY8Ulz .mbr-social-likes {
  color: #ff0800;
}
.cid-sIot3KkdH3 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sIot3KkdH3 .mbr-section-title {
  color: #ff0800;
}
.cid-sIot3KkdH3 .mbr-text,
.cid-sIot3KkdH3 .mbr-section-btn {
  color: #000000;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-sUycixPyAY {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-sUycixPyAY .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sUycixPyAY .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sUycixPyAY .mbr-section-title {
  color: #ffffff;
}
.cid-sUycixPyAY .mbr-text,
.cid-sUycixPyAY .mbr-section-btn {
  color: #ffffff;
}
.cid-shiiTO4Ses {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-shiiTO4Ses .mbr-section-title {
  color: #ff0800;
}
.cid-shiiTO4Ses .mbr-section-subtitle {
  color: #000000;
}
.cid-sklZDqScPx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sklZDqScPx .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-sklZDqScPx .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-sklZDqScPx .mbr-section-title {
  color: #ff0800;
  text-align: center;
}
.cid-shiKMVC0wp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-shiKMVC0wp .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-shiKMVC0wp .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-shiKMVC0wp .mbr-section-title {
  color: #ff0800;
  text-align: center;
}
.cid-shioAbLc6J {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-shioAbLc6J [class^="socicon-"]:before,
.cid-shioAbLc6J [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-shioAbLc6J .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #100f0f;
  border-width: 2px;
  transition: all .3s;
  border-color: #100f0f;
}
.cid-shioAbLc6J .btn-social:hover {
  background: #100f0f;
}
.cid-shioAbLc6J .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-shioAbLc6J .mbr-section-title,
.cid-shioAbLc6J .mbr-social-likes {
  color: #ff0800;
}
.cid-sInFTTmXd5 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sInFTTmXd5 .mbr-section-title {
  color: #ff0800;
}
.cid-sInFTTmXd5 .mbr-text,
.cid-sInFTTmXd5 .mbr-section-btn {
  color: #000000;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-sPKbUEAQB7 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-sPKbUEAQB7 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sPKbUEAQB7 .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sPKbUEAQB7 .mbr-section-title {
  color: #ffffff;
}
.cid-sPKbUEAQB7 .mbr-text,
.cid-sPKbUEAQB7 .mbr-section-btn {
  color: #ffffff;
}
.cid-shwbCx0s7Q {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-shwbCx0s7Q .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-shwbCx0s7Q .mbr-section-subtitle {
  text-align: center;
  color: #161616;
}
.cid-shwbCx0s7Q .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-smWeCCaO4J {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-smWeCCaO4J .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-smWeCCaO4J .mbr-section-subtitle {
  text-align: center;
  color: #161616;
}
.cid-smWeCCaO4J .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-shASSdrs1u {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-shASSdrs1u [class^="socicon-"]:before,
.cid-shASSdrs1u [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-shASSdrs1u .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-shASSdrs1u .btn-social:hover {
  background: #161616;
}
.cid-shASSdrs1u .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-shASSdrs1u .mbr-section-title,
.cid-shASSdrs1u .mbr-social-likes {
  color: #ff0800;
}
.cid-sIotMvVzUr {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sIotMvVzUr .mbr-section-title {
  color: #ff0800;
}
.cid-sIotMvVzUr .mbr-text,
.cid-sIotMvVzUr .mbr-section-btn {
  color: #000000;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-sUyjuF2GkZ {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-sUyjuF2GkZ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sUyjuF2GkZ .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sUyjuF2GkZ .mbr-section-title {
  color: #ffffff;
}
.cid-sUyjuF2GkZ .mbr-text,
.cid-sUyjuF2GkZ .mbr-section-btn {
  color: #ffffff;
}
.cid-sIoBahV6zF {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sIoBahV6zF .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-sIoBahV6zF .mbr-section-subtitle {
  text-align: center;
  color: #111111;
}
.cid-sIoBahV6zF .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-si3hxpT3e5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-si3hxpT3e5 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-si3hxpT3e5 .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-stYqRr9gZp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-stYqRr9gZp .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-stYqRr9gZp .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-stYqRr9gZp .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0800;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-stYqRr9gZp .mbr-text UL {
  text-align: left;
}
.cid-stYqRr9gZp .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-stYqRr9gZp .mbr-text {
  color: #000000;
}
.cid-shSyWeIAX1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-shSyWeIAX1 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-shSyWeIAX1 .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-sh6aPGIrxC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sh6aPGIrxC [class^="socicon-"]:before,
.cid-sh6aPGIrxC [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sh6aPGIrxC .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-sh6aPGIrxC .btn-social:hover {
  background: #161616;
}
.cid-sh6aPGIrxC .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sh6aPGIrxC .mbr-section-title,
.cid-sh6aPGIrxC .mbr-social-likes {
  color: #ff0800;
}
.cid-sIoBJJQTCe {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sIoBJJQTCe .mbr-section-title {
  color: #ff0800;
}
.cid-sIoBJJQTCe .mbr-text,
.cid-sIoBJJQTCe .mbr-section-btn {
  color: #000000;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-sUy49AEbHX {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-sUy49AEbHX .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sUy49AEbHX .image-wrap img {
    display: block;
    margin: auto;
    width: 30%;
  }
}
.cid-sUy49AEbHX .mbr-section-title {
  color: #ffffff;
}
.cid-sUy49AEbHX .mbr-text,
.cid-sUy49AEbHX .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tiHy0fW329 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tiHy0fW329 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tiHy0fW329 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tiHy0fW329 .mbr-section-title {
  color: #ff0800;
}
.cid-tiHy0fW329 .mbr-section-subtitle {
  color: #000000;
}
.cid-tiHytb0wsS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tiHytb0wsS .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-tiHytb0wsS .mbr-section-subtitle {
  text-align: center;
  color: #100f0f;
}
.cid-tiHytb0wsS .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-tu8v26yoyA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tu8v26yoyA .mbr-section-title {
  color: #ff0800;
}
.cid-tu8v26yoyA .mbr-section-subtitle {
  color: #232323;
}
.cid-tiHyOlaM68 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tiHyOlaM68 .content-wrapper {
  background: #232323;
}
@media (max-width: 991px) {
  .cid-tiHyOlaM68 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tiHyOlaM68 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tiHyOlaM68 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tiHyOlaM68 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tiHyOlaM68 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tiHyOlaM68 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tiHyOlaM68 .card-title {
  color: #ff0800;
}
.cid-tiHyOlaM68 .mbr-text,
.cid-tiHyOlaM68 .mbr-section-btn {
  color: #ffffff;
}
.cid-tiHyNu8CGX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tiHyNu8CGX .content-wrapper {
  background: #232323;
}
@media (max-width: 991px) {
  .cid-tiHyNu8CGX .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tiHyNu8CGX .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tiHyNu8CGX .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tiHyNu8CGX .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tiHyNu8CGX .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tiHyNu8CGX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tiHyNu8CGX .card-title {
  color: #ff0800;
}
.cid-tiHyNu8CGX .mbr-text,
.cid-tiHyNu8CGX .mbr-section-btn {
  color: #ffffff;
}
.cid-sT6zewvT0e {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sT6zewvT0e .mbr-section-title {
  color: #ff0800;
}
.cid-sT6zewvT0e .mbr-section-subtitle {
  color: #161616;
}
.cid-sT6sREAghF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sT6sREAghF .content-wrapper {
  background: #232323;
}
@media (max-width: 991px) {
  .cid-sT6sREAghF .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sT6sREAghF .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sT6sREAghF .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sT6sREAghF .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sT6sREAghF .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sT6sREAghF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sT6sREAghF .card-title {
  color: #ff0800;
}
.cid-sT6sREAghF .mbr-text,
.cid-sT6sREAghF .mbr-section-btn {
  color: #ffffff;
}
.cid-sT6sSnqQfx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sT6sSnqQfx .content-wrapper {
  background: #232323;
}
@media (max-width: 991px) {
  .cid-sT6sSnqQfx .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sT6sSnqQfx .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sT6sSnqQfx .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sT6sSnqQfx .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sT6sSnqQfx .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sT6sSnqQfx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sT6sSnqQfx .card-title {
  color: #ff0800;
}
.cid-sT6sSnqQfx .mbr-text,
.cid-sT6sSnqQfx .mbr-section-btn {
  color: #ffffff;
}
.cid-tiHzooEyy2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tiHzooEyy2 .content-wrapper {
  background: #232323;
}
@media (max-width: 991px) {
  .cid-tiHzooEyy2 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tiHzooEyy2 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tiHzooEyy2 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tiHzooEyy2 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tiHzooEyy2 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tiHzooEyy2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tiHzooEyy2 .card-title {
  color: #0684ff;
}
.cid-tiHzooEyy2 .mbr-text,
.cid-tiHzooEyy2 .mbr-section-btn {
  color: #ffffff;
}
.cid-unDxQ47HjX {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-unDxQ47HjX .content-wrapper {
  background: #232323;
}
@media (max-width: 991px) {
  .cid-unDxQ47HjX .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-unDxQ47HjX .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-unDxQ47HjX .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-unDxQ47HjX .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-unDxQ47HjX .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-unDxQ47HjX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-unDxQ47HjX .card-title {
  color: #ff0800;
}
.cid-unDxQ47HjX .mbr-text,
.cid-unDxQ47HjX .mbr-section-btn {
  color: #ffffff;
}
.cid-sr92hBumqQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sr92hBumqQ [class^="socicon-"]:before,
.cid-sr92hBumqQ [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sr92hBumqQ .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #100f0f;
  border-width: 2px;
  transition: all .3s;
  border-color: #100f0f;
}
.cid-sr92hBumqQ .btn-social:hover {
  background: #100f0f;
}
.cid-sr92hBumqQ .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sr92hBumqQ .mbr-section-title,
.cid-sr92hBumqQ .mbr-social-likes {
  color: #ff0800;
}
.cid-sInC4y1O0h {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sInC4y1O0h .mbr-section-title {
  color: #ff0800;
}
.cid-sInC4y1O0h .mbr-text,
.cid-sInC4y1O0h .mbr-section-btn {
  color: #000000;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-sMlbJUdPkc {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-sMlbJUdPkc .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sMlbJUdPkc .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sMlbJUdPkc .mbr-section-title {
  color: #ffffff;
}
.cid-sMlbJUdPkc .mbr-text,
.cid-sMlbJUdPkc .mbr-section-btn {
  color: #ffffff;
}
.cid-sMlbJVbmHK {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sMlbJVbmHK .mbr-text {
  text-align: center;
  color: #161616;
}
.cid-sMlbJVbmHK .mbr-section-subtitle {
  text-align: center;
  color: #100f0f;
}
.cid-sMlbJVbmHK .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-tQvmj7pC61 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tQvmj7pC61 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQvmj7pC61 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQvmj7pC61 .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tQvmj7pC61 .container {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .cid-tQvmj7pC61 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tQvmj7pC61 .container {
    max-width: 540px;
  }
}
.cid-tQvmj7pC61 .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tQvmj7pC61 .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tQvmj7pC61 .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tQvmj7pC61 .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tQvmj7pC61 .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tQvmj7pC61 .mbr-section-title {
  color: #ff0800;
}
.cid-tQvmj7pC61 .mbr-section-subtitle {
  color: #100f0f;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .cid-tQvmj7pC61 .mbr-section-subtitle {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
  }
}
.cid-tQvmj7pC61 .card-row {
  align-items: stretch;
}
.cid-tQvmj7pC61 .card {
  margin-top: 30px;
}
.cid-tQvmj7pC61 .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #161616, #23272b);
}
.cid-tQvmj7pC61 .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tQvmj7pC61 .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tQvmj7pC61 .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tQvmj7pC61 .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tQvmj7pC61 .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tQvmj7pC61 .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tQvmj7pC61 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-tQvmj7pC61 .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ffffff;
}
.cid-tQvmj7pC61 .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-tQvmj7pC61 .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tQvmj7pC61 .card-title,
.cid-tQvmj7pC61 .iconfont-wrapper {
  color: #0684ff;
}
.cid-tQvu7Qd7K5 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tQvu7Qd7K5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQvu7Qd7K5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQvu7Qd7K5 .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tQvu7Qd7K5 .container {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .cid-tQvu7Qd7K5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tQvu7Qd7K5 .container {
    max-width: 540px;
  }
}
.cid-tQvu7Qd7K5 .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tQvu7Qd7K5 .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tQvu7Qd7K5 .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tQvu7Qd7K5 .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tQvu7Qd7K5 .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tQvu7Qd7K5 .mbr-section-title {
  color: #0684ff;
}
.cid-tQvu7Qd7K5 .mbr-section-subtitle {
  color: #ffffff;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .cid-tQvu7Qd7K5 .mbr-section-subtitle {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
  }
}
.cid-tQvu7Qd7K5 .card-row {
  align-items: stretch;
}
.cid-tQvu7Qd7K5 .card {
  margin-top: 30px;
}
.cid-tQvu7Qd7K5 .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #161616, #23272b);
}
.cid-tQvu7Qd7K5 .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tQvu7Qd7K5 .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tQvu7Qd7K5 .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tQvu7Qd7K5 .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tQvu7Qd7K5 .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tQvu7Qd7K5 .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tQvu7Qd7K5 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-tQvu7Qd7K5 .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ffffff;
}
.cid-tQvu7Qd7K5 .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-tQvu7Qd7K5 .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tQvu7Qd7K5 .card-title,
.cid-tQvu7Qd7K5 .iconfont-wrapper {
  color: #0684ff;
}
.cid-sMlbJZQHRU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sMlbJZQHRU [class^="socicon-"]:before,
.cid-sMlbJZQHRU [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sMlbJZQHRU .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-sMlbJZQHRU .btn-social:hover {
  background: #161616;
}
.cid-sMlbJZQHRU .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sMlbJZQHRU .mbr-section-title,
.cid-sMlbJZQHRU .mbr-social-likes {
  color: #ff0800;
}
.cid-sMlbK0o5pQ {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sMlbK0o5pQ .mbr-section-title {
  color: #ff0800;
}
.cid-sMlbK0o5pQ .mbr-text,
.cid-sMlbK0o5pQ .mbr-section-btn {
  text-align: center;
  color: #100f0f;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-sUy9L2QI0V {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-sUy9L2QI0V .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sUy9L2QI0V .image-wrap img {
    display: block;
    margin: auto;
    width: 30%;
  }
}
.cid-sUy9L2QI0V .mbr-section-title {
  color: #ffffff;
}
.cid-sUy9L2QI0V .mbr-text,
.cid-sUy9L2QI0V .mbr-section-btn {
  color: #ff0800;
}
.cid-sOEzKjrCBl {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sOEzKjrCBl .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-sOEzKjrCBl .mbr-section-subtitle {
  text-align: center;
  color: #ff0800;
}
.cid-sOEzKjrCBl .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-txhDkWpcL0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-txhDkWpcL0 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-txhDkWpcL0 .mbr-section-subtitle {
  text-align: center;
  color: #232323;
}
.cid-txhDkWpcL0 .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-sOGqL1SQ0W {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sOGqL1SQ0W ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sOGqL1SQ0W li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sOGqL1SQ0W ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0800;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sOGqL1SQ0W .list {
  color: #000000;
}
.cid-sTKNC9MTov {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTKNC9MTov .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-sTKNC9MTov .mbr-section-subtitle {
  text-align: center;
  color: #161616;
}
.cid-sTKNC9MTov .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-sOEzKm4AoS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sOEzKm4AoS [class^="socicon-"]:before,
.cid-sOEzKm4AoS [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sOEzKm4AoS .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #232323;
  border-width: 2px;
  transition: all .3s;
  border-color: #232323;
}
.cid-sOEzKm4AoS .btn-social:hover {
  background: #232323;
}
.cid-sOEzKm4AoS .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sOEzKm4AoS .mbr-section-title,
.cid-sOEzKm4AoS .mbr-social-likes {
  color: #ff0800;
}
.cid-sOEzKmxguq {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sOEzKmxguq .mbr-section-title {
  color: #ff0800;
}
.cid-sOEzKmxguq .mbr-text,
.cid-sOEzKmxguq .mbr-section-btn {
  color: #000000;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-sWIkPBEwbe {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-sWIkPBEwbe .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sWIkPBEwbe .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sWIkPBEwbe .mbr-section-title {
  color: #ffffff;
}
.cid-sWIkPBEwbe .mbr-text,
.cid-sWIkPBEwbe .mbr-section-btn {
  color: #ff0800;
}
.cid-sWIlM135Rd {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sWIlM135Rd .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-sWIlM135Rd .mbr-section-subtitle {
  text-align: center;
  color: #161616;
}
.cid-sWIlM135Rd .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-stYlcC1SC0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-stYlcC1SC0 .mbr-section-title {
  color: #ff0800;
}
.cid-stYlcC1SC0 .mbr-section-subtitle {
  color: #161616;
}
.cid-sFJ4hxFbzq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sFJ4hxFbzq .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sFJ4hxFbzq .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sFJ4hxFbzq .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0800;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sFJ4hxFbzq .mbr-text UL {
  text-align: left;
}
.cid-sFJ4hxFbzq .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sFJ4hxFbzq .mbr-text {
  color: #000000;
}
.cid-sWIlcxhAcL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sWIlcxhAcL .mbr-text,
.cid-sWIlcxhAcL .link {
  color: #ff0800;
}
.cid-sWIlcxhAcL .mbr-section-title {
  color: #ff0800;
}
.cid-sWIlcxhAcL .link {
  color: #000000;
}
.cid-sWIlcxhAcL .mbr-section-subtitle {
  color: #161616;
}
.cid-sWIllsQEAt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sWIllsQEAt .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sWIllsQEAt .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sWIllsQEAt .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0800;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sWIllsQEAt .mbr-text UL {
  text-align: left;
}
.cid-sWIllsQEAt .mbr-section-title {
  text-align: left;
  color: #161616;
}
.cid-sWIllsQEAt .mbr-text {
  color: #000000;
}
.cid-sh6cxG2xWu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sh6cxG2xWu [class^="socicon-"]:before,
.cid-sh6cxG2xWu [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sh6cxG2xWu .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-sh6cxG2xWu .btn-social:hover {
  background: #161616;
}
.cid-sh6cxG2xWu .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sh6cxG2xWu .mbr-section-title,
.cid-sh6cxG2xWu .mbr-social-likes {
  color: #ff0800;
}
.cid-tR9wHjbJoY {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tR9wHjbJoY .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tR9wHjbJoY form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tR9wHjbJoY form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tR9wHjbJoY form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tR9wHjbJoY .mbr-section-title {
  color: #ff0800;
}
.cid-tR9wHjbJoY .mbr-section-subtitle {
  color: #000000;
}
.cid-tR9wHjbJoY LABEL {
  color: #ffffff;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-ttEgBAnwUc {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-ttEgBAnwUc .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ttEgBAnwUc .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-ttEgBAnwUc .mbr-section-title {
  color: #ffffff;
}
.cid-ttEgBAnwUc .mbr-text,
.cid-ttEgBAnwUc .mbr-section-btn {
  color: #ffffff;
}
.cid-ttEln6lPUn {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ttEln6lPUn .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-ttEln6lPUn .mbr-text {
  text-align: center;
  color: #100f0f;
}
.cid-ttEln6lPUn .mbr-section-title {
  color: #ff0800;
  text-align: center;
}
.cid-tSXQORLI1u {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tSXQORLI1u .mbr-text {
  text-align: center;
  color: #100f0f;
}
.cid-tSXQORLI1u .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tSXQORLI1u .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-tSXREeYl91 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tSXREeYl91 .mbr-text {
  text-align: center;
  color: #100f0f;
}
.cid-tSXREeYl91 .mbr-section-subtitle {
  text-align: center;
  color: #161616;
}
.cid-tSXREeYl91 .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-ttEgBDgCTs {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ttEgBDgCTs [class^="socicon-"]:before,
.cid-ttEgBDgCTs [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-ttEgBDgCTs .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-ttEgBDgCTs .btn-social:hover {
  background: #161616;
}
.cid-ttEgBDgCTs .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-ttEgBDgCTs .mbr-section-title,
.cid-ttEgBDgCTs .mbr-social-likes {
  color: #ff0800;
}
.cid-ttEjbRNvGA {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ttEjbRNvGA .mbr-section-title {
  color: #ff0800;
}
.cid-ttEjbRNvGA .mbr-text,
.cid-ttEjbRNvGA .mbr-section-btn {
  color: #100f0f;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-sT2hRbk69d {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-sT2hRbk69d .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sT2hRbk69d .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sT2hRbk69d .mbr-section-title {
  color: #ffffff;
}
.cid-sT2hRbk69d .mbr-text,
.cid-sT2hRbk69d .mbr-section-btn {
  color: #ffffff;
}
.cid-sIozE8f558 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sIozE8f558 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-sIozE8f558 .mbr-section-subtitle {
  text-align: center;
  color: #161616;
}
.cid-sIozE8f558 .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-tWyclvIQLJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWyclvIQLJ .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tWyclvIQLJ .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-tWyclvIQLJ .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0800;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-tWyclvIQLJ .mbr-text {
  color: #000000;
}
.cid-tWyclvIQLJ .mbr-section-title {
  color: #ff0800;
  text-align: center;
}
.cid-sWQj5mJVdG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWQj5mJVdG .mbr-section-title {
  color: #ff0800;
}
.cid-sWQj5mJVdG .mbr-section-subtitle {
  color: #000000;
}
.cid-tUO7HTZkj7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tUO7HTZkj7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUO7HTZkj7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUO7HTZkj7 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tUO7HTZkj7 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tUO7HTZkj7 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #ff0800;
}
.cid-tUO7HTZkj7 .panel-body,
.cid-tUO7HTZkj7 .card-header {
  padding: 1rem 0;
}
.cid-tUO7HTZkj7 .panel-title-edit {
  color: #ff0800;
}
.cid-tUO7HTZkj7 H3 {
  color: #ff0800;
}
.cid-tUO7HTZkj7 H4 {
  color: #161616;
}
.cid-tUO7HTZkj7 .panel-text {
  color: #000000;
}
.cid-sh6aqygVBP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sh6aqygVBP [class^="socicon-"]:before,
.cid-sh6aqygVBP [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sh6aqygVBP .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-sh6aqygVBP .btn-social:hover {
  background: #161616;
}
.cid-sh6aqygVBP .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sh6aqygVBP .mbr-section-title,
.cid-sh6aqygVBP .mbr-social-likes {
  color: #ff0800;
}
.cid-sWQn3R3Hy4 {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sWQn3R3Hy4 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sWQn3R3Hy4 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sWQn3R3Hy4 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sWQn3R3Hy4 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sWQn3R3Hy4 .mbr-section-title {
  color: #ff0800;
}
.cid-sWQn3R3Hy4 .mbr-section-subtitle {
  color: #000000;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tYR1n83MkB {
  padding-top: 15rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
  overflow: hidden;
}
.cid-tYR1n83MkB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYR1n83MkB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYR1n83MkB path {
  fill: #ff0800;
}
@keyframes wave3 {
  0% {
    transform: scaleY(0.9) translate(-50%, -50%);
  }
  50% {
    transform: scaleY(1.1) translate(-50%, -50%);
  }
  100% {
    transform: scaleY(0.9) translate(-50%, -50%);
  }
}
.cid-tYR1n83MkB b,
.cid-tYR1n83MkB strong {
  font-weight: 900;
}
.cid-tYR1n83MkB svg {
  position: absolute;
  top: 30px;
  left: 45%;
  right: 50%;
  animation: 5s ease infinite wave3;
  transform-origin: top;
  transform: scaleY(0.8) translate(-50%, -50%);
}
.cid-tYR1n83MkB a {
  font-weight: 900;
  background: #ffffff;
}
.cid-tYR1n83MkB .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tYR1n83MkB .mbr-text,
.cid-tYR1n83MkB .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tYR1n83MkB .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sISUxUtwGN {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sISUxUtwGN .mbr-text {
  text-align: center;
  color: #ff0800;
}
.cid-sISUxUtwGN .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-sISUxUtwGN .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-sISS7tqyaE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sISS7tqyaE .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sISS7tqyaE .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sISS7tqyaE .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0800;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sISS7tqyaE .mbr-text UL {
  text-align: left;
}
.cid-sISS7tqyaE .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-sISS7tqyaE .mbr-text {
  color: #000000;
}
.cid-slNL8U5eqp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-slNL8U5eqp .mbr-text {
  text-align: center;
  color: #161616;
}
.cid-slNL8U5eqp .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-slNL8U5eqp .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-suOb0Zh9Tf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-suOb0Zh9Tf .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-suOb0Zh9Tf .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-suOb0Zh9Tf .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0800;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-suOb0Zh9Tf .mbr-text UL {
  text-align: left;
}
.cid-suOb0Zh9Tf .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-suOb0Zh9Tf .mbr-text {
  color: #000000;
}
.cid-shbhR63KHY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-shbhR63KHY [class^="socicon-"]:before,
.cid-shbhR63KHY [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-shbhR63KHY .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-shbhR63KHY .btn-social:hover {
  background: #161616;
}
.cid-shbhR63KHY .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-shbhR63KHY .mbr-section-title,
.cid-shbhR63KHY .mbr-social-likes {
  color: #ff0800;
}
.cid-sHTsz4eVWD {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sHTsz4eVWD .mbr-section-title {
  color: #ff0800;
}
.cid-sHTsz4eVWD .mbr-text,
.cid-sHTsz4eVWD .mbr-section-btn {
  color: #000000;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-ssiX6vrTJV {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-ssiX6vrTJV .mbr-text,
.cid-ssiX6vrTJV .mbr-section-btn {
  color: #ffffff;
}
.cid-ssiX6vrTJV .mbr-section-subtitle {
  color: #ff0800;
}
.cid-ssiX6vrTJV .mbr-section-title {
  color: #ffffff;
}
.cid-sMgCpzoGbZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sMgCpzoGbZ .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sMgCpzoGbZ .mbr-section-subtitle {
  text-align: left;
}
.cid-sMgCpzoGbZ .mbr-section-title {
  color: #ff0800;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-sFvzzjKQEU {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-sFvzzjKQEU .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sFvzzjKQEU .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sFvzzjKQEU .mbr-section-title {
  color: #ffffff;
}
.cid-sFvzzjKQEU .mbr-text,
.cid-sFvzzjKQEU .mbr-section-btn {
  color: #ffffff;
}
.cid-sInuIjgS7S {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sInuIjgS7S .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-sInuIjgS7S .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-sInuIjgS7S .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-tSLMuKEQl8 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-tSLMuKEQl8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSLMuKEQl8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tSLMuKEQl8 .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-tSLMuKEQl8 .google-map {
  height: 100%;
  position: relative;
}
.cid-tSLMuKEQl8 .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tSLMuKEQl8 .google-map iframe {
    min-height: 350px;
  }
}
.cid-tSLMuKEQl8 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tSLMuKEQl8 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tSLMuKEQl8 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tSLMuKEQl8 .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-tSLMuKEQl8 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-tSLMuKEQl8 .card-wrapper {
    padding: 2.25rem;
  }
}
.cid-tSLMuKEQl8 .text-wrapper {
  padding: 0 1rem;
}
.cid-tSLMuKEQl8 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tSLMuKEQl8 .content-head {
  max-width: 800px;
}
.cid-tSLMuKEQl8 .cardTitle {
  color: #ff0800;
}
.cid-tSLMuKEQl8 .mbr-section-title {
  color: #ff0800;
}
.cid-tSLMuKEQl8 .mbr-section-subtitle {
  color: #100f0f;
}
.cid-s9bM2VrCtT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s9bM2VrCtT [class^="socicon-"]:before,
.cid-s9bM2VrCtT [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-s9bM2VrCtT .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-s9bM2VrCtT .btn-social:hover {
  background: #161616;
}
.cid-s9bM2VrCtT .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-s9bM2VrCtT .mbr-section-title,
.cid-s9bM2VrCtT .mbr-social-likes {
  color: #ff0800;
}
.cid-t3G2hfNlLn {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t3G2hfNlLn .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t3G2hfNlLn form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-t3G2hfNlLn form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-t3G2hfNlLn form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t3G2hfNlLn .mbr-section-title {
  color: #ff0800;
}
.cid-t3G2hfNlLn .mbr-section-subtitle {
  color: #100f0f;
}
.cid-t3G2hfNlLn LABEL {
  color: #ffffff;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tiCNH3OE3N {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-tiCNH3OE3N .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tiCNH3OE3N .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-tiCNH3OE3N .mbr-section-title {
  color: #ffffff;
}
.cid-tiCNH3OE3N .mbr-text,
.cid-tiCNH3OE3N .mbr-section-btn {
  color: #ff0800;
}
.cid-tiCNH4UKbm {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tiCNH4UKbm .mbr-text {
  text-align: center;
  color: #100f0f;
}
.cid-tiCNH4UKbm .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tiCNH4UKbm .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tiCNH67O5x {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tiCNH67O5x .mbr-text {
  text-align: center;
  color: #100f0f;
}
.cid-tiCNH67O5x .mbr-section-subtitle {
  text-align: center;
  color: #100f0f;
}
.cid-tiCNH67O5x .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-tiCNH5qyvW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tiCNH5qyvW .mbr-text {
  text-align: center;
  color: #100f0f;
}
.cid-tiCNH5qyvW .mbr-section-subtitle {
  text-align: center;
  color: #100f0f;
}
.cid-tiCNH5qyvW .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-tiCNH6EAb6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tiCNH6EAb6 [class^="socicon-"]:before,
.cid-tiCNH6EAb6 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tiCNH6EAb6 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ff0800;
  border-width: 2px;
  transition: all .3s;
  border-color: #ff0800;
}
.cid-tiCNH6EAb6 .btn-social:hover {
  background: #ff0800;
}
.cid-tiCNH6EAb6 .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-tiCNH6EAb6 .mbr-section-title,
.cid-tiCNH6EAb6 .mbr-social-likes {
  color: #000000;
}
.cid-tiCNH7hcoT {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tiCNH7hcoT .mbr-section-title {
  color: #ff0800;
}
.cid-tiCNH7hcoT .mbr-section-subtitle {
  color: #100f0f;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tRU7LY7e0r {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-tRU7LY7e0r .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRU7LY7e0r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tRU7LY7e0r .row {
    flex-direction: column-reverse;
  }
  .cid-tRU7LY7e0r .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-tRU7LY7e0r .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tRU7LY7e0r .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tRU7LY7e0r .media-content,
.cid-tRU7LY7e0r .mbr-figure {
  align-self: center;
}
.cid-tRU7LY7e0r .mbr-figure iframe {
  width: 100%;
}
.cid-tRU7LY7e0r .mbr-section-title {
  color: #ffffff;
}
.cid-tRU7LY7e0r .mbr-text,
.cid-tRU7LY7e0r .mbr-section-btn {
  color: #ffffff;
}
.cid-tthtkc5SaY {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tthtkc5SaY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tthtkc5SaY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tthtkc5SaY .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-tthtkc5SaY .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-tthtkc5SaY .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tthtkc5SaY .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-tthtkc5SaY .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tthtkc5SaY .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tthtkc5SaY .mbr-section-head {
  width: 100%;
}
.cid-tthtkc5SaY .mbr-section-title {
  color: #ff0800;
}
@media (max-width: 767px) {
  .cid-tthtkc5SaY .mbr-section-title {
    text-align: center;
  }
}
.cid-tthtkc5SaY .mbr-section-subtitle {
  color: #100f0f;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tthtkc5SaY .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-tthtkc5SaY .card-row {
  align-items: stretch;
}
.cid-tthtkc5SaY .item {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tthtkc5SaY .item {
    margin-top: 30px;
  }
}
.cid-tthtkc5SaY .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #232323, #353535);
}
@media (max-width: 575px) {
  .cid-tthtkc5SaY .item-wrapper {
    padding: 20px;
  }
}
.cid-tthtkc5SaY .item-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tthtkc5SaY .item-wrapper:hover .item-img img {
  transform: scale(1.1);
}
.cid-tthtkc5SaY .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  background: linear-gradient(to right bottom, #100f0f, #e43f3f);
  opacity: 0;
  transition: .4s all;
}
.cid-tthtkc5SaY .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-tthtkc5SaY .item-img img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-tthtkc5SaY .card-box {
  position: relative;
  z-index: 5;
  padding-top: 18px;
}
.cid-tthtkc5SaY .card-title {
  position: relative;
  z-index: 5;
  color: #ff0800;
  margin-bottom: 15px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tthtkc5SaY .card-title {
    margin-bottom: 10px;
  }
}
.cid-tthtkc5SaY .card-text {
  position: relative;
  z-index: 5;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-tthtkc5SaY .card-text a {
  transition: .4s all;
}
.cid-tthtkc5SaY .card-text a:hover {
  color: #ff0800 !important;
}
.cid-swmxyWBLW7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-swmxyWBLW7 img,
.cid-swmxyWBLW7 .item-img {
  width: 100%;
}
.cid-swmxyWBLW7 .item:focus,
.cid-swmxyWBLW7 span:focus {
  outline: none;
}
.cid-swmxyWBLW7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-swmxyWBLW7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-swmxyWBLW7 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-swmxyWBLW7 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-swmxyWBLW7 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-swmxyWBLW7 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-swmxyWBLW7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-swmxyWBLW7 .mbr-section-title {
  color: #ff0800;
}
.cid-swmxyWBLW7 .mbr-text,
.cid-swmxyWBLW7 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-swmxyWBLW7 .item-title {
  text-align: center;
  color: #ff0800;
}
.cid-swmxyWBLW7 .item-subtitle {
  text-align: left;
}
.cid-swmxyWBLW7 .mbr-section-subtitle {
  color: #100f0f;
}
.cid-swmLXDjpIg {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-swmLXDjpIg img,
.cid-swmLXDjpIg .item-img {
  width: 100%;
}
.cid-swmLXDjpIg .item:focus,
.cid-swmLXDjpIg span:focus {
  outline: none;
}
.cid-swmLXDjpIg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-swmLXDjpIg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-swmLXDjpIg .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-swmLXDjpIg .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-swmLXDjpIg .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-swmLXDjpIg .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-swmLXDjpIg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-swmLXDjpIg .mbr-section-title {
  color: #232323;
}
.cid-swmLXDjpIg .mbr-text,
.cid-swmLXDjpIg .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-swmLXDjpIg .item-title {
  text-align: center;
  color: #ff0800;
}
.cid-swmLXDjpIg .item-subtitle {
  text-align: left;
}
.cid-sob3mKCOSa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #100f0f;
}
.cid-sob3mKCOSa [class^="socicon-"]:before,
.cid-sob3mKCOSa [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sob3mKCOSa .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffffff;
  border-width: 2px;
  transition: all .3s;
  border-color: #ffffff;
}
.cid-sob3mKCOSa .btn-social:hover {
  background: #ffffff;
}
.cid-sob3mKCOSa .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-sob3mKCOSa .mbr-section-title,
.cid-sob3mKCOSa .mbr-social-likes {
  color: #ff0800;
}
.cid-sml5nDeg6w {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #100f0f;
}
.cid-sml5nDeg6w .mbr-section-title {
  color: #ff0800;
}
.cid-sml5nDeg6w .mbr-text,
.cid-sml5nDeg6w .mbr-section-btn {
  color: #ffffff;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tWNn5lgw3J {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-tWNn5lgw3J .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWNn5lgw3J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tWNn5lgw3J .row {
    flex-direction: column-reverse;
  }
  .cid-tWNn5lgw3J .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-tWNn5lgw3J .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tWNn5lgw3J .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tWNn5lgw3J .media-content,
.cid-tWNn5lgw3J .mbr-figure {
  align-self: center;
}
.cid-tWNn5lgw3J .mbr-figure iframe {
  width: 100%;
}
.cid-tWNn5lgw3J .mbr-section-title {
  color: #ffffff;
}
.cid-tWNn5lgw3J .mbr-text,
.cid-tWNn5lgw3J .mbr-section-btn {
  color: #ff0800;
}
.cid-tR9GzUuaYh {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tR9GzUuaYh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tR9GzUuaYh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tR9GzUuaYh .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tR9GzUuaYh .container {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .cid-tR9GzUuaYh .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tR9GzUuaYh .container {
    max-width: 540px;
  }
}
.cid-tR9GzUuaYh .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tR9GzUuaYh .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tR9GzUuaYh .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tR9GzUuaYh .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tR9GzUuaYh .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tR9GzUuaYh .mbr-section-title {
  color: #ff0800;
}
.cid-tR9GzUuaYh .mbr-section-subtitle {
  color: #100f0f;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .cid-tR9GzUuaYh .mbr-section-subtitle {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
  }
}
.cid-tR9GzUuaYh .card-row {
  align-items: stretch;
}
.cid-tR9GzUuaYh .card {
  margin-top: 30px;
}
.cid-tR9GzUuaYh .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #161616, #23272b);
}
.cid-tR9GzUuaYh .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tR9GzUuaYh .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tR9GzUuaYh .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tR9GzUuaYh .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tR9GzUuaYh .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tR9GzUuaYh .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tR9GzUuaYh .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-tR9GzUuaYh .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ffffff;
}
.cid-tR9GzUuaYh .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-tR9GzUuaYh .card-text {
  color: #ffffff;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tR9GzUuaYh .card-title,
.cid-tR9GzUuaYh .iconfont-wrapper {
  color: #0684ff;
}
.cid-tRaOMe9BWS {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tRaOMe9BWS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRaOMe9BWS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRaOMe9BWS .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tRaOMe9BWS .container {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .cid-tRaOMe9BWS .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tRaOMe9BWS .container {
    max-width: 540px;
  }
}
.cid-tRaOMe9BWS .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tRaOMe9BWS .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tRaOMe9BWS .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tRaOMe9BWS .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tRaOMe9BWS .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tRaOMe9BWS .mbr-section-title {
  color: #0684ff;
}
.cid-tRaOMe9BWS .mbr-section-subtitle {
  color: #ffffff;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .cid-tRaOMe9BWS .mbr-section-subtitle {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
  }
}
.cid-tRaOMe9BWS .card-row {
  align-items: stretch;
}
.cid-tRaOMe9BWS .card {
  margin-top: 30px;
}
.cid-tRaOMe9BWS .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #161616, #23272b);
}
.cid-tRaOMe9BWS .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tRaOMe9BWS .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tRaOMe9BWS .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tRaOMe9BWS .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tRaOMe9BWS .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tRaOMe9BWS .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tRaOMe9BWS .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-tRaOMe9BWS .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ffffff;
}
.cid-tRaOMe9BWS .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-tRaOMe9BWS .card-text {
  color: #ffffff;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tRaOMe9BWS .card-title,
.cid-tRaOMe9BWS .iconfont-wrapper {
  color: #ff0800;
}
.cid-tZnD819ENo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZnD819ENo .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tZnD819ENo .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tZnD819ENo .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff0800;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tZnD819ENo .mbr-section-title {
  color: #100f0f;
}
.cid-tZnD819ENo .mbr-text {
  color: #161616;
}
.cid-tQy5AAIi10 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tQy5AAIi10 [class^="socicon-"]:before,
.cid-tQy5AAIi10 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tQy5AAIi10 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ff0800;
  border-width: 2px;
  transition: all .3s;
  border-color: #ff0800;
}
.cid-tQy5AAIi10 .btn-social:hover {
  background: #ff0800;
}
.cid-tQy5AAIi10 .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-tQy5AAIi10 .mbr-section-title,
.cid-tQy5AAIi10 .mbr-social-likes {
  color: #000000;
}
.cid-tVM8DjN1uj {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tVM8DjN1uj .mbr-section-title {
  color: #ff0800;
}
.cid-tVM8DjN1uj .mbr-section-subtitle {
  color: #100f0f;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-sFuT4jz4ZJ {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-sFuT4jz4ZJ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sFuT4jz4ZJ .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sFuT4jz4ZJ .mbr-section-title {
  color: #ffffff;
}
.cid-sFuT4jz4ZJ .mbr-text,
.cid-sFuT4jz4ZJ .mbr-section-btn {
  color: #ff0800;
}
.cid-srUTb21FH0 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-srUTb21FH0 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-srUTb21FH0 .mbr-section-title {
  color: #ff0800;
  text-align: center;
}
.cid-srUTb21FH0 .mbr-section-subtitle {
  text-align: center;
  color: #161616;
}
.cid-srXc4pH3EH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-srXc4pH3EH ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-srXc4pH3EH li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-srXc4pH3EH ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0800;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-srXc4pH3EH H3 {
  color: #ff0800;
  text-align: center;
}
.cid-srXc4pH3EH .list {
  color: #000000;
}
.cid-srXebNgEbM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-srXebNgEbM ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-srXebNgEbM li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-srXebNgEbM ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0800;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-srXebNgEbM H3 {
  color: #ff0800;
  text-align: center;
}
.cid-srXebNgEbM .list {
  color: #000000;
}
.cid-srUWRZYxdJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-srUWRZYxdJ [class^="socicon-"]:before,
.cid-srUWRZYxdJ [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-srUWRZYxdJ .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-srUWRZYxdJ .btn-social:hover {
  background: #161616;
}
.cid-srUWRZYxdJ .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-srUWRZYxdJ .mbr-section-title,
.cid-srUWRZYxdJ .mbr-social-likes {
  color: #ff0800;
}
.cid-sInziXe0kH {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sInziXe0kH .mbr-section-title {
  color: #ff0800;
}
.cid-sInziXe0kH .mbr-text,
.cid-sInziXe0kH .mbr-section-btn {
  color: #100f0f;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-sFs2guZqFe {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-sFs2guZqFe .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sFs2guZqFe .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sFs2guZqFe .mbr-section-title {
  color: #ffffff;
}
.cid-sFs2guZqFe .mbr-text,
.cid-sFs2guZqFe .mbr-section-btn {
  color: #ffffff;
}
.cid-sEDrv12Bdv {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sEDrv12Bdv .mbr-section-title {
  color: #ff0800;
}
.cid-sEDrv12Bdv .mbr-section-subtitle {
  color: #000000;
}
.cid-sVm98b3SFl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sVm98b3SFl .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-sVm98b3SFl .mbr-section-subtitle {
  text-align: center;
  color: #161616;
}
.cid-sVm98b3SFl .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-sBvYcRXlVq {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-sBvYcRXlVq .container {
  padding: 0 3rem;
}
.cid-sBvYcRXlVq .star1 .star-1 {
  fill: #ffffff;
}
.cid-sBvYcRXlVq .star1 .star-2,
.cid-sBvYcRXlVq .star1 .star-3,
.cid-sBvYcRXlVq .star1 .star-4,
.cid-sBvYcRXlVq .star1 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-sBvYcRXlVq .star2 .star-1,
.cid-sBvYcRXlVq .star2 .star-2 {
  fill: #ffffff;
}
.cid-sBvYcRXlVq .star2 .star-3,
.cid-sBvYcRXlVq .star2 .star-4,
.cid-sBvYcRXlVq .star2 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-sBvYcRXlVq .star3 .star-1,
.cid-sBvYcRXlVq .star3 .star-2,
.cid-sBvYcRXlVq .star3 .star-3 {
  fill: #ffffff;
}
.cid-sBvYcRXlVq .star3 .star-4,
.cid-sBvYcRXlVq .star3 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-sBvYcRXlVq .star4 .star-1,
.cid-sBvYcRXlVq .star4 .star-2,
.cid-sBvYcRXlVq .star4 .star-3,
.cid-sBvYcRXlVq .star4 .star-4 {
  fill: #ffffff;
}
.cid-sBvYcRXlVq .star4 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-sBvYcRXlVq .star5 .star-1,
.cid-sBvYcRXlVq .star5 .star-2,
.cid-sBvYcRXlVq .star5 .star-3,
.cid-sBvYcRXlVq .star5 .star-4,
.cid-sBvYcRXlVq .star5 .star-5 {
  fill: #ffffff;
}
.cid-sBvYcRXlVq .mbr-section-btn {
  margin-top: 1rem;
}
.cid-sBvYcRXlVq .mbr-section-btn .btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-sBvYcRXlVq .table-heading {
  width: 100%;
  display: block;
}
.cid-sBvYcRXlVq .table-wrapper {
  border: 1px solid #282828;
  padding: 2rem 1rem;
  background-color: #353535;
  transition: 0.3s ease-out all;
}
.cid-sBvYcRXlVq .table-wrapper:hover {
  transition: margin .5s;
  margin-top: -5px;
  background-color: #232323;
  border: 1px solid #161616;
}
.cid-sBvYcRXlVq .table-wrapper:hover .pricing-value,
.cid-sBvYcRXlVq .table-wrapper:hover .stars,
.cid-sBvYcRXlVq .table-wrapper:hover .mbr-list,
.cid-sBvYcRXlVq .table-wrapper:hover .table-heading {
  color: #ffffff !important;
}
.cid-sBvYcRXlVq .stars {
  margin: 1rem 0;
}
.cid-sBvYcRXlVq ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem 0;
}
.cid-sBvYcRXlVq li {
  margin: 1rem 0;
}
.cid-sBvYcRXlVq .left-bottom {
  border-radius: 15px 0 0 15px;
}
.cid-sBvYcRXlVq .right-bottom {
  border-radius: 0 15px 15px 0;
}
.cid-sBvYcRXlVq .all-border {
  border-radius: 15px 15px 15px 15px;
}
@media (max-width: 767px) {
  .cid-sBvYcRXlVq .container {
    padding: 0 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sBvYcRXlVq .table-wrapper {
    border-radius: 15px !important;
    margin: 1em 1em;
  }
}
.cid-sBvYcRXlVq .pricing-value,
.cid-sBvYcRXlVq .mbr-section-btn {
  color: #ff0800;
}
.cid-sBvYcRXlVq .table-heading,
.cid-sBvYcRXlVq .stars {
  color: #ff0800;
}
.cid-suO3Wz6dDH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-suO3Wz6dDH [class^="socicon-"]:before,
.cid-suO3Wz6dDH [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-suO3Wz6dDH .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-suO3Wz6dDH .btn-social:hover {
  background: #161616;
}
.cid-suO3Wz6dDH .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-suO3Wz6dDH .mbr-section-title,
.cid-suO3Wz6dDH .mbr-social-likes {
  color: #ff0800;
}
.cid-sInyRyuHhx {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sInyRyuHhx .mbr-section-title {
  color: #ff0800;
}
.cid-sInyRyuHhx .mbr-text,
.cid-sInyRyuHhx .mbr-section-btn {
  color: #100f0f;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-sHAlHMBhxu {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-sHAlHMBhxu .mbr-text,
.cid-sHAlHMBhxu .mbr-section-btn {
  color: #ffffff;
}
.cid-sHAlHMBhxu .mbr-section-subtitle {
  color: #ff0800;
}
.cid-sHAlHMBhxu .mbr-section-title {
  color: #ffffff;
}
.cid-sMgHDZx0p8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sMgHDZx0p8 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sMgHDZx0p8 .mbr-section-title {
  color: #ff0800;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-sFyTbCXdma {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-sFyTbCXdma .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sFyTbCXdma .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sFyTbCXdma .mbr-section-title {
  color: #ffffff;
}
.cid-sFyTbCXdma .mbr-text,
.cid-sFyTbCXdma .mbr-section-btn {
  color: #ffffff;
}
.cid-sHEyD7pglD {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sHEyD7pglD .mbr-text {
  color: #c1c1c1;
}
.cid-sHEyD7pglD .mbr-text,
.cid-sHEyD7pglD .mbr-section-btn {
  text-align: center;
  color: #161616;
}
.cid-sHEyD7pglD H3 {
  text-align: center;
  color: #ff0800;
}
.cid-sHEtzX2D3b {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-sHEtzX2D3b .container {
  padding: 0 3rem;
}
.cid-sHEtzX2D3b .star1 .star-1 {
  fill: #ffffff;
}
.cid-sHEtzX2D3b .star1 .star-2,
.cid-sHEtzX2D3b .star1 .star-3,
.cid-sHEtzX2D3b .star1 .star-4,
.cid-sHEtzX2D3b .star1 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-sHEtzX2D3b .star2 .star-1,
.cid-sHEtzX2D3b .star2 .star-2 {
  fill: #ffffff;
}
.cid-sHEtzX2D3b .star2 .star-3,
.cid-sHEtzX2D3b .star2 .star-4,
.cid-sHEtzX2D3b .star2 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-sHEtzX2D3b .star3 .star-1,
.cid-sHEtzX2D3b .star3 .star-2,
.cid-sHEtzX2D3b .star3 .star-3 {
  fill: #ffffff;
}
.cid-sHEtzX2D3b .star3 .star-4,
.cid-sHEtzX2D3b .star3 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-sHEtzX2D3b .star4 .star-1,
.cid-sHEtzX2D3b .star4 .star-2,
.cid-sHEtzX2D3b .star4 .star-3,
.cid-sHEtzX2D3b .star4 .star-4 {
  fill: #ffffff;
}
.cid-sHEtzX2D3b .star4 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-sHEtzX2D3b .star5 .star-1,
.cid-sHEtzX2D3b .star5 .star-2,
.cid-sHEtzX2D3b .star5 .star-3,
.cid-sHEtzX2D3b .star5 .star-4,
.cid-sHEtzX2D3b .star5 .star-5 {
  fill: #ffffff;
}
.cid-sHEtzX2D3b .mbr-section-btn {
  margin-top: 1rem;
}
.cid-sHEtzX2D3b .mbr-section-btn .btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-sHEtzX2D3b .table-heading {
  width: 100%;
  display: block;
}
.cid-sHEtzX2D3b .table-wrapper {
  border: 1px solid #2f2f2f;
  padding: 2rem 1rem;
  background-color: #3c3c3c;
  transition: 0.3s ease-out all;
}
.cid-sHEtzX2D3b .table-wrapper:hover {
  transition: margin .5s;
  margin-top: -5px;
  background-color: #232323;
  border: 1px solid #161616;
}
.cid-sHEtzX2D3b .table-wrapper:hover .pricing-value,
.cid-sHEtzX2D3b .table-wrapper:hover .stars,
.cid-sHEtzX2D3b .table-wrapper:hover .mbr-list,
.cid-sHEtzX2D3b .table-wrapper:hover .table-heading {
  color: #ffffff !important;
}
.cid-sHEtzX2D3b .stars {
  margin: 1rem 0;
}
.cid-sHEtzX2D3b ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem 0;
}
.cid-sHEtzX2D3b li {
  margin: 1rem 0;
}
.cid-sHEtzX2D3b .left-bottom {
  border-radius: 15px 0 0 15px;
}
.cid-sHEtzX2D3b .right-bottom {
  border-radius: 0 15px 15px 0;
}
.cid-sHEtzX2D3b .all-border {
  border-radius: 15px 15px 15px 15px;
}
@media (max-width: 767px) {
  .cid-sHEtzX2D3b .container {
    padding: 0 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sHEtzX2D3b .table-wrapper {
    border-radius: 15px !important;
    margin: 1em 1em;
  }
}
.cid-sHEtzX2D3b .pricing-value,
.cid-sHEtzX2D3b .mbr-section-btn {
  color: #ff0800;
}
.cid-sHEtzX2D3b .table-heading,
.cid-sHEtzX2D3b .stars {
  color: #ff0800;
}
.cid-srZ52mprJM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-srZ52mprJM [class^="socicon-"]:before,
.cid-srZ52mprJM [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-srZ52mprJM .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-srZ52mprJM .btn-social:hover {
  background: #161616;
}
.cid-srZ52mprJM .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-srZ52mprJM .mbr-section-title,
.cid-srZ52mprJM .mbr-social-likes {
  color: #ff0800;
}
.cid-ssE9zHN9QQ {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ssE9zHN9QQ .mbr-section-title {
  color: #ff0800;
}
.cid-ssE9zHN9QQ .mbr-text,
.cid-ssE9zHN9QQ .mbr-section-btn {
  color: #000000;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-sUyeemnTj3 {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-sUyeemnTj3 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sUyeemnTj3 .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-sUyeemnTj3 .mbr-section-title {
  color: #ffffff;
}
.cid-sUyeemnTj3 .mbr-text,
.cid-sUyeemnTj3 .mbr-section-btn {
  color: #ffffff;
}
.cid-sIIwYkL3R8 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sIIwYkL3R8 .mbr-text {
  text-align: center;
  color: #353535;
}
.cid-sIIwYkL3R8 .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-sIIwYkL3R8 .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-sIov1XRFXM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIov1XRFXM .mbr-text {
  text-align: center;
  color: #100f0f;
}
.cid-sIov1XRFXM .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-sIov1XRFXM .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-su9mX8u5hh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-su9mX8u5hh .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-su9mX8u5hh .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-su9mX8u5hh .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0800;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-su9mX8u5hh .mbr-text UL {
  text-align: left;
}
.cid-su9mX8u5hh .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-su9mX8u5hh .mbr-text {
  color: #000000;
}
.cid-sh6i0rNwks {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sh6i0rNwks [class^="socicon-"]:before,
.cid-sh6i0rNwks [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sh6i0rNwks .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-sh6i0rNwks .btn-social:hover {
  background: #161616;
}
.cid-sh6i0rNwks .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sh6i0rNwks .mbr-section-title,
.cid-sh6i0rNwks .mbr-social-likes {
  color: #ff0800;
}
.cid-sIovDwVW6Y {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sIovDwVW6Y .mbr-section-title {
  color: #ff0800;
}
.cid-sIovDwVW6Y .mbr-text,
.cid-sIovDwVW6Y .mbr-section-btn {
  color: #000000;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tXw1pgk8jp {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-tXw1pgk8jp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXw1pgk8jp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tXw1pgk8jp .row {
    flex-direction: column-reverse;
  }
  .cid-tXw1pgk8jp .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-tXw1pgk8jp .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tXw1pgk8jp .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tXw1pgk8jp .media-content,
.cid-tXw1pgk8jp .mbr-figure {
  align-self: center;
}
.cid-tXw1pgk8jp .mbr-figure iframe {
  width: 100%;
}
.cid-tXw1pgk8jp .mbr-section-title {
  color: #ffffff;
}
.cid-tXw1pgk8jp .mbr-text,
.cid-tXw1pgk8jp .mbr-section-btn {
  color: #ffffff;
}
.cid-sInF0fdNwT {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sInF0fdNwT .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-sInF0fdNwT .mbr-section-subtitle {
  text-align: center;
  color: #100f0f;
}
.cid-sInF0fdNwT .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-tRAa0q8V1A {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tRAa0q8V1A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRAa0q8V1A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRAa0q8V1A .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tRAa0q8V1A .container {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .cid-tRAa0q8V1A .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tRAa0q8V1A .container {
    max-width: 540px;
  }
}
.cid-tRAa0q8V1A .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tRAa0q8V1A .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tRAa0q8V1A .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tRAa0q8V1A .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tRAa0q8V1A .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tRAa0q8V1A .mbr-section-title {
  color: #ff0800;
}
.cid-tRAa0q8V1A .mbr-section-subtitle {
  color: #161616;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .cid-tRAa0q8V1A .mbr-section-subtitle {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
  }
}
.cid-tRAa0q8V1A .card-row {
  align-items: stretch;
}
.cid-tRAa0q8V1A .card {
  margin-top: 30px;
}
.cid-tRAa0q8V1A .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #161616, #23272b);
}
.cid-tRAa0q8V1A .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tRAa0q8V1A .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tRAa0q8V1A .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tRAa0q8V1A .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tRAa0q8V1A .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tRAa0q8V1A .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tRAa0q8V1A .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-tRAa0q8V1A .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ffffff;
}
.cid-tRAa0q8V1A .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-tRAa0q8V1A .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tRAa0q8V1A .card-title,
.cid-tRAa0q8V1A .iconfont-wrapper {
  color: #0684ff;
}
.cid-tRAaYfeH75 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tRAaYfeH75 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRAaYfeH75 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRAaYfeH75 .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tRAaYfeH75 .container {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .cid-tRAaYfeH75 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tRAaYfeH75 .container {
    max-width: 540px;
  }
}
.cid-tRAaYfeH75 .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tRAaYfeH75 .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tRAaYfeH75 .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tRAaYfeH75 .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tRAaYfeH75 .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tRAaYfeH75 .mbr-section-title {
  color: #ff0800;
}
.cid-tRAaYfeH75 .mbr-section-subtitle {
  color: #ffffff;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .cid-tRAaYfeH75 .mbr-section-subtitle {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
  }
}
.cid-tRAaYfeH75 .card-row {
  align-items: stretch;
}
.cid-tRAaYfeH75 .card {
  margin-top: 30px;
}
.cid-tRAaYfeH75 .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #161616, #23272b);
}
.cid-tRAaYfeH75 .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tRAaYfeH75 .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tRAaYfeH75 .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tRAaYfeH75 .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tRAaYfeH75 .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tRAaYfeH75 .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tRAaYfeH75 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-tRAaYfeH75 .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ffffff;
}
.cid-tRAaYfeH75 .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-tRAaYfeH75 .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tRAaYfeH75 .card-title,
.cid-tRAaYfeH75 .iconfont-wrapper {
  color: #0684ff;
}
.cid-sh69HKmcWF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sh69HKmcWF [class^="socicon-"]:before,
.cid-sh69HKmcWF [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sh69HKmcWF .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-sh69HKmcWF .btn-social:hover {
  background: #161616;
}
.cid-sh69HKmcWF .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sh69HKmcWF .mbr-section-title,
.cid-sh69HKmcWF .mbr-social-likes {
  color: #ff0800;
}
.cid-srZ5su3qXg {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-srZ5su3qXg .mbr-section-title {
  color: #ff0800;
}
.cid-srZ5su3qXg .mbr-text,
.cid-srZ5su3qXg .mbr-section-btn {
  color: #100f0f;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-scALLvM0UJ {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/aws-aruba-frequently-asked-questions-faq-new.webp");
}
.cid-scALLvM0UJ .mbr-text,
.cid-scALLvM0UJ .mbr-section-btn {
  color: #ffffff;
}
.cid-scALLvM0UJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-scALLvM0UJ .mbr-section-title {
  color: #ffffff;
}
.cid-sUCCyUMbtv {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sUCCyUMbtv .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ff0800;
  margin-left: 1rem;
}
.cid-sUCCyUMbtv .panel-group {
  border: none;
}
.cid-sUCCyUMbtv .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sUCCyUMbtv .panel-body,
.cid-sUCCyUMbtv .card-header {
  padding: 1rem 0;
}
.cid-sUCCyUMbtv .panel-title-edit {
  color: #ff0800;
}
.cid-sUCCyUMbtv .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sUCCyUMbtv H3 {
  color: #ffffff;
}
.cid-sUCCyUMbtv H4 {
  color: #100f0f;
}
.cid-sUCCyUMbtv .panel-text {
  color: #000000;
}
.cid-sWqxNKpCM5 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sWqxNKpCM5 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ff0800;
  margin-left: 1rem;
}
.cid-sWqxNKpCM5 .panel-group {
  border: none;
}
.cid-sWqxNKpCM5 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sWqxNKpCM5 .panel-body,
.cid-sWqxNKpCM5 .card-header {
  padding: 1rem 0;
}
.cid-sWqxNKpCM5 .panel-title-edit {
  color: #ff0800;
}
.cid-sWqxNKpCM5 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sWqxNKpCM5 H3 {
  color: #ff0800;
}
.cid-sWqxNKpCM5 .panel-text {
  color: #100f0f;
}
.cid-sWqxNKpCM5 H4 {
  color: #ffffff;
}
.cid-sh6e3DBSnr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #100f0f;
}
.cid-sh6e3DBSnr [class^="socicon-"]:before,
.cid-sh6e3DBSnr [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sh6e3DBSnr .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffffff;
  border-width: 2px;
  transition: all .3s;
  border-color: #ffffff;
}
.cid-sh6e3DBSnr .btn-social:hover {
  background: #ffffff;
}
.cid-sh6e3DBSnr .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-sh6e3DBSnr .mbr-section-title,
.cid-sh6e3DBSnr .mbr-social-likes {
  color: #ff0800;
}
.cid-scBh6HJZ12 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #100f0f;
}
.cid-scBh6HJZ12 .mbr-section-title {
  color: #ff0800;
}
.cid-scBh6HJZ12 .mbr-text,
.cid-scBh6HJZ12 .mbr-section-btn {
  color: #ffffff;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tRnfpZck6z {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/amazing-web-solutions-aruba-computer-services-1440x900.webp");
}
.cid-tRnfpZck6z .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tRnfpZck6z .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-tRnfpZck6z .mbr-section-title {
  color: #ff0800;
}
.cid-tRnfpZck6z .mbr-text,
.cid-tRnfpZck6z .mbr-section-btn {
  color: #ffffff;
}
.cid-tRnfpZAWhU {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tRnfpZAWhU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRnfpZAWhU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRnfpZAWhU .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tRnfpZAWhU .container {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .cid-tRnfpZAWhU .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tRnfpZAWhU .container {
    max-width: 540px;
  }
}
.cid-tRnfpZAWhU .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tRnfpZAWhU .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tRnfpZAWhU .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tRnfpZAWhU .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tRnfpZAWhU .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tRnfpZAWhU .mbr-section-title {
  color: #ff0800;
}
.cid-tRnfpZAWhU .mbr-section-subtitle {
  color: #161616;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tRnfpZAWhU .mbr-section-subtitle {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
  }
}
.cid-tRnfpZAWhU .card-row {
  align-items: stretch;
}
.cid-tRnfpZAWhU .card {
  margin-top: 30px;
}
.cid-tRnfpZAWhU .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #161616, #23272b);
}
.cid-tRnfpZAWhU .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tRnfpZAWhU .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tRnfpZAWhU .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tRnfpZAWhU .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tRnfpZAWhU .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tRnfpZAWhU .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tRnfpZAWhU .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-tRnfpZAWhU .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ffffff;
}
.cid-tRnfpZAWhU .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-tRnfpZAWhU .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tRnfpZAWhU .card-title,
.cid-tRnfpZAWhU .iconfont-wrapper {
  color: #ff0800;
}
.cid-tRnfq09nlP {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tRnfq09nlP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRnfq09nlP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRnfq09nlP .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tRnfq09nlP .container {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .cid-tRnfq09nlP .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tRnfq09nlP .container {
    max-width: 540px;
  }
}
.cid-tRnfq09nlP .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tRnfq09nlP .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-tRnfq09nlP .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tRnfq09nlP .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tRnfq09nlP .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tRnfq09nlP .mbr-section-title {
  color: #0684ff;
}
.cid-tRnfq09nlP .mbr-section-subtitle {
  color: #ffffff;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .cid-tRnfq09nlP .mbr-section-subtitle {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
  }
}
.cid-tRnfq09nlP .card-row {
  align-items: stretch;
}
.cid-tRnfq09nlP .card {
  margin-top: 30px;
}
.cid-tRnfq09nlP .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #161616, #23272b);
}
.cid-tRnfq09nlP .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tRnfq09nlP .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tRnfq09nlP .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tRnfq09nlP .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tRnfq09nlP .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tRnfq09nlP .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tRnfq09nlP .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-tRnfq09nlP .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ffffff;
}
.cid-tRnfq09nlP .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-tRnfq09nlP .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tRnfq09nlP .card-title,
.cid-tRnfq09nlP .iconfont-wrapper {
  color: #ff0800;
}
.cid-tRnfq0HFRn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tRnfq0HFRn [class^="socicon-"]:before,
.cid-tRnfq0HFRn [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tRnfq0HFRn .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #100f0f;
  border-width: 2px;
  transition: all .3s;
  border-color: #100f0f;
}
.cid-tRnfq0HFRn .btn-social:hover {
  background: #100f0f;
}
.cid-tRnfq0HFRn .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-tRnfq0HFRn .mbr-section-title,
.cid-tRnfq0HFRn .mbr-social-likes {
  color: #ff0800;
}
.cid-tRnfq156bA {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tRnfq156bA .mbr-section-title {
  color: #ff0800;
}
.cid-tRnfq156bA .mbr-text,
.cid-tRnfq156bA .mbr-section-btn {
  color: #000000;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tVMaSnhsAf {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-tVMaSnhsAf .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tVMaSnhsAf .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-tVMaSnhsAf .mbr-section-title {
  color: #ffffff;
}
.cid-tVMaSnhsAf .mbr-text,
.cid-tVMaSnhsAf .mbr-section-btn {
  color: #ff0800;
}
.cid-tVMbfjIw9c {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  background-color: #100f0f;
}
.cid-tVMbfjIw9c:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 57.14vw;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .1;
  background-image: linear-gradient(180deg, #ffffff 0, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 1399px) {
  .cid-tVMbfjIw9c:before {
    width: 100%;
    border-radius: 240px;
  }
}
.cid-tVMbfjIw9c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMbfjIw9c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVMbfjIw9c .row {
  position: relative;
  z-index: 2;
}
.cid-tVMbfjIw9c .mbr-section-head {
  width: 100%;
  margin-bottom: 44px;
}
@media (max-width: 1399px) {
  .cid-tVMbfjIw9c .mbr-section-head {
    margin-bottom: 3.14vw;
  }
}
@media (max-width: 767px) {
  .cid-tVMbfjIw9c .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-tVMbfjIw9c .mbr-section-title {
  color: #ff0800;
  margin-bottom: 0;
}
.cid-tVMbfjIw9c .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 28px;
}
@media (max-width: 1399px) {
  .cid-tVMbfjIw9c .mbr-section-subtitle {
    margin-top: 2vw;
  }
}
@media (max-width: 767px) {
  .cid-tVMbfjIw9c .mbr-section-subtitle {
    margin-top: 20px;
  }
}
.cid-tVMbfjIw9c .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-tVMbfjIw9c form {
  width: 100%;
}
.cid-tVMbfjIw9c form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
  z-index: 2;
}
.cid-tVMbfjIw9c form p {
  color: #FFFFFF;
}
.cid-tVMbfjIw9c form .mbr-section-btn {
  margin-top: 15px;
  margin-right: auto;
  margin-left: auto;
  width: auto !important;
}
.cid-tVMbfjIw9c form .mbr-section-btn .btn {
  width: auto !important;
}
.cid-tVMbfjIw9c form .mbr-section-btn .btn-white-outline {
  position: relative;
  padding: 15px;
  min-width: 10.57vw;
  aspect-ratio: 1;
  border-radius: 50%;
  transition: all 0.8s cubic-bezier(0.77, 0.2, 0.05, 1);
  border: none;
}
@media (max-width: 991px) {
  .cid-tVMbfjIw9c form .mbr-section-btn .btn-white-outline {
    min-width: 148px;
    min-height: 148px;
  }
}
.cid-tVMbfjIw9c form .mbr-section-btn .btn-white-outline:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.8s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.cid-tVMbfjIw9c form .mbr-section-btn .btn-white-outline:hover:before {
  transform: translate(-50%, -50%) scale(0.8);
}
.cid-tVMbfjIw9c form .form-group {
  margin-top: 0 !important;
  margin-bottom: 30px !important;
}
@media (max-width: 767px) {
  .cid-tVMbfjIw9c form .form-group {
    margin-bottom: 25px !important;
  }
}
.cid-tVMbfjIw9c form .form-control {
  height: 69px;
  border: 2px solid #FFFFFF !important;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 35px !important;
  margin-bottom: 0;
  padding: 20px 25px;
  font-size: 20px;
  line-height: 1;
  color: #FFFFFF;
  font-weight: 400;
  transition: .3s;
}
.cid-tVMbfjIw9c form .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.cid-tVMbfjIw9c form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.cid-tVMbfjIw9c form .form-control:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.cid-tVMbfjIw9c form .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.cid-tVMbfjIw9c form select {
  color: rgba(255, 255, 255, 0.5) !important;
}
.cid-tVMbfjIw9c form textarea {
  height: 140px !important;
  min-height: 140px !important;
  padding: 20px 25px;
  resize: none;
}
.cid-tVMbfjIw9c form textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.cid-tVMbfjIw9c form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.cid-tVMbfjIw9c form textarea:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.cid-tVMbfjIw9c form textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.cid-tVMbfjIw9c form input,
.cid-tVMbfjIw9c form textarea {
  transition: .3s all;
}
.cid-tVMbfjIw9c form input:active,
.cid-tVMbfjIw9c form textarea:active,
.cid-tVMbfjIw9c form input:focus,
.cid-tVMbfjIw9c form textarea:focus {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
  outline: none !important;
}
.cid-tVMbfjIw9c form input:active::-webkit-input-placeholder,
.cid-tVMbfjIw9c form textarea:active::-webkit-input-placeholder,
.cid-tVMbfjIw9c form input:focus::-webkit-input-placeholder,
.cid-tVMbfjIw9c form textarea:focus::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.cid-tVMbfjIw9c form input:active::-moz-placeholder,
.cid-tVMbfjIw9c form textarea:active::-moz-placeholder,
.cid-tVMbfjIw9c form input:focus::-moz-placeholder,
.cid-tVMbfjIw9c form textarea:focus::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.cid-tVMbfjIw9c form input:active:-moz-placeholder,
.cid-tVMbfjIw9c form textarea:active:-moz-placeholder,
.cid-tVMbfjIw9c form input:focus:-moz-placeholder,
.cid-tVMbfjIw9c form textarea:focus:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.cid-tVMbfjIw9c form input:active:-ms-input-placeholder,
.cid-tVMbfjIw9c form textarea:active:-ms-input-placeholder,
.cid-tVMbfjIw9c form input:focus:-ms-input-placeholder,
.cid-tVMbfjIw9c form textarea:focus:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.cid-tVMbfjIw9c form .row {
  flex-wrap: wrap;
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.cid-tVMbfjIw9c form .row [class*=col] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.cid-tVMbfjIw9c form label {
  width: 100%;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.cid-tVMbfjIw9c form .form-check label {
  color: #FFFFFF;
}
.cid-tVMbfjIw9c form .form-check-input {
  border-color: rgba(255, 255, 255, 0.5) !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tVMbfjIw9c form .form-check-input:focus,
.cid-tVMbfjIw9c form .form-check-input:hover {
  background-color: #FFFFFF !important;
  border-color: #FFFFFF !important;
}
.cid-tVMbfjIw9c form .form-check-input:checked {
  border-color: #FFFFFF !important;
  background-color: transparent !important;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-ufCqyMSS9u {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-ufCqyMSS9u .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ufCqyMSS9u .image-wrap img {
    display: block;
    margin: auto;
    width: 20%;
  }
}
.cid-ufCqyMSS9u .mbr-section-title {
  color: #ffffff;
}
.cid-ufCqyMSS9u .mbr-text,
.cid-ufCqyMSS9u .mbr-section-btn {
  color: #ffffff;
}
.cid-ufCqF4Zafe {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ufCqF4Zafe .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufCqF4Zafe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufCqF4Zafe .mbr-section-title {
  color: #ff0800;
}
.cid-ufCqF4Zafe .mbr-section-subtitle {
  color: #161616;
}
.cid-ufCqUMBaUb {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ufCqUMBaUb [class^="socicon-"]:before,
.cid-ufCqUMBaUb [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-ufCqUMBaUb .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #100f0f;
  border-width: 2px;
  transition: all .3s;
  border-color: #100f0f;
}
.cid-ufCqUMBaUb .btn-social:hover {
  background: #100f0f;
}
.cid-ufCqUMBaUb .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-ufCqUMBaUb .mbr-section-title,
.cid-ufCqUMBaUb .mbr-social-likes {
  color: #ff0800;
}
.cid-uWn6IbXub6 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uWn6IbXub6 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uWn6IbXub6 .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-uWn6IbXub6 .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0800;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-uWn6IbXub6 .mbr-section-title {
  color: #ff0800;
  text-align: left;
}
.cid-uWn6IbXub6 .mbr-text {
  color: #100f0f;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-ufxwgZPbfD {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-ufxwgZPbfD .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ufxwgZPbfD .image-wrap img {
    display: block;
    margin: auto;
    width: 20%;
  }
}
.cid-ufxwgZPbfD .mbr-section-title {
  color: #ffffff;
}
.cid-ufxwgZPbfD .mbr-text,
.cid-ufxwgZPbfD .mbr-section-btn {
  color: #ffffff;
}
.cid-ufxJCdbAXW {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ufxJCdbAXW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufxJCdbAXW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufxJCdbAXW .mbr-section-title {
  color: #ff0800;
}
.cid-ufxJCdbAXW .mbr-section-subtitle {
  color: #100f0f;
}
.cid-ufCr3tc8Jg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ufCr3tc8Jg [class^="socicon-"]:before,
.cid-ufCr3tc8Jg [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-ufCr3tc8Jg .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #100f0f;
  border-width: 2px;
  transition: all .3s;
  border-color: #100f0f;
}
.cid-ufCr3tc8Jg .btn-social:hover {
  background: #100f0f;
}
.cid-ufCr3tc8Jg .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-ufCr3tc8Jg .mbr-section-title,
.cid-ufCr3tc8Jg .mbr-social-likes {
  color: #ff0800;
}
.cid-ufxJNJUjsz {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ufxJNJUjsz .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-ufxJNJUjsz .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-ufxJNJUjsz .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0800;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-ufxJNJUjsz .mbr-section-title {
  color: #ff0800;
  text-align: left;
}
.cid-ufxJNJUjsz .mbr-text {
  color: #100f0f;
}
.cid-uhrlDW1O6Z {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uhrlDW1O6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrlDW1O6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrlDW1O6Z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrlDW1O6Z .row {
    text-align: center;
  }
  .cid-uhrlDW1O6Z .row > div {
    margin: auto;
  }
  .cid-uhrlDW1O6Z .social-row {
    justify-content: center;
  }
}
.cid-uhrlDW1O6Z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhrlDW1O6Z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhrlDW1O6Z .list {
    margin-bottom: 0rem;
  }
}
.cid-uhrlDW1O6Z .mbr-text {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uhrlDW1O6Z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uhrlDW1O6Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uhrlDW1O6Z H5 {
  color: #ffffff;
}
.cid-uhrlDW1O6Z .mbr-section-subtitle {
  color: #ff0800;
}
.cid-umKc1gEFDl {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-umKc1gEFDl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-umKc1gEFDl .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umKc1gEFDl .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umKc1gEFDl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umKc1gEFDl .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-umKc1gEFDl .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-umKc1gEFDl .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-umKc1gEFDl .nav-link {
  width: fit-content;
  position: relative;
}
.cid-umKc1gEFDl .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-umKc1gEFDl .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-umKc1gEFDl .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-umKc1gEFDl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-umKc1gEFDl .nav-item:focus,
.cid-umKc1gEFDl .nav-link:focus {
  outline: none;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umKc1gEFDl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umKc1gEFDl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umKc1gEFDl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umKc1gEFDl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-umKc1gEFDl .navbar.opened {
  transition: all 0.3s;
}
.cid-umKc1gEFDl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umKc1gEFDl .navbar .navbar-logo img {
  width: auto;
}
.cid-umKc1gEFDl .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-umKc1gEFDl .navbar.collapsed {
  justify-content: center;
}
.cid-umKc1gEFDl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umKc1gEFDl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umKc1gEFDl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-umKc1gEFDl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umKc1gEFDl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umKc1gEFDl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-umKc1gEFDl .navbar {
    min-height: 72px;
  }
  .cid-umKc1gEFDl .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umKc1gEFDl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-umKc1gEFDl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umKc1gEFDl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-umKc1gEFDl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umKc1gEFDl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umKc1gEFDl .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-umKc1gEFDl .dropdown-item.active,
.cid-umKc1gEFDl .dropdown-item:active {
  background-color: transparent;
}
.cid-umKc1gEFDl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umKc1gEFDl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-umKc1gEFDl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-umKc1gEFDl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umKc1gEFDl .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .navbar-buttons {
    text-align: left;
  }
}
.cid-umKc1gEFDl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umKc1gEFDl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umKc1gEFDl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umKc1gEFDl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umKc1gEFDl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umKc1gEFDl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umKc1gEFDl .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umKc1gEFDl .navbar {
    height: 70px;
  }
  .cid-umKc1gEFDl .navbar.opened {
    height: auto;
  }
  .cid-umKc1gEFDl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-umKc1gEFDl .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-umKc1gEFDl .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-umKc1gEFDl .navbar-brand {
    margin-right: auto;
  }
  .cid-umKc1gEFDl .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-umKc1gEFDl .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-umKc1gEFDl .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-umKc1gEFDl .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-umKc1gEFDl .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-umKc1gEFDl .navbar-collapse {
    padding: 1rem;
  }
}
.cid-umi8H6Fnpp {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-umi8H6Fnpp .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-umi8H6Fnpp .image-wrap img {
    display: block;
    margin: auto;
    width: 30%;
  }
}
.cid-umi8H6Fnpp .mbr-section-title {
  color: #ffffff;
}
.cid-umi8H6Fnpp .mbr-text,
.cid-umi8H6Fnpp .mbr-section-btn {
  color: #ffffff;
}
.cid-umi8H75yHb {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-umi8H75yHb .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-umi8H75yHb .mbr-section-subtitle {
  text-align: center;
  color: #161616;
}
.cid-umi8H75yHb .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-umiPLoBDMj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-umiPLoBDMj .counter-container ol {
  margin-bottom: 0;
}
.cid-umiPLoBDMj .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-umiPLoBDMj .mbr-section-title {
  color: #ff0800;
}
.cid-umiPLoBDMj .mbr-text {
  color: #100f0f;
}
.cid-umi8H8uwtk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-umi8H8uwtk [class^="socicon-"]:before,
.cid-umi8H8uwtk [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-umi8H8uwtk .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-umi8H8uwtk .btn-social:hover {
  background: #161616;
}
.cid-umi8H8uwtk .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-umi8H8uwtk .mbr-section-title,
.cid-umi8H8uwtk .mbr-social-likes {
  color: #ff0800;
}
.cid-umi8H8VXCS {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-umi8H8VXCS .mbr-section-title {
  color: #ff0800;
}
.cid-umi8H8VXCS .mbr-text,
.cid-umi8H8VXCS .mbr-section-btn {
  color: #000000;
}
.cid-umi8H9iyPZ {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-umi8H9iyPZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-umi8H9iyPZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umi8H9iyPZ .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-umi8H9iyPZ .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-umi8H9iyPZ .row {
    text-align: center;
  }
  .cid-umi8H9iyPZ .row > div {
    margin: auto;
  }
  .cid-umi8H9iyPZ .social-row {
    justify-content: center;
  }
}
.cid-umi8H9iyPZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-umi8H9iyPZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-umi8H9iyPZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umi8H9iyPZ .list {
    margin-bottom: 0rem;
  }
}
.cid-umi8H9iyPZ .mbr-text {
  color: #ffffff;
}
.cid-umi8H9iyPZ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-umi8H9iyPZ .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-umi8H9iyPZ div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-umi8H9iyPZ H5 {
  color: #ffffff;
}
.cid-umi8H9iyPZ .mbr-section-subtitle {
  color: #ff0800;
}
.cid-unS7YxcMNA {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-unS7YxcMNA .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-unS7YxcMNA .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-unS7YxcMNA .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unS7YxcMNA .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-unS7YxcMNA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unS7YxcMNA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unS7YxcMNA .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-unS7YxcMNA .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-unS7YxcMNA .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-unS7YxcMNA .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-unS7YxcMNA .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-unS7YxcMNA .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-unS7YxcMNA .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-unS7YxcMNA .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-unS7YxcMNA .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-unS7YxcMNA .nav-link {
  width: fit-content;
  position: relative;
}
.cid-unS7YxcMNA .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-unS7YxcMNA .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-unS7YxcMNA .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-unS7YxcMNA .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-unS7YxcMNA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-unS7YxcMNA .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-unS7YxcMNA .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-unS7YxcMNA .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-unS7YxcMNA .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-unS7YxcMNA .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-unS7YxcMNA .nav-item:focus,
.cid-unS7YxcMNA .nav-link:focus {
  outline: none;
}
.cid-unS7YxcMNA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-unS7YxcMNA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unS7YxcMNA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-unS7YxcMNA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-unS7YxcMNA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unS7YxcMNA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unS7YxcMNA .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-unS7YxcMNA .navbar.opened {
  transition: all 0.3s;
}
.cid-unS7YxcMNA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-unS7YxcMNA .navbar .navbar-logo img {
  width: auto;
}
.cid-unS7YxcMNA .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-unS7YxcMNA .navbar.collapsed {
  justify-content: center;
}
.cid-unS7YxcMNA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-unS7YxcMNA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-unS7YxcMNA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-unS7YxcMNA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unS7YxcMNA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unS7YxcMNA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-unS7YxcMNA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unS7YxcMNA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-unS7YxcMNA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-unS7YxcMNA .navbar {
    min-height: 72px;
  }
  .cid-unS7YxcMNA .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-unS7YxcMNA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-unS7YxcMNA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unS7YxcMNA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unS7YxcMNA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unS7YxcMNA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-unS7YxcMNA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-unS7YxcMNA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-unS7YxcMNA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-unS7YxcMNA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-unS7YxcMNA .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-unS7YxcMNA .dropdown-item.active,
.cid-unS7YxcMNA .dropdown-item:active {
  background-color: transparent;
}
.cid-unS7YxcMNA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unS7YxcMNA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unS7YxcMNA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unS7YxcMNA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-unS7YxcMNA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-unS7YxcMNA .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-unS7YxcMNA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-unS7YxcMNA .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-unS7YxcMNA .navbar-buttons {
    text-align: left;
  }
}
.cid-unS7YxcMNA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-unS7YxcMNA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-unS7YxcMNA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-unS7YxcMNA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unS7YxcMNA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unS7YxcMNA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-unS7YxcMNA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unS7YxcMNA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-unS7YxcMNA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-unS7YxcMNA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unS7YxcMNA .navbar-dropdown {
  padding: 0 1rem;
}
.cid-unS7YxcMNA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-unS7YxcMNA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-unS7YxcMNA .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unS7YxcMNA .navbar {
    height: 70px;
  }
  .cid-unS7YxcMNA .navbar.opened {
    height: auto;
  }
  .cid-unS7YxcMNA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unS7YxcMNA .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-unS7YxcMNA .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-unS7YxcMNA .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-unS7YxcMNA .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-unS7YxcMNA .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-unS7YxcMNA .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-unS7YxcMNA .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-unS7YxcMNA .navbar-brand {
    margin-right: auto;
  }
  .cid-unS7YxcMNA .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-unS7YxcMNA .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-unS7YxcMNA .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-unS7YxcMNA .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-unS7YxcMNA .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-unS7YxcMNA .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-unS7YxcMNA .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-unS7YxcMNA .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-unS7YxcMNA .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-unS7YxcMNA .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-unS7YxcMNA .navbar-collapse {
    padding: 1rem;
  }
}
.cid-unS7Yy47X3 {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-unS7Yy47X3 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-unS7Yy47X3 .image-wrap img {
    display: block;
    margin: auto;
    width: 30%;
  }
}
.cid-unS7Yy47X3 .mbr-section-title {
  color: #ffffff;
}
.cid-unS7Yy47X3 .mbr-text,
.cid-unS7Yy47X3 .mbr-section-btn {
  color: #ffffff;
}
.cid-unS7YyAakA {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-unS7YyAakA .mbr-section-subtitle {
  text-align: center;
  color: #161616;
}
.cid-unS7YyAakA .mbr-text {
  text-align: center;
  color: #100f0f;
}
.cid-unS7YyAakA .mbr-section-title {
  color: #ff0800;
  text-align: center;
}
.cid-unS7YyZYmc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-unS7YyZYmc .mbr-text {
  text-align: center;
  color: #100f0f;
}
.cid-unS7YyZYmc .mbr-section-subtitle {
  text-align: center;
  color: #161616;
}
.cid-unS7YyZYmc .mbr-section-title {
  text-align: center;
  color: #ff0800;
}
.cid-unS7YzMfI8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-unS7YzMfI8 [class^="socicon-"]:before,
.cid-unS7YzMfI8 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-unS7YzMfI8 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #161616;
  border-width: 2px;
  transition: all .3s;
  border-color: #161616;
}
.cid-unS7YzMfI8 .btn-social:hover {
  background: #161616;
}
.cid-unS7YzMfI8 .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-unS7YzMfI8 .mbr-section-title,
.cid-unS7YzMfI8 .mbr-social-likes {
  color: #ff0800;
}
.cid-unS7YAho9U {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-unS7YAho9U .mbr-section-title {
  color: #ff0800;
}
.cid-unS7YAho9U .mbr-text,
.cid-unS7YAho9U .mbr-section-btn {
  color: #100f0f;
}
.cid-unS7YAJ5Y2 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-unS7YAJ5Y2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-unS7YAJ5Y2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unS7YAJ5Y2 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-unS7YAJ5Y2 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-unS7YAJ5Y2 .row {
    text-align: center;
  }
  .cid-unS7YAJ5Y2 .row > div {
    margin: auto;
  }
  .cid-unS7YAJ5Y2 .social-row {
    justify-content: center;
  }
}
.cid-unS7YAJ5Y2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-unS7YAJ5Y2 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-unS7YAJ5Y2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-unS7YAJ5Y2 .list {
    margin-bottom: 0rem;
  }
}
.cid-unS7YAJ5Y2 .mbr-text {
  color: #ffffff;
}
.cid-unS7YAJ5Y2 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-unS7YAJ5Y2 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-unS7YAJ5Y2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-unS7YAJ5Y2 H5 {
  color: #ffffff;
}
.cid-unS7YAJ5Y2 .mbr-section-subtitle {
  color: #ff0800;
}
.cid-uWmVAPK7J5 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uWmVAPK7J5 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uWmVAPK7J5 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uWmVAPK7J5 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uWmVAPK7J5 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uWmVAPK7J5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWmVAPK7J5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWmVAPK7J5 .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uWmVAPK7J5 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uWmVAPK7J5 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uWmVAPK7J5 .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uWmVAPK7J5 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uWmVAPK7J5 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uWmVAPK7J5 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uWmVAPK7J5 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uWmVAPK7J5 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uWmVAPK7J5 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uWmVAPK7J5 .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uWmVAPK7J5 .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uWmVAPK7J5 .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uWmVAPK7J5 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uWmVAPK7J5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uWmVAPK7J5 .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.3) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uWmVAPK7J5 .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uWmVAPK7J5 .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uWmVAPK7J5 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWmVAPK7J5 .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  background: rgba(0, 0, 0, 0.3) !important;
}
.cid-uWmVAPK7J5 .nav-item:focus,
.cid-uWmVAPK7J5 .nav-link:focus {
  outline: none;
}
.cid-uWmVAPK7J5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWmVAPK7J5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWmVAPK7J5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWmVAPK7J5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWmVAPK7J5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWmVAPK7J5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWmVAPK7J5 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uWmVAPK7J5 .navbar.opened {
  transition: all 0.3s;
}
.cid-uWmVAPK7J5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWmVAPK7J5 .navbar .navbar-logo img {
  width: auto;
}
.cid-uWmVAPK7J5 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uWmVAPK7J5 .navbar.collapsed {
  justify-content: center;
}
.cid-uWmVAPK7J5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWmVAPK7J5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWmVAPK7J5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWmVAPK7J5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWmVAPK7J5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWmVAPK7J5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uWmVAPK7J5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWmVAPK7J5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWmVAPK7J5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uWmVAPK7J5 .navbar {
    min-height: 72px;
  }
  .cid-uWmVAPK7J5 .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uWmVAPK7J5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWmVAPK7J5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWmVAPK7J5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWmVAPK7J5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWmVAPK7J5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uWmVAPK7J5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWmVAPK7J5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uWmVAPK7J5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWmVAPK7J5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uWmVAPK7J5 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uWmVAPK7J5 .dropdown-item.active,
.cid-uWmVAPK7J5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uWmVAPK7J5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWmVAPK7J5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWmVAPK7J5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWmVAPK7J5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uWmVAPK7J5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uWmVAPK7J5 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uWmVAPK7J5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWmVAPK7J5 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uWmVAPK7J5 .navbar-buttons {
    text-align: left;
  }
}
.cid-uWmVAPK7J5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWmVAPK7J5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0800;
}
.cid-uWmVAPK7J5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWmVAPK7J5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWmVAPK7J5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWmVAPK7J5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWmVAPK7J5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWmVAPK7J5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWmVAPK7J5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWmVAPK7J5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWmVAPK7J5 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uWmVAPK7J5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWmVAPK7J5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uWmVAPK7J5 .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uWmVAPK7J5 .navbar {
    height: 70px;
  }
  .cid-uWmVAPK7J5 .navbar.opened {
    height: auto;
  }
  .cid-uWmVAPK7J5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWmVAPK7J5 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uWmVAPK7J5 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uWmVAPK7J5 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uWmVAPK7J5 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uWmVAPK7J5 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uWmVAPK7J5 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uWmVAPK7J5 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uWmVAPK7J5 .navbar-brand {
    margin-right: auto;
  }
  .cid-uWmVAPK7J5 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uWmVAPK7J5 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uWmVAPK7J5 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uWmVAPK7J5 .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uWmVAPK7J5 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uWmVAPK7J5 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uWmVAPK7J5 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uWmVAPK7J5 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uWmVAPK7J5 .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uWmVAPK7J5 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uWmVAPK7J5 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uWn6XViFnx {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aws-aruba-web-design-agency.webp");
}
.cid-uWn6XViFnx .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uWn6XViFnx .image-wrap img {
    display: block;
    margin: auto;
    width: 20%;
  }
}
.cid-uWn6XViFnx .mbr-section-title {
  color: #ffffff;
}
.cid-uWn6XViFnx .mbr-text,
.cid-uWn6XViFnx .mbr-section-btn {
  color: #ffffff;
}
.cid-uWHMFpRTn8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uWHMFpRTn8 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uWHMFpRTn8 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uWHMFpRTn8 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uWHMFpRTn8 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uWHMFpRTn8 .mbr-section-title {
  color: #ff0800;
}
.cid-uWHMFpRTn8 .mbr-section-subtitle {
  color: #100f0f;
}
.cid-uWHMFpRTn8 LABEL {
  color: #ffffff;
}
.cid-uWHMWBYYOc {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uWHMWBYYOc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWHMWBYYOc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWHMWBYYOc .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uWHMWBYYOc .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uWHMWBYYOc .row {
    text-align: center;
  }
  .cid-uWHMWBYYOc .row > div {
    margin: auto;
  }
  .cid-uWHMWBYYOc .social-row {
    justify-content: center;
  }
}
.cid-uWHMWBYYOc .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uWHMWBYYOc .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uWHMWBYYOc .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uWHMWBYYOc .list {
    margin-bottom: 0rem;
  }
}
.cid-uWHMWBYYOc .mbr-text {
  color: #ffffff;
}
.cid-uWHMWBYYOc .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uWHMWBYYOc .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uWHMWBYYOc div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uWHMWBYYOc H5 {
  color: #ffffff;
}
.cid-uWHMWBYYOc .mbr-section-subtitle {
  color: #ff0800;
}
