.btn {
  border-width: 2px;
}
body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.3;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #3098f3 !important;
}
.bg-success {
  background-color: #fe6571 !important;
}
.bg-info {
  background-color: #082c4e !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #f38f30 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #3098f3 !important;
  border-color: #3098f3 !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: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: white !important;
  border-color: white !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffcc00 !important;
  border-color: #ffcc00 !important;
  color: #000000 !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: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
}
.btn-info,
.btn-info:active {
  background-color: #082c4e !important;
  border-color: #082c4e !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: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: white !important;
  border-color: white !important;
}
.btn-success,
.btn-success:active {
  background-color: #fe6571 !important;
  border-color: #fe6571 !important;
  color: #ffffff !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: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: white !important;
  border-color: white !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !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: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: white !important;
  border-color: white !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #f38f30 !important;
  border-color: #f38f30 !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: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: white !important;
  border-color: white !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: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: white !important;
  border-color: white !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: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: white !important;
  border-color: white !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #3098f3;
  color: #3098f3;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0b6cc1 !important;
  background-color: transparent!important;
  border-color: #0b6cc1 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #3098f3 !important;
  border-color: #3098f3 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ffcc00;
  color: #ffcc00;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a88700 !important;
  background-color: transparent!important;
  border-color: #a88700 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #000000 !important;
  background-color: #ffcc00 !important;
  border-color: #ffcc00 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #082c4e;
  color: #082c4e;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #082c4e !important;
  border-color: #082c4e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #fe6571;
  color: #fe6571;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #fd0f22 !important;
  background-color: transparent!important;
  border-color: #fd0f22 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #fe6571 !important;
  border-color: #fe6571 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #f38f30;
  color: #f38f30;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c1640b !important;
  background-color: transparent!important;
  border-color: #c1640b !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #f38f30 !important;
  border-color: #f38f30 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #3098f3 !important;
}
.text-secondary {
  color: #ffcc00 !important;
}
.text-success {
  color: #fe6571 !important;
}
.text-info {
  color: #082c4e !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #f38f30 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #3098f3 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ffcc00 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #fe6571 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #082c4e !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffe161 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #f38f30 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #3098f3;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #082c4e;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #f38f30;
}
.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: #3098f3;
  border-color: #3098f3;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #3098f3;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f1f8fe;
}
.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: #4fa0ed;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fef7f1;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #3098f3 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #3098f3;
}
/* 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: #3098f3;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #3098f3;
}
.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: #3098f3;
  border-bottom-color: #3098f3;
}
.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: #3098f3 !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: #ffcc00 !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='%233098f3' %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;
}
.cid-sg6MU58ixQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sg6MU58ixQ nav.navbar {
  position: fixed;
}
.cid-sg6MU58ixQ .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;
}
.cid-sg6MU58ixQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sg6MU58ixQ .dropdown-item:hover,
.cid-sg6MU58ixQ .dropdown-item:focus {
  background: #3098f3 !important;
  color: white !important;
}
.cid-sg6MU58ixQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sg6MU58ixQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sg6MU58ixQ .nav-dropdown .link {
  margin: 0.667em 1em !important;
}
.cid-sg6MU58ixQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sg6MU58ixQ .nav-link {
  position: relative;
  padding: 0!important;
}
.cid-sg6MU58ixQ .nav-link:before {
  position: absolute;
  width: 100%;
  height: 2px;
  content: '';
  bottom: 0px;
  left: 0;
  background: #ffcc00;
  opacity: 0;
  transition: all 0.3s;
}
.cid-sg6MU58ixQ .nav-link:hover:before {
  opacity: 1;
}
.cid-sg6MU58ixQ .container {
  display: flex;
  margin: auto;
}
.cid-sg6MU58ixQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sg6MU58ixQ .dropdown-menu,
.cid-sg6MU58ixQ .navbar.opened {
  background: #ffffff !important;
}
.cid-sg6MU58ixQ .nav-item:focus,
.cid-sg6MU58ixQ .nav-link:focus {
  outline: none;
}
.cid-sg6MU58ixQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sg6MU58ixQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sg6MU58ixQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sg6MU58ixQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg6MU58ixQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sg6MU58ixQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sg6MU58ixQ .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sg6MU58ixQ .navbar.opened {
  transition: all 0.3s;
}
.cid-sg6MU58ixQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sg6MU58ixQ .navbar .navbar-logo img {
  width: auto;
}
.cid-sg6MU58ixQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sg6MU58ixQ .navbar.collapsed {
  justify-content: center;
}
.cid-sg6MU58ixQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sg6MU58ixQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sg6MU58ixQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sg6MU58ixQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sg6MU58ixQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sg6MU58ixQ .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-sg6MU58ixQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sg6MU58ixQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sg6MU58ixQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sg6MU58ixQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sg6MU58ixQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sg6MU58ixQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sg6MU58ixQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sg6MU58ixQ .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-sg6MU58ixQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sg6MU58ixQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sg6MU58ixQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sg6MU58ixQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sg6MU58ixQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sg6MU58ixQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sg6MU58ixQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sg6MU58ixQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sg6MU58ixQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sg6MU58ixQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sg6MU58ixQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sg6MU58ixQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sg6MU58ixQ .dropdown-item.active,
.cid-sg6MU58ixQ .dropdown-item:active {
  background-color: transparent;
}
.cid-sg6MU58ixQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sg6MU58ixQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sg6MU58ixQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sg6MU58ixQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sg6MU58ixQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sg6MU58ixQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sg6MU58ixQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sg6MU58ixQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sg6MU58ixQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sg6MU58ixQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f38f30;
}
.cid-sg6MU58ixQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sg6MU58ixQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sg6MU58ixQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sg6MU58ixQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sg6MU58ixQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sg6MU58ixQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sg6MU58ixQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sg6MU58ixQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sg6MU58ixQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sg6MU58ixQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sg6MU58ixQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sg6MU58ixQ .navbar {
    height: 70px;
  }
  .cid-sg6MU58ixQ .navbar.opened {
    height: auto;
  }
  .cid-sg6MU58ixQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sBbTbMNPPV {
  background-image: url("../../../assets/images/screenshot-2021-06-23-at-22.53.52-1321x743.png");
}
@media (max-width: 991px) {
  .cid-sBbTbMNPPV .mbr-section-title,
  .cid-sBbTbMNPPV .mbr-section-subtitle,
  .cid-sBbTbMNPPV .mbr-section-btn,
  .cid-sBbTbMNPPV .mbr-text {
    text-align: center;
  }
}
.cid-sBbTbMNPPV .mbr-section-title {
  color: #ffffff;
}
.cid-sBbTbMNPPV .mbr-text,
.cid-sBbTbMNPPV .mbr-section-btn {
  color: #125806;
}
.cid-sg6MYJccpK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sg6MYJccpK .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #f38f30;
  margin-bottom: 2rem;
}
.cid-sg6MYJccpK .card-wrapper {
  min-height: 220px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 3rem 2rem;
  background: #125806;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sg6MYJccpK .card-wrapper:hover {
  background: #269912;
}
.cid-sg6MYJccpK .card-wrapper:hover .link {
  color: #f38f30;
}
.cid-sg6MYJccpK .card-wrapper:hover .link:before {
  color: #f38f30;
}
@media (max-width: 992px) {
  .cid-sg6MYJccpK .card-wrapper {
    background: #269912;
  }
  .cid-sg6MYJccpK .card-wrapper .link {
    color: #f38f30;
  }
  .cid-sg6MYJccpK .card-wrapper .link:before {
    color: #f38f30;
  }
}
.cid-sg6MYJccpK .card-title {
  color: #ffffff;
}
.cid-sg6MYJccpK .link-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sg6MYJccpK .link {
  padding-right: 2.5rem;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  width: fit-content;
}
.cid-sg6MYJccpK .link:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1.2rem;
  color: #269912;
  width: 30px;
  font-weight: 700;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  font-family: 'Moririse2' !important;
  content: "\e909";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-sg6MYJccpK .link,
.cid-sg6MYJccpK .link-wrap {
  color: #3098f3;
}
.cid-sg6MYJccpK .link-wrap2 {
  display: inline-block;
  width: 100%;
}
.cid-sg6MYJccpK .link2 {
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}
.cid-sg6MYJccpK .link2:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  background: #3098f3;
  font-family: 'Moririse2' !important;
  content: "\e909";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-sg6MYJccpK .link2:hover:before {
  background: #082c4e;
}
.cid-sg6MYJccpK .mbr-section-title {
  text-align: center;
  color: #f38f30;
}
.cid-sg6MYJccpK .mbr-section-subtitle {
  text-align: center;
  color: #353535;
}
.cid-sg6MX5c96Z {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fafafa;
}
.cid-sg6MX5c96Z .mbr-iconfont {
  display: flex;
  font-size: 5rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
  width: 300px;
  height: 300px;
  justify-content: center;
  align-items: center;
}
.cid-sg6MX5c96Z .main-text {
  z-index: 5;
  position: relative;
  color: #353535;
}
.cid-sg6MX5c96Z .row {
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sg6MX5c96Z .row {
    justify-content: center;
  }
}
.cid-sg6MX5c96Z .card1 {
  background: #f38f30;
}
.cid-sg6MX5c96Z .card1:before {
  background: #f38f30;
}
.cid-sg6MX5c96Z .card-box {
  position: absolute;
  z-index: 2;
  top: 50%;
  transition: all 0.4s;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.cid-sg6MX5c96Z .card2 {
  background: #125806;
}
.cid-sg6MX5c96Z .card2:before {
  background: #125806;
}
.cid-sg6MX5c96Z .card3 {
  background: #269912;
}
.cid-sg6MX5c96Z .card3:before {
  background: #269912;
}
.cid-sg6MX5c96Z .card-wrapper {
  transition: all 0.4s;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  width: 220px;
  height: 220px;
  z-index: 1;
  position: relative;
  margin: auto;
}
.cid-sg6MX5c96Z .card-wrapper:hover {
  z-index: 3;
}
.cid-sg6MX5c96Z .card-wrapper:hover .mbr-iconfont {
  opacity: 0.2;
}
.cid-sg6MX5c96Z .card-wrapper:hover .card-box {
  opacity: 1;
}
.cid-sg6MX5c96Z .card-wrapper:hover:before {
  opacity: 1;
}
.cid-sg6MX5c96Z .card-wrapper:before {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 320px;
  transition: all 0.4s;
  z-index: 0;
  opacity: 0;
  border-radius: 50%;
  width: 320px;
  transform: translate(-50%, -50%);
  content: '';
}
.cid-sg6MX5c96Z .card-title {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sg6MX5c96Z .card-wrapper {
    z-index: 3;
  }
  .cid-sg6MX5c96Z .card-wrapper .mbr-iconfont {
    opacity: 0.2;
  }
  .cid-sg6MX5c96Z .card-wrapper .card-box {
    opacity: 1;
  }
  .cid-sg6MX5c96Z .card-wrapper:before {
    opacity: 1;
    height: 270px;
    width: 270px;
  }
}
.cid-sg6NSA7zxS {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/screenshot-2021-06-23-at-22.53.24-1136x756.png");
}
@media (max-width: 991px) {
  .cid-sg6NSA7zxS .mbr-section-title,
  .cid-sg6NSA7zxS .mbr-section-subtitle,
  .cid-sg6NSA7zxS .mbr-section-btn,
  .cid-sg6NSA7zxS .mbr-text {
    text-align: center;
  }
}
.cid-sg6NSA7zxS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sg6NSA7zxS .mbr-text,
.cid-sg6NSA7zxS .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-sg6NSA7zxS .card-wrapper {
  background: #125806;
  width: 500px;
  margin: auto;
  height: 500px;
  border-radius: 50%;
  display: flex;
  padding-top: 2rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-sg6NSA7zxS .card-wrapper {
    width: 500px;
    margin: auto;
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-sg6NSA7zxS .card-wrapper {
    width: 300px;
    margin: auto;
    height: 300px;
  }
  .cid-sg6NSA7zxS .card-wrapper .mb-3 {
    margin: 0!important;
  }
  .cid-sg6NSA7zxS .card-wrapper .btn {
    padding: 0.6rem 1.2rem;
  }
}
.cid-sBcdytQQ5Z {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/screenshot-2021-06-23-at-22.52.55-1320x740.png");
}
.cid-sBcdytQQ5Z .mbr-section-title {
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-align: center;
}
.cid-sBcdytQQ5Z .nav {
  border: none;
}
.cid-sBcdytQQ5Z .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sBcdytQQ5Z .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #125806;
  font-style: normal;
  font-weight: 500;
  padding: 1rem 3rem;
  margin: 0px -0.5px 1rem -0.5px;
  transition: all .5s;
  border-radius: 0px !important;
  border-bottom: 1px solid #125806;
}
.cid-sBcdytQQ5Z .nav-tabs .nav-link:hover {
  border: 1px solid #125806;
  background-color: #125806;
  color: #ffffff;
}
.cid-sBcdytQQ5Z .nav-tabs .nav-link.active {
  border: 1px solid #125806;
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background: #125806;
}
.cid-sBcdytQQ5Z P {
  text-align: center;
  color: #ffffff;
}
.cid-sBcf8MAr4N {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e9e9e9;
}
.cid-sBcf8MAr4N .mbr-section-title {
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #353535;
  text-align: center;
}
.cid-sBcf8MAr4N .nav {
  border: none;
}
.cid-sBcf8MAr4N .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sBcf8MAr4N .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #125806;
  font-style: normal;
  font-weight: 500;
  padding: 1rem 3rem;
  margin: 0px -0.5px 1rem -0.5px;
  transition: all .5s;
  border-radius: 0px !important;
  border-bottom: 1px solid #125806;
}
.cid-sBcf8MAr4N .nav-tabs .nav-link:hover {
  border: 1px solid #125806;
  background-color: #125806;
  color: #ffffff;
}
.cid-sBcf8MAr4N .nav-tabs .nav-link.active {
  border: 1px solid #125806;
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background: #125806;
}
.cid-sBcf8MAr4N P {
  text-align: center;
  color: #353535;
}
.cid-sBcixp7CYJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/peter-pivak-miwnycyo5ek-unsplash-2000x2667.jpg");
}
.cid-sBcixp7CYJ .card-box {
  padding: 0rem;
}
.cid-sBcixp7CYJ .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-sBcixp7CYJ .big {
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sBcixp7CYJ .big h4 {
  margin: 0;
}
.cid-sBcixp7CYJ .card {
  padding: 0;
  min-height: 300px;
}
.cid-sBcixp7CYJ img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sBcixp7CYJ .card-img {
  min-height: 400px;
  height: 100%;
}
.cid-sBcixp7CYJ .card-wrapper {
  padding: 4rem 2rem;
  width: 100%;
}
@media (min-width: 1400px) {
  .cid-sBcixp7CYJ .card-wrapper {
    padding: 4rem;
  }
}
.cid-sBcixp7CYJ .cardbg1 {
  background: #269912;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-sBcixp7CYJ .cardbg2 {
  background: #f6f6f6;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-sBcixp7CYJ .main-title {
  color: #ffffff;
}
.cid-sBcixp7CYJ .card-title,
.cid-sBcixp7CYJ .mbr-section-btn {
  color: #ffffff;
}
.cid-sBcjM5kIMU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-sBcjM5kIMU .content-block {
  max-width: 350px;
  padding: 4rem 3rem;
  z-index: 5;
  position: relative;
}
.cid-sBcjM5kIMU .img-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/black-network-switch-with-optical-fiber-cables-2000x1331.jpg");
  background-position: center;
  background-size: cover;
  z-index: 3;
}
.cid-sBcjM5kIMU .block2 {
  background-image: url("../../../assets/images/black-network-switch-with-optical-fiber-cables-2000x1331.jpg");
}
.cid-sBcjM5kIMU .block2:hover .block2-over {
  opacity: 0;
}
.cid-sBcjM5kIMU .block1 {
  background-image: url("../../../assets/images/black-network-switch-with-optical-fiber-cables-2000x1331.jpg");
}
.cid-sBcjM5kIMU .block1:hover .block1-over {
  opacity: 0;
}
.cid-sBcjM5kIMU .block1-over {
  position: absolute;
  transition: all 0.6s;
  width: 100%;
  background-color: #125806;
  opactiy: 1;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-sBcjM5kIMU .block2-over {
  position: absolute;
  transition: all 0.6s;
  width: 100%;
  background-color: #269912;
  opactiy: 1;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-sBcjM5kIMU .overlay {
  position: absolute;
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0%;
  background: #f38f30;
  z-index: 2;
  opacity: 1;
}
.cid-sBcjM5kIMU .overlay-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 50%;
  transition-delay: 0.3s;
  top: 0;
  z-index: 4;
}
.cid-sBcjM5kIMU .col {
  padding: 0;
  display: flex;
  position: relative;
  min-height: 400px;
  justify-content: flex-end;
}
.cid-sBcjM5kIMU .col:hover .overlay-wrapper {
  width: 100%;
  right: 0;
  transition-delay: 0s;
}
.cid-sBcjM5kIMU .col:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-sBcjM5kIMU .col:hover .img-content {
  opacity: 1;
  width: 100%;
  transition-delay: 0.3s;
}
.cid-sBcjM5kIMU .col:hover .box-title2,
.cid-sBcjM5kIMU .col:hover .box-text2 {
  color: #ffffff;
  transition-delay: 0.3s;
}
.cid-sBcjM5kIMU .box-title2,
.cid-sBcjM5kIMU .box-text2 {
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-sBcjM5kIMU .box-content {
  width: 50%;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: #f38f30;
}
.cid-sBcjM5kIMU .content1 {
  z-index: 5;
  max-width: 450px;
  position: relative;
  transition: all 0.3s;
  transition-delay: 0.3s;
  padding: 4rem 3rem;
}
.cid-sBcjM5kIMU .content2 {
  z-index: 2;
  max-width: 450px;
  margin-bottom: -1rem;
  position: relative;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0s;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sBcjM5kIMU .img-content {
    opacity: 1;
  }
  .cid-sBcjM5kIMU .overlay-wrapper {
    width: 100%;
    right: 0;
  }
  .cid-sBcjM5kIMU .box-content {
    width: 100%;
  }
  .cid-sBcjM5kIMU .box-title2,
  .cid-sBcjM5kIMU .box-text2 {
    color: #ffffff !important;
  }
  .cid-sBcjM5kIMU .content-block,
  .cid-sBcjM5kIMU .content1 {
    padding: 3rem 1rem;
  }
}
.cid-sBcjM5kIMU .box-text1 {
  color: #333333;
}
.cid-sBcjM5kIMU .box-title2 {
  color: #ffffff;
}
.cid-sBcjM5kIMU .block1-text,
.cid-sBcjM5kIMU .mbr-section-btn {
  color: #ffffff;
}
.cid-sBcjM5kIMU .block2-text,
.cid-sBcjM5kIMU .mbr-section-btn {
  color: #ffffff;
}
.cid-sBcjM5kIMU .block2-title {
  color: #333333;
}
.cid-sBcjM5kIMU .block1-subtitle {
  color: #ffffff;
}
.cid-sBcjM5kIMU .box-text2 {
  text-align: left;
}
.cid-sBcjM5kIMU .block2-subtitle {
  color: #ffffff;
}
.cid-sJ0XSx6H8y {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sJ0XSx6H8y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sJ0XSx6H8y .row {
  flex-direction: row-reverse;
}
.cid-sJ0XSx6H8y img {
  width: 100%;
}
.cid-sBcsHUnmPF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sBcsHUnmPF .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sBcsHUnmPF .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sBcsHUnmPF .list-img {
  width: 100px;
}
.cid-sBcsHUnmPF .ico2 {
  color: #767676;
  font-size: 1.2rem;
}
.cid-sBcsHUnmPF .btn {
  margin: 0px !important;
}
.cid-sBcsHUnmPF .text-box {
  padding: 1rem;
}
.cid-sBcsHUnmPF .text-box p {
  margin: 0;
}
.cid-sBcsHUnmPF .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sBcsHUnmPF .ico-box p {
  margin: 0;
}
.cid-sBcsHUnmPF .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sBcsHUnmPF .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sBcsHUnmPF .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sBcsHUnmPF .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sBcsHUnmPF .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sBcsHUnmPF .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sBcsHUnmPF .carousel-indicators li {
  display: inline-block;
}
.cid-sBcsHUnmPF .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sBcsHUnmPF .carousel-indicators li.active {
  border: 0px;
}
.cid-sBcsHUnmPF .li1,
.cid-sBcsHUnmPF .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/whatsapp-image-2021-06-23-at-19.01.02-1280x960.jpeg");
}
.cid-sBcsHUnmPF .li2,
.cid-sBcsHUnmPF .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/whatsapp-image-2021-06-23-at-19.01.01-1280x960.jpeg");
}
.cid-sBcsHUnmPF .li3,
.cid-sBcsHUnmPF .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/whatsapp-image-2021-06-23-at-19.07.08-1-1280x960.jpg");
}
.cid-sBcsHUnmPF .li4,
.cid-sBcsHUnmPF .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/whatsapp-image-2021-06-23-at-19.09.39-747x1600.jpeg");
}
.cid-sBcsHUnmPF .li5,
.cid-sBcsHUnmPF .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/06.jpg");
}
.cid-sBcsHUnmPF .li6,
.cid-sBcsHUnmPF .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/08.jpg");
}
@media (max-width: 992px) {
  .cid-sBcsHUnmPF .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sBcsHUnmPF .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sBcsHUnmPF .card-title2 {
  color: #f38f30;
}
.cid-sBcsHUnmPF .sq {
  color: #767676;
}
.cid-sBcsHUnmPF .item {
  color: #767676;
}
.cid-sBcHHo94K2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sBcHHo94K2 .mbr-iconfont {
  font-size: 34px;
  transition: color .3s;
}
.cid-sBcHHo94K2 .mbr-section-title {
  margin: 0;
}
.cid-sBcHHo94K2 .card-img {
  text-align: center;
}
.cid-sBcHHo94K2 .row-item {
  padding-bottom: 2rem;
  padding: 5rem 2rem;
}
.cid-sBcHHo94K2 .row-item.card1 {
  background: #125806;
}
.cid-sBcHHo94K2 .row-item.card2 {
  background: #f38f30;
}
.cid-sBcHHo94K2 .row-item.card3 {
  background: #269912;
}
.cid-sBcHHo94K2 .row-item.card4 {
  background: #2bdc9d;
}
.cid-sBcHHo94K2 .mbr-text {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sBcHHo94K2 .card-img,
  .cid-sBcHHo94K2 .mbr-text,
  .cid-sBcHHo94K2 .mbr-card-title,
  .cid-sBcHHo94K2 .mbr-section-subtitle,
  .cid-sBcHHo94K2 .mbr-section-title,
  .cid-sBcHHo94K2 .underline {
    text-align: center !important;
  }
}
.cid-sBcHLqmcFz {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sBcHLqmcFz .mbr-iconfont {
  font-size: 34px;
  transition: color .3s;
}
.cid-sBcHLqmcFz .mbr-section-title {
  margin: 0;
}
.cid-sBcHLqmcFz .card-img {
  text-align: center;
}
.cid-sBcHLqmcFz .row-item {
  padding-bottom: 2rem;
  padding: 5rem 2rem;
}
.cid-sBcHLqmcFz .row-item.card1 {
  background: #269912;
}
.cid-sBcHLqmcFz .row-item.card2 {
  background: #125806;
}
.cid-sBcHLqmcFz .row-item.card3 {
  background: #f38f30;
}
.cid-sBcHLqmcFz .row-item.card4 {
  background: #2bdc9d;
}
.cid-sBcHLqmcFz .mbr-text {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sBcHLqmcFz .card-img,
  .cid-sBcHLqmcFz .mbr-text,
  .cid-sBcHLqmcFz .mbr-card-title,
  .cid-sBcHLqmcFz .mbr-section-subtitle,
  .cid-sBcHLqmcFz .mbr-section-title,
  .cid-sBcHLqmcFz .underline {
    text-align: center !important;
  }
}
.cid-sBcU8D44Fe {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffcc00;
}
.cid-sBcU8D44Fe H1 {
  color: #000000;
}
.cid-sBcU8D44Fe .mbr-text,
.cid-sBcU8D44Fe .mbr-section-btn {
  color: #ffffff;
}
.cid-sBcU8D44Fe .img-box {
  position: relative;
}
.cid-sBcU8D44Fe .card-ico span {
  font-size: 96px;
  color: #3098f3;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-sBcU8D44Fe .card-ico .ico1 {
  background-color: #125806;
}
.cid-sBcU8D44Fe .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1rem !important;
}
.cid-sBcU8D44Fe .card {
  display: flex;
  flex-direction: row;
  max-width: 350px;
}
.cid-sBcU8D44Fe .img1 {
  position: absolute;
  top: 0;
  left: 3rem;
  z-index: 1;
}
.cid-sBcU8D44Fe .img2 {
  position: absolute;
  bottom: 0;
  right: 3rem;
  z-index: 2;
}
.cid-sBcU8D44Fe img {
  width: 48%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(255, 214, 51, 0.35);
}
@media (max-width: 992px) {
  .cid-sBcU8D44Fe .img-box {
    height: 500px;
  }
  .cid-sBcU8D44Fe .img1 {
    left: 1rem;
  }
  .cid-sBcU8D44Fe .img2 {
    right: 1rem;
  }
  .cid-sBcU8D44Fe img {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .cid-sBcU8D44Fe img {
    width: 60%;
  }
  .cid-sBcU8D44Fe .img-box {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .cid-sBcU8D44Fe .author-box {
    justify-content: center;
  }
  .cid-sBcU8D44Fe .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-sBcU8D44Fe .card .card-ico {
    margin-bottom: 2rem;
  }
  .cid-sBcU8D44Fe .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-sBcU8D44Fe .card-ico span {
    margin-right: 0rem;
  }
}
.cid-sBcU8D44Fe .author-box {
  display: flex;
  flex-direction: row;
}
.cid-sBcU8D44Fe .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-sBcU8D44Fe .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-sBcU8D44Fe h3,
.cid-sBcU8D44Fe h4 {
  margin: 0;
  padding: 0;
}
.cid-sBcU8D44Fe .card-title,
.cid-sBcU8D44Fe .mbr-section-subtitle {
  color: #232323;
}
.cid-sBcU8D44Fe .mbr-text {
  color: #000000;
}
.cid-sg6NEJufpX {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #125806;
}
@media (max-width: 991px) {
  .cid-sg6NEJufpX .mbr-section-title,
  .cid-sg6NEJufpX .mbr-section-subtitle,
  .cid-sg6NEJufpX .mbr-section-btn,
  .cid-sg6NEJufpX .mbr-text {
    text-align: center;
  }
}
.cid-sg6NEJufpX .mbr-section-title {
  color: #ffffff;
}
.cid-sg6NEJufpX .mbr-text,
.cid-sg6NEJufpX .mbr-section-btn {
  color: #ffffff;
}
.cid-sBcNG6UnjF {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #232323;
}
.cid-sBcNG6UnjF ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sBcNG6UnjF ul li {
  padding: 1rem 0;
}
.cid-sBcNG6UnjF ul li:hover {
  color: #3098f3;
}
.cid-sBcNG6UnjF .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-sBcNG6UnjF .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-sBcNG6UnjF .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-sBcNG6UnjF .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBcNG6UnjF .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-sBcNG6UnjF .map {
    height: auto;
  }
}
.cid-sBcNG6UnjF .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sBcNG6UnjF .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-sBcNG6UnjF .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sBcNG6UnjF .social-list a:hover {
  opacity: 1;
}
.cid-sBcNG6UnjF .row-element,
.cid-sBcNG6UnjF .image-element {
  padding: 0;
}
.cid-sBcNG6UnjF .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sBcNG6UnjF .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #3098f3, #ffcc00);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sBcNG6UnjF .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sBcNG6UnjF .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sBcNG6UnjF .text-content {
    padding: 2rem 1rem;
  }
  .cid-sBcNG6UnjF .underline .line {
    height: 2px;
  }
  .cid-sBcNG6UnjF .mbr-title,
  .cid-sBcNG6UnjF .underline,
  .cid-sBcNG6UnjF .mbr-text,
  .cid-sBcNG6UnjF .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sBcNG6UnjF .mbr-title,
.cid-sBcNG6UnjF .underline {
  color: #ffffff;
}
.cid-sBcNG6UnjF .mbr-text,
.cid-sBcNG6UnjF .mbr-section-btn {
  color: #ffffff;
}
.cid-sBcNG6UnjF mbr-list LI {
  color: #ffffff;
}
.cid-sBcNG6UnjF mbr-list {
  text-align: center;
}
.cid-sBcNG6UnjF .mbr-list,
.cid-sBcNG6UnjF .social-list mbr-list {
  color: #ffffff;
}
.cid-sBcONLZyns {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f38f30;
}
