.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', 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.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: 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: #2299aa !important;
}
.bg-success {
  background-color: #50d04c !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #81e29d !important;
}
.bg-danger {
  background-color: #846a5d !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #2299aa !important;
  border-color: #2299aa !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: #145862 !important;
  border-color: #145862 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #145862 !important;
  border-color: #145862 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #50d04c !important;
  border-color: #50d04c !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: #ffffff !important;
  background-color: #2d9c29 !important;
  border-color: #2d9c29 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2d9c29 !important;
  border-color: #2d9c29 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #81e29d !important;
  border-color: #81e29d !important;
  color: #135125 !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: #3bd266 !important;
  border-color: #3bd266 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #135125 !important;
  background-color: #3bd266 !important;
  border-color: #3bd266 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #846a5d !important;
  border-color: #846a5d !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: #514139 !important;
  border-color: #514139 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #514139 !important;
  border-color: #514139 !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: #2299aa;
  color: #2299aa;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #145862 !important;
  background-color: transparent!important;
  border-color: #145862 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #2299aa !important;
  border-color: #2299aa !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #50d04c;
  color: #50d04c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2d9c29 !important;
  background-color: transparent!important;
  border-color: #2d9c29 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #50d04c !important;
  border-color: #50d04c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #81e29d;
  color: #81e29d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #3bd266 !important;
  background-color: transparent!important;
  border-color: #3bd266 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #135125 !important;
  background-color: #81e29d !important;
  border-color: #81e29d !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #846a5d;
  color: #846a5d;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #514139 !important;
  background-color: transparent!important;
  border-color: #514139 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #846a5d !important;
  border-color: #846a5d !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: #2299aa !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #50d04c !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #81e29d !important;
}
.text-danger {
  color: #846a5d !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #114c55 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #299026 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #2fce5d !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #483a33 !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) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #2299aa;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #81e29d;
}
.alert-danger {
  background-color: #846a5d;
}
.mbr-gallery-filter li.active .btn {
  background-color: #2299aa;
  border-color: #2299aa;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #2299aa;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #6ad2e1;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #eefaee;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #beaca3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  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: #2299aa !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #2299aa;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #2299aa;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #2299aa;
}
.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: #2299aa;
  border-bottom-color: #2299aa;
}
.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: #2299aa !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: #ff6666 !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='%232299aa' %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-sFCw1qGFAI {
  z-index: 1000;
  width: 100%;
}
.cid-sFCw1qGFAI nav.navbar {
  position: fixed;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #2299aa !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.9);
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvMNWkFmB8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/screenshot-8.jpg");
}
.cid-tvMNWkFmB8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvMNWkFmB8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvMNWkFmB8 .mbr-text,
.cid-tvMNWkFmB8 .mbr-section-btn {
  color: #232323;
}
.cid-tvMNWkFmB8 .card-title,
.cid-tvMNWkFmB8 .card-box {
  color: #ffffff;
}
.cid-tvMNWkFmB8 .mbr-text,
.cid-tvMNWkFmB8 .link-wrap {
  color: #ffffff;
}
.cid-sFzxmVl7J6 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/untitled3-27.jpeg");
}
.cid-sFzxmVl7J6 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sFzxmVl7J6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .mbr-text,
.cid-sFzxmVl7J6 .mbr-section-btn {
  color: #bbbbbb;
}
.cid-sFzxmVl7J6 .mbr-section-title {
  text-align: left;
}
.cid-tWcdFmOMTw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tWcdFmOMTw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWcdFmOMTw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWcdFmOMTw .row {
  justify-content: center;
}
.cid-tWcdFmOMTw .col-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-tWcdFmOMTw .col-title {
    margin-bottom: 20px;
  }
}
.cid-tWcdFmOMTw .mbr-section-title {
  color: #003629;
  opacity: 0.85;
}
.cid-tWcdFmOMTw .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tWcdFmOMTw .mbr-section-subtitle {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-tWcdFmOMTw .card-row {
  align-items: stretch;
}
.cid-tWcdFmOMTw .card {
  padding: 10px;
}
.cid-tWcdFmOMTw .card-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  padding: 33px 38px 33px 38px;
  background-color: #ffffff;
  transition: .3s all;
  border: 2px solid #1d191f;
}
.cid-tWcdFmOMTw .mbr-iconfont {
  display: block;
  font-size: 40px;
  color: #000000;
}
.cid-tWcdFmOMTw .card-head {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tWcdFmOMTw .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  min-height: 80px;
  padding: 10px;
  margin-right: 25px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #c8d4f2;
  transition: .3s all;
}
@media (max-width: 767px) {
  .cid-tWcdFmOMTw .iconfont-wrapper {
    min-width: 60px;
    min-height: 60px;
    padding: 5px;
  }
}
.cid-tWcdFmOMTw .card-wrapper {
  display: flex;
  -webkit-transition: box-shadow 200ms ease, -webkit-transform 200ms ease;
  transition: box-shadow 200ms ease, transform 200ms ease;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .cid-tWcdFmOMTw .card-wrapper:hover {
    transform: translate(10px, -10px);
    box-shadow: -16px 16px 0 #7087c0;
  }
}
.cid-tWcdFmOMTw .card-wrapper:hover .card-box {
  background-color: #c8d4f2;
}
.cid-tWcdFmOMTw .card-wrapper:hover .iconfont-wrapper {
  background-color: #ffffff;
}
.cid-tWcdFmOMTw .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0;
}
.cid-tWcdFmOMTw .card-text {
  margin-top: 20px;
  color: #1d191f;
  margin-bottom: 0;
}
.cid-tWcdFmOMTw .card-title,
.cid-tWcdFmOMTw .iconfont-wrapper {
  text-align: left;
}
.cid-tWcdQMt2HE {
  padding-top: 5rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tWcdQMt2HE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWcdQMt2HE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWcdQMt2HE .container {
    padding: 0 16px;
  }
}
.cid-tWcdQMt2HE .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-tWcdQMt2HE .row {
    margin: 0 10px;
  }
}
.cid-tWcdQMt2HE .row .card {
  position: relative;
  padding: 0;
}
.cid-tWcdQMt2HE .row .card .decor-wrapper {
  position: absolute;
  top: -25rem;
  left: -11rem;
  width: 3000px;
  height: 4000px;
  border: 40px solid #7087c0;
  border-radius: 15rem;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-tWcdQMt2HE .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-tWcdQMt2HE .row .card .decor-wrapper {
    display: none;
  }
}
.cid-tWcdQMt2HE .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #eef2fd;
  color: #000000;
  border-radius: 100%;
  border: 5px solid #7087c0;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-tWcdQMt2HE .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-tWcdQMt2HE .row .card .icon-decor {
    display: none;
  }
}
.cid-tWcdQMt2HE .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-tWcdQMt2HE .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWcdQMt2HE .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWcdQMt2HE .items-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}
@media (max-width: 992px) {
  .cid-tWcdQMt2HE .items-wrapper {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.cid-tWcdQMt2HE .items-wrapper .item {
  border-radius: 16px !important;
  border: 1px solid #c8d4f2;
  overflow: hidden;
}
.cid-tWcdQMt2HE .items-wrapper .item .item-wrapper {
  height: 100%;
}
.cid-tWcdQMt2HE .items-wrapper .item .item-wrapper .card-box .title-wrap {
  padding: 30px;
  background-color: #c8d4f2;
}
@media (max-width: 992px) {
  .cid-tWcdQMt2HE .items-wrapper .item .item-wrapper .card-box .title-wrap {
    padding: 20px;
  }
}
.cid-tWcdQMt2HE .items-wrapper .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 20px;
}
.cid-tWcdQMt2HE .items-wrapper .item .item-wrapper .card-box .title-wrap .mbr-price {
  margin-bottom: 0;
}
.cid-tWcdQMt2HE .items-wrapper .item .item-wrapper .card-box .text-wrap {
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-tWcdQMt2HE .items-wrapper .item .item-wrapper .card-box .text-wrap {
    padding: 20px;
  }
}
.cid-tWcdQMt2HE .items-wrapper .item .item-wrapper .card-box .text-wrap .mbr-text {
  margin: 0;
}
.cid-tWcdQMt2HE .items-wrapper .item .item-wrapper .card-box .text-wrap .mbr-section-btn {
  margin-top: 20px;
  padding: 0 10px;
}
.cid-tWcdQMt2HE .items-wrapper .item .item-wrapper .card-box .text-wrap .mbr-section-btn .btn {
  padding: 40px 15px;
  min-width: auto;
  width: 100%;
  margin-left: 0;
}
@media (max-width: 1199px) {
  .cid-tWcdQMt2HE .items-wrapper .item .item-wrapper .card-box .text-wrap .mbr-section-btn .btn {
    padding: 20px;
    flex-direction: column;
    align-items: center;
  }
  .cid-tWcdQMt2HE .items-wrapper .item .item-wrapper .card-box .text-wrap .mbr-section-btn .btn .mbr-iconfont {
    margin: 10px 0 0 0;
  }
}
@media (max-width: 992px) {
  .cid-tWcdQMt2HE .items-wrapper .item .item-wrapper .card-box .text-wrap .mbr-section-btn .btn {
    padding: 20px;
    flex-direction: row;
  }
  .cid-tWcdQMt2HE .items-wrapper .item .item-wrapper .card-box .text-wrap .mbr-section-btn .btn .mbr-iconfont {
    margin: 0 0 0 10px;
  }
}
.cid-tWcdQMt2HE .mbr-section-title {
  color: #fdfcfc;
}
.cid-tWcdQMt2HE .item-title {
  color: #192227;
  text-align: center;
}
.cid-tWcdQMt2HE .mbr-price {
  color: #192227;
  text-align: center;
}
.cid-tWcdQMt2HE .mbr-text {
  color: #fdfcfc;
}
.cid-tWcdQMt2HE .mbr-text,
.cid-tWcdQMt2HE .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tWcdQMt2HE .item-title,
.cid-tWcdQMt2HE .icon-wrapper {
  color: #003629;
}
.cid-tvMMNhZE73 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bulut.jpg");
}
.cid-tvMMNhZE73 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvMMNhZE73 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvMMNhZE73 .mbr-text,
.cid-tvMMNhZE73 .mbr-section-btn {
  color: #232323;
}
.cid-tvMMNhZE73 .card-title,
.cid-tvMMNhZE73 .card-box {
  color: #ffffff;
}
.cid-tvMMNhZE73 .mbr-text,
.cid-tvMMNhZE73 .link-wrap {
  color: #ffffff;
}
.cid-ttwilTWKhO {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ttwilTWKhO img,
.cid-ttwilTWKhO .item-img {
  width: 100%;
}
.cid-ttwilTWKhO .item:focus,
.cid-ttwilTWKhO span:focus {
  outline: none;
}
.cid-ttwilTWKhO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ttwilTWKhO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ttwilTWKhO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ttwilTWKhO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ttwilTWKhO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ttwilTWKhO .mbr-section-title {
  color: #232323;
}
.cid-ttwilTWKhO .mbr-text,
.cid-ttwilTWKhO .mbr-section-btn {
  text-align: center;
  color: #353535;
}
.cid-ttwilTWKhO .item-title {
  text-align: center;
  color: #2299aa;
}
.cid-ttwilTWKhO .item-subtitle {
  text-align: center;
}
.cid-ttwilTWKhO .mbr-section-subtitle {
  color: #232323;
}
.cid-ttwSHGprrD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ttwSHGprrD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttwSHGprrD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttwSHGprrD .item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.cid-ttwSHGprrD .item .icon-wrap {
  text-align: center;
}
.cid-ttwSHGprrD .item span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
.cid-ttwSHGprrD .item::before {
  content: "\e96b";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: -15px;
  top: 12%;
  color: #6592e6;
}
.cid-ttwSHGprrD .item.first:before {
  display: none;
}
.cid-ttwSHGprrD .item.five:before {
  display: none;
}
.cid-ttwSHGprrD .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
}
.cid-ttwSHGprrD .text-box {
  margin-top: 1rem;
  text-align: center;
}
.cid-ttwSHGprrD .mbr-iconfont {
  color: #2299aa !important;
  position: absolute;
  top: 50%;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-ttwSHGprrD .item:before {
    display: none;
  }
  .cid-ttwSHGprrD .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ttwSHGprrD .mbr-text,
.cid-ttwSHGprrD .mbr-section-btn {
  color: #2299aa;
}
.cid-ttwSHGprrD .card-title,
.cid-ttwSHGprrD .card-box {
  color: #353535;
}
.cid-ttwSHGprrD .icon-title,
.cid-ttwSHGprrD .item .icon-wrap {
  color: #2299aa;
}
.cid-ttwSHGprrD .text-box .mbr-text {
  color: #353535;
}
.cid-ttwiojmGGf {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ttwiojmGGf img,
.cid-ttwiojmGGf .item-img {
  width: 100%;
}
.cid-ttwiojmGGf .item:focus,
.cid-ttwiojmGGf span:focus {
  outline: none;
}
.cid-ttwiojmGGf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ttwiojmGGf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ttwiojmGGf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ttwiojmGGf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ttwiojmGGf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ttwiojmGGf .mbr-section-title {
  color: #232323;
}
.cid-ttwiojmGGf .mbr-text,
.cid-ttwiojmGGf .mbr-section-btn {
  text-align: center;
}
.cid-ttwiojmGGf .item-title {
  text-align: center;
  color: #2299aa;
}
.cid-ttwiojmGGf .item-subtitle {
  text-align: center;
}
.cid-ttwiojmGGf .mbr-section-subtitle {
  text-align: center;
}
.cid-tvMONx2Ddn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/screenshot-8.jpg");
}
.cid-tvMONx2Ddn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvMONx2Ddn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvMONx2Ddn .mbr-text,
.cid-tvMONx2Ddn .mbr-section-btn {
  color: #232323;
}
.cid-tvMONx2Ddn .card-title,
.cid-tvMONx2Ddn .card-box {
  color: #ffffff;
}
.cid-tvMONx2Ddn .mbr-text,
.cid-tvMONx2Ddn .link-wrap {
  color: #ffffff;
}
.cid-ttARFmIoLX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttARFmIoLX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttARFmIoLX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttARFmIoLX .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-ttARFmIoLX .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ttARFmIoLX .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ttARFmIoLX .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ttARFmIoLX .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ttARFmIoLX .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ttARFmIoLX .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ttARFmIoLX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ttARFmIoLX .card-title {
  color: #2299aa;
}
.cid-ttIIVFw6e5 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/screenshot-10.jpeg");
}
.cid-ttIIVFw6e5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttIIVFw6e5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttIIVFw6e5 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ttIIVFw6e5 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ttIIVFw6e5 .row {
    text-align: center;
  }
  .cid-ttIIVFw6e5 .row > div {
    margin: auto;
  }
  .cid-ttIIVFw6e5 .social-row {
    justify-content: center;
  }
}
.cid-ttIIVFw6e5 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ttIIVFw6e5 .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-ttIIVFw6e5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ttIIVFw6e5 .list {
    margin-bottom: 0rem;
  }
}
.cid-ttIIVFw6e5 .mbr-text {
  color: #2299aa;
  text-align: right;
}
.cid-ttIIVFw6e5 .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-ttIIVFw6e5 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ttIIVFw6e5 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tvMmUyUDFU {
  z-index: 1000;
  width: 100%;
}
.cid-tvMmUyUDFU nav.navbar {
  position: fixed;
}
.cid-tvMmUyUDFU .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-tvMmUyUDFU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvMmUyUDFU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvMmUyUDFU .dropdown-item:hover,
.cid-tvMmUyUDFU .dropdown-item:focus {
  background: #2299aa !important;
  color: white !important;
}
.cid-tvMmUyUDFU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvMmUyUDFU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvMmUyUDFU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvMmUyUDFU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvMmUyUDFU .nav-link {
  position: relative;
}
.cid-tvMmUyUDFU .container {
  display: flex;
  margin: auto;
}
.cid-tvMmUyUDFU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvMmUyUDFU .dropdown-menu,
.cid-tvMmUyUDFU .navbar.opened {
  background: #fafafa !important;
}
.cid-tvMmUyUDFU .nav-item:focus,
.cid-tvMmUyUDFU .nav-link:focus {
  outline: none;
}
.cid-tvMmUyUDFU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvMmUyUDFU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvMmUyUDFU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvMmUyUDFU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvMmUyUDFU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvMmUyUDFU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvMmUyUDFU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.9);
}
.cid-tvMmUyUDFU .navbar.opened {
  transition: all 0.3s;
}
.cid-tvMmUyUDFU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvMmUyUDFU .navbar .navbar-logo img {
  width: auto;
}
.cid-tvMmUyUDFU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvMmUyUDFU .navbar.collapsed {
  justify-content: center;
}
.cid-tvMmUyUDFU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvMmUyUDFU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvMmUyUDFU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvMmUyUDFU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvMmUyUDFU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvMmUyUDFU .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-tvMmUyUDFU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvMmUyUDFU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvMmUyUDFU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvMmUyUDFU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvMmUyUDFU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvMmUyUDFU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvMmUyUDFU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvMmUyUDFU .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-tvMmUyUDFU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvMmUyUDFU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvMmUyUDFU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvMmUyUDFU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvMmUyUDFU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvMmUyUDFU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvMmUyUDFU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvMmUyUDFU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvMmUyUDFU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvMmUyUDFU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvMmUyUDFU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvMmUyUDFU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvMmUyUDFU .dropdown-item.active,
.cid-tvMmUyUDFU .dropdown-item:active {
  background-color: transparent;
}
.cid-tvMmUyUDFU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvMmUyUDFU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvMmUyUDFU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvMmUyUDFU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tvMmUyUDFU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvMmUyUDFU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvMmUyUDFU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvMmUyUDFU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvMmUyUDFU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvMmUyUDFU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tvMmUyUDFU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvMmUyUDFU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvMmUyUDFU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvMmUyUDFU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvMmUyUDFU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvMmUyUDFU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvMmUyUDFU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvMmUyUDFU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvMmUyUDFU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvMmUyUDFU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvMmUyUDFU .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-tvMmUyUDFU .navbar {
    height: 70px;
  }
  .cid-tvMmUyUDFU .navbar.opened {
    height: auto;
  }
  .cid-tvMmUyUDFU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvMQzzeVlh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/screenshot-8.jpg");
}
.cid-tvMQzzeVlh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvMQzzeVlh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvMQzzeVlh .mbr-text,
.cid-tvMQzzeVlh .mbr-section-btn {
  color: #232323;
}
.cid-tvMQzzeVlh .card-title,
.cid-tvMQzzeVlh .card-box {
  color: #ffffff;
}
.cid-tvMQzzeVlh .mbr-text,
.cid-tvMQzzeVlh .link-wrap {
  color: #ffffff;
}
.cid-tvMnk7g3UL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvMnk7g3UL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvMnk7g3UL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvMnk7g3UL .mbr-section-title {
  color: #2299aa;
}
.cid-tvMnmqUWZi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvMnmqUWZi blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tvMyRMFbQG {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvMyRMFbQG .line {
  background-color: #4479d9;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tvMyRMFbQG .mbr-text {
  text-align: left;
}
.cid-tX85K8cHfs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tX85K8cHfs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX85K8cHfs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX85K8cHfs .video-wrapper iframe {
  width: 100%;
}
.cid-tX85K8cHfs .mbr-section-title,
.cid-tX85K8cHfs .mbr-section-subtitle,
.cid-tX85K8cHfs .mbr-text {
  text-align: center;
}
.cid-tvMmUHq4EN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvMmUHq4EN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvMmUHq4EN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvMmUHq4EN .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-tvMmUHq4EN .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tvMmUHq4EN .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvMmUHq4EN .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tvMmUHq4EN .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tvMmUHq4EN .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tvMmUHq4EN .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tvMmUHq4EN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvMmUHq4EN .card-title {
  color: #2299aa;
}
.cid-tvMmUIb00E {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/screenshot-10.jpeg");
}
.cid-tvMmUIb00E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvMmUIb00E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvMmUIb00E .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tvMmUIb00E .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tvMmUIb00E .row {
    text-align: center;
  }
  .cid-tvMmUIb00E .row > div {
    margin: auto;
  }
  .cid-tvMmUIb00E .social-row {
    justify-content: center;
  }
}
.cid-tvMmUIb00E .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tvMmUIb00E .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tvMmUIb00E .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tvMmUIb00E .list {
    margin-bottom: 0rem;
  }
}
.cid-tvMmUIb00E .mbr-text {
  color: #2299aa;
  text-align: right;
}
.cid-tvMmUIb00E .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-tvMmUIb00E .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tvMmUIb00E div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tu5mRQ8KIO {
  z-index: 1000;
  width: 100%;
}
.cid-tu5mRQ8KIO nav.navbar {
  position: fixed;
}
.cid-tu5mRQ8KIO .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-tu5mRQ8KIO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tu5mRQ8KIO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tu5mRQ8KIO .dropdown-item:hover,
.cid-tu5mRQ8KIO .dropdown-item:focus {
  background: #2299aa !important;
  color: white !important;
}
.cid-tu5mRQ8KIO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tu5mRQ8KIO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tu5mRQ8KIO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tu5mRQ8KIO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tu5mRQ8KIO .nav-link {
  position: relative;
}
.cid-tu5mRQ8KIO .container {
  display: flex;
  margin: auto;
}
.cid-tu5mRQ8KIO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tu5mRQ8KIO .dropdown-menu,
.cid-tu5mRQ8KIO .navbar.opened {
  background: #fafafa !important;
}
.cid-tu5mRQ8KIO .nav-item:focus,
.cid-tu5mRQ8KIO .nav-link:focus {
  outline: none;
}
.cid-tu5mRQ8KIO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tu5mRQ8KIO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tu5mRQ8KIO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tu5mRQ8KIO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tu5mRQ8KIO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tu5mRQ8KIO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tu5mRQ8KIO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.9);
}
.cid-tu5mRQ8KIO .navbar.opened {
  transition: all 0.3s;
}
.cid-tu5mRQ8KIO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tu5mRQ8KIO .navbar .navbar-logo img {
  width: auto;
}
.cid-tu5mRQ8KIO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tu5mRQ8KIO .navbar.collapsed {
  justify-content: center;
}
.cid-tu5mRQ8KIO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tu5mRQ8KIO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tu5mRQ8KIO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tu5mRQ8KIO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tu5mRQ8KIO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tu5mRQ8KIO .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-tu5mRQ8KIO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tu5mRQ8KIO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tu5mRQ8KIO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tu5mRQ8KIO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tu5mRQ8KIO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tu5mRQ8KIO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tu5mRQ8KIO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tu5mRQ8KIO .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-tu5mRQ8KIO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tu5mRQ8KIO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tu5mRQ8KIO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tu5mRQ8KIO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tu5mRQ8KIO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tu5mRQ8KIO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tu5mRQ8KIO .navbar.navbar-short {
  min-height: 60px;
}
.cid-tu5mRQ8KIO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tu5mRQ8KIO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tu5mRQ8KIO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tu5mRQ8KIO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tu5mRQ8KIO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tu5mRQ8KIO .dropdown-item.active,
.cid-tu5mRQ8KIO .dropdown-item:active {
  background-color: transparent;
}
.cid-tu5mRQ8KIO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tu5mRQ8KIO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tu5mRQ8KIO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tu5mRQ8KIO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tu5mRQ8KIO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tu5mRQ8KIO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tu5mRQ8KIO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tu5mRQ8KIO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tu5mRQ8KIO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tu5mRQ8KIO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tu5mRQ8KIO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tu5mRQ8KIO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu5mRQ8KIO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu5mRQ8KIO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tu5mRQ8KIO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu5mRQ8KIO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tu5mRQ8KIO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tu5mRQ8KIO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu5mRQ8KIO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tu5mRQ8KIO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tu5mRQ8KIO .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-tu5mRQ8KIO .navbar {
    height: 70px;
  }
  .cid-tu5mRQ8KIO .navbar.opened {
    height: auto;
  }
  .cid-tu5mRQ8KIO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvMT2uFdya {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/screenshot-8.jpg");
}
.cid-tvMT2uFdya .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvMT2uFdya .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvMT2uFdya .mbr-text,
.cid-tvMT2uFdya .mbr-section-btn {
  color: #232323;
}
.cid-tvMT2uFdya .card-title,
.cid-tvMT2uFdya .card-box {
  color: #ffffff;
}
.cid-tvMT2uFdya .mbr-text,
.cid-tvMT2uFdya .link-wrap {
  color: #ffffff;
}
.cid-tW0JbhppjT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tW0JbhppjT .row {
  align-items: center;
}
.cid-tW0JbhppjT .main-col {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-tW0JbhppjT .main-col {
    flex-wrap: wrap;
  }
}
.cid-tW0JbhppjT .title-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 50%;
  padding: 50px 10px 10px 10px !important;
}
@media (max-width: 767px) {
  .cid-tW0JbhppjT .title-container {
    width: 100%;
    min-height: auto;
    margin-bottom: 50px;
    padding: 0 !important;
  }
}
.cid-tW0JbhppjT .main-title {
  color: #003629;
  opacity: 0.85;
  width: 100%;
}
.cid-tW0JbhppjT .main-subtitle {
  margin-top: 40px;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
.cid-tW0JbhppjT .form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50%;
  padding: 10px !important;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-tW0JbhppjT .form-container {
    width: 100%;
    min-height: auto;
    padding: 0 !important;
  }
}
.cid-tW0JbhppjT .form-bg {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  padding: 60px 50px;
  background-color: #ffffff;
  border: 1px solid #1d191f;
}
@media (max-width: 991px) {
  .cid-tW0JbhppjT .form-bg {
    padding: 50px 25px 50px 25px;
  }
}
@media (max-width: 767px) {
  .cid-tW0JbhppjT .form-bg {
    padding: 35px 30px;
  }
}
.cid-tW0JbhppjT form {
  width: 100%;
}
.cid-tW0JbhppjT form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tW0JbhppjT form p {
  color: #1d191f;
}
.cid-tW0JbhppjT form .mbr-section-btn {
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
  justify-content: center;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cid-tW0JbhppjT form .mbr-section-btn {
    width: 100%;
  }
}
.cid-tW0JbhppjT form .mbr-section-btn .btn {
  min-width: 120px;
  width: 100%;
  border: none !important;
}
.cid-tW0JbhppjT form .form-group {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  flex-grow: 1;
}
.cid-tW0JbhppjT form .form-control {
  height: 55px;
  border: 1px solid #818a91 !important;
  background: transparent;
  box-shadow: none !important;
  border-radius: 10px !important;
  margin-bottom: 0;
  padding: 7px 20px;
  font-size: 16px;
  line-height: 24px;
  color: #1d191f;
  font-weight: 400;
}
.cid-tW0JbhppjT form .form-control::-webkit-input-placeholder {
  color: #adadad;
}
.cid-tW0JbhppjT form .form-control::-moz-placeholder {
  color: #adadad;
}
.cid-tW0JbhppjT form .form-control:-moz-placeholder {
  color: #adadad;
}
.cid-tW0JbhppjT form .form-control:-ms-input-placeholder {
  color: #adadad;
}
.cid-tW0JbhppjT form select {
  color: #adadad !important;
}
.cid-tW0JbhppjT form textarea {
  height: 192px !important;
}
.cid-tW0JbhppjT form input:active,
.cid-tW0JbhppjT form textarea:active,
.cid-tW0JbhppjT form input:focus,
.cid-tW0JbhppjT form textarea:focus {
  background-color: transparent !important;
  border-color: #818a91 !important;
}
.cid-tW0JbhppjT form input:active::-webkit-input-placeholder,
.cid-tW0JbhppjT form textarea:active::-webkit-input-placeholder,
.cid-tW0JbhppjT form input:focus::-webkit-input-placeholder,
.cid-tW0JbhppjT form textarea:focus::-webkit-input-placeholder {
  color: #adadad;
}
.cid-tW0JbhppjT form input:active::-moz-placeholder,
.cid-tW0JbhppjT form textarea:active::-moz-placeholder,
.cid-tW0JbhppjT form input:focus::-moz-placeholder,
.cid-tW0JbhppjT form textarea:focus::-moz-placeholder {
  color: #adadad;
}
.cid-tW0JbhppjT form input:active:-moz-placeholder,
.cid-tW0JbhppjT form textarea:active:-moz-placeholder,
.cid-tW0JbhppjT form input:focus:-moz-placeholder,
.cid-tW0JbhppjT form textarea:focus:-moz-placeholder {
  color: #adadad;
}
.cid-tW0JbhppjT form input:active:-ms-input-placeholder,
.cid-tW0JbhppjT form textarea:active:-ms-input-placeholder,
.cid-tW0JbhppjT form input:focus:-ms-input-placeholder,
.cid-tW0JbhppjT form textarea:focus:-ms-input-placeholder {
  color: #adadad;
}
.cid-tW0JbhppjT form .row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}
.cid-tW0JbhppjT form .row [class*=col] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-tW0JbhppjT form label {
  width: 100%;
  color: #1d191f;
  margin-bottom: 4px;
}
.cid-tW0JbhppjT form .form-check-input {
  border-color: #818a91 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tW0JbhppjT form .form-check-input:focus,
.cid-tW0JbhppjT form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #1d191f !important;
}
.cid-tW0JbhppjT form .form-check-input:checked {
  border-color: #1d191f !important;
  background-color: #1d191f !important;
}
.cid-tW0JdB4cBu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tW0JdB4cBu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tW0JdB4cBu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tW0JdB4cBu .container {
  max-width: 1140px;
}
.cid-tW0JdB4cBu .row {
  align-items: stretch;
}
.cid-tW0JdB4cBu .col-title {
  position: relative;
  padding: 10px;
  flex-grow: 1;
}
.cid-tW0JdB4cBu .col-text {
  padding: 10px;
  flex-grow: 1;
}
.cid-tW0JdB4cBu .title-container {
  position: sticky;
  top: 57px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tW0JdB4cBu .title-container {
    position: static;
  }
}
.cid-tW0JdB4cBu .mbr-section-title {
  color: #003629;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-tW0JdB4cBu .item-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-tW0JdB4cBu .item-text:not(:first-child) {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .cid-tW0JdB4cBu .item-text:not(:first-child) {
    margin-bottom: 0;
  }
}
.cid-tW0JdB4cBu .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 15px !important;
  width: 100%;
}
.cid-tW0JdB4cBu .mbr-text {
  color: #1d191f;
  margin-bottom: 0;
  width: 100%;
}
.cid-tW0Jf0hb3c {
  padding-top: 2rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #f6f6f6;
}
.cid-tW0Jf0hb3c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tW0Jf0hb3c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tW0Jf0hb3c .container {
  max-width: 1140px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tW0Jf0hb3c .container {
    padding: 0 30px !important;
  }
}
.cid-tW0Jf0hb3c .row {
  justify-content: center;
}
.cid-tW0Jf0hb3c .col-title {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .cid-tW0Jf0hb3c .col-title {
    margin-bottom: 50px;
  }
}
.cid-tW0Jf0hb3c .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tW0Jf0hb3c .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tW0Jf0hb3c .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 28px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tW0Jf0hb3c .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tW0Jf0hb3c .cards-wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.cid-tW0Jf0hb3c .card {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 30px;
  width: 32%;
  margin: 10px 0;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .cid-tW0Jf0hb3c .card {
    width: 49%;
  }
}
@media (max-width: 767px) {
  .cid-tW0Jf0hb3c .card {
    width: 100%;
  }
}
.cid-tW0Jf0hb3c .card:nth-child(1) {
  background-color: #4479d9;
  border-radius: 30px 144px 30px 30px;
}
.cid-tW0Jf0hb3c .card:nth-child(1):hover {
  border-radius: 120px 0 0 120px;
}
.cid-tW0Jf0hb3c .card:nth-child(2) {
  background-color: #40b0bf;
  border-radius: 118px 30px 30px 30px;
}
.cid-tW0Jf0hb3c .card:nth-child(2):hover {
  border-radius: 0 120px 0 0;
}
.cid-tW0Jf0hb3c .card:nth-child(3) {
  background-color: #ff9966;
  border-radius: 30px 140px 30px 30px;
}
.cid-tW0Jf0hb3c .card:nth-child(3):hover {
  border-radius: 0 120px;
}
.cid-tW0Jf0hb3c .card:nth-child(4) {
  background-color: #d6c3ea;
  border-radius: 23px 80px 23px 23px;
}
.cid-tW0Jf0hb3c .card:nth-child(4):hover {
  border-radius: 120px 0 0 0;
}
.cid-tW0Jf0hb3c .card:nth-child(5) {
  background-color: #4a033a;
  border-radius: 30px 30px 114px 30px;
}
.cid-tW0Jf0hb3c .card:nth-child(5):hover {
  border-radius: 120px 0 0 0;
}
.cid-tW0Jf0hb3c .card:nth-child(6) {
  background-color: #c8d4f2;
  border-radius: 140px 30px 30px 30px;
}
.cid-tW0Jf0hb3c .card:nth-child(6):hover {
  border-radius: 0 120px 0 0;
}
.cid-tW0Jf0hb3c .card-wrap {
  padding: 10px;
  width: 100%;
}
.cid-tW0Jf0hb3c .card-title {
  margin-bottom: 0;
  width: 100%;
}
.cid-tW0Jf0hb3c .card-title-1 {
  color: #ffffff;
}
.cid-tW0Jf0hb3c .card-title-2 {
  color: #1d191f;
  text-align: center;
}
.cid-tW0Jf0hb3c .card-title-3 {
  color: #ffffff;
}
.cid-tW0Jf0hb3c .card-title-4 {
  color: #1d191f;
}
.cid-tW0Jf0hb3c .card-title-5 {
  color: #ffffff;
}
.cid-tW0Jf0hb3c .card-title-6 {
  color: #1d191f;
}
.cid-tW0Jf0hb3c .card-text {
  width: 100%;
  margin-top: 14px;
  margin-bottom: 0;
}
.cid-tW0Jf0hb3c .card-text-1 {
  color: #ffffff;
  text-align: left;
}
.cid-tW0Jf0hb3c .card-text-2 {
  color: #1d191f;
  text-align: center;
}
.cid-tW0Jf0hb3c .card-text-3 {
  color: #ffffff;
  text-align: center;
}
.cid-tW0Jf0hb3c .card-text-4 {
  color: #1d191f;
}
.cid-tW0Jf0hb3c .card-text-5 {
  color: #ffffff;
}
.cid-tW0Jf0hb3c .card-text-6 {
  color: #1d191f;
}
.cid-tvN86LrY2y {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/bulut3-2.png");
}
.cid-tvN86LrY2y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvN86LrY2y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvN86LrY2y .mbr-text,
.cid-tvN86LrY2y .mbr-section-btn {
  color: #232323;
}
.cid-tvN86LrY2y .card-title,
.cid-tvN86LrY2y .card-box {
  color: #ffffff;
}
.cid-tvN86LrY2y .mbr-text,
.cid-tvN86LrY2y .link-wrap {
  color: #ffffff;
}
.cid-tW0JfWIeBu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-tW0JfWIeBu .bg-img {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 700px;
  height: 400px;
  border-top-left-radius: 200px;
  background-color: #ffffff;
}
.cid-tW0JfWIeBu .row {
  align-items: stretch;
}
.cid-tW0JfWIeBu .content-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-tW0JfWIeBu .content-col {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.cid-tW0JfWIeBu .col-text {
  width: 40%;
}
@media (max-width: 1440px) {
  .cid-tW0JfWIeBu .col-text {
    width: 50%;
    padding-left: 10%;
  }
}
@media (max-width: 1024px) {
  .cid-tW0JfWIeBu .col-text {
    width: 45%;
    padding-left: 15px;
  }
}
@media (max-width: 991px) {
  .cid-tW0JfWIeBu .col-text {
    width: 70%;
    padding: 0 !important;
    text-align: center !important;
  }
}
.cid-tW0JfWIeBu .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.cid-tW0JfWIeBu .mbr-section-title {
  width: 100%;
  color: #000000;
  opacity: 0.85;
  margin-bottom: 25px;
  margin-top: 15px;
}
.cid-tW0JfWIeBu .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  opacity: 0.85;
  width: 100%;
  margin-bottom: 42px;
}
.cid-tW0JfWIeBu .col-card {
  display: flex;
  width: 40%;
}
@media (max-width: 1024px) {
  .cid-tW0JfWIeBu .col-card {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .cid-tW0JfWIeBu .col-card {
    width: 100%;
  }
}
.cid-tW0JfWIeBu .card-container {
  flex-grow: 1;
  position: relative;
  margin: 0 18px 18px;
}
@media (max-width: 1024px) {
  .cid-tW0JfWIeBu .card-container {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .cid-tW0JfWIeBu .card-container {
    width: 85%;
    margin: 0 auto;
    flex-grow: 0;
  }
}
.cid-tW0JfWIeBu .card-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #d4d4d4;
}
@media (max-width: 1024px) {
  .cid-tW0JfWIeBu .card-wrap {
    width: 85%;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .cid-tW0JfWIeBu .card-wrap {
    width: 100%;
    margin: 0;
  }
}
.cid-tW0JfWIeBu .card-item-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 228px;
  padding: 77px 54px 53px;
  width: 100%;
  background-color: #f6f6f6;
}
@media (max-width: 991px) {
  .cid-tW0JfWIeBu .card-item-1 {
    text-align: center !important;
  }
}
.cid-tW0JfWIeBu .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 8px;
  width: 100%;
}
.cid-tW0JfWIeBu .card-subtitle {
  color: #ffffff;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tW0JfWIeBu .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tW0JfWIeBu .card-text {
  color: #003629;
  opacity: 0.55;
  margin-bottom: 0;
  width: 100%;
  text-align: left;
}
.cid-tW0JfWIeBu .card-item-2,
.cid-tW0JfWIeBu .card-item-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 54px;
  min-height: 159px;
  width: 100%;
  border-top: 2px solid #d4d4d4;
}
@media (max-width: 991px) {
  .cid-tW0JfWIeBu .card-item-2,
  .cid-tW0JfWIeBu .card-item-3 {
    text-align: center !important;
  }
}
.cid-tW0JfWIeBu .card-item-2 {
  background-color: #c9d2e8;
}
.cid-tW0JfWIeBu .card-item-3 {
  background-color: #c8d4f2;
}
.cid-tW0JfWIeBu .card-back {
  z-index: 2;
  position: absolute;
  right: -18px;
  top: 18px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f6f6f6;
  border: 2px solid #d4d4d4;
}
@media (max-width: 1024px) {
  .cid-tW0JfWIeBu .card-back {
    width: calc(85% + 18px);
    right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tW0JfWIeBu .card-back {
    width: 100%;
    right: -18px;
  }
}
.cid-tu5mRTrNco {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/screenshot-10.jpeg");
}
.cid-tu5mRTrNco .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu5mRTrNco .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu5mRTrNco .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tu5mRTrNco .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tu5mRTrNco .row {
    text-align: center;
  }
  .cid-tu5mRTrNco .row > div {
    margin: auto;
  }
  .cid-tu5mRTrNco .social-row {
    justify-content: center;
  }
}
.cid-tu5mRTrNco .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tu5mRTrNco .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tu5mRTrNco .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tu5mRTrNco .list {
    margin-bottom: 0rem;
  }
}
.cid-tu5mRTrNco .mbr-text {
  color: #2299aa;
  text-align: right;
}
.cid-tu5mRTrNco .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-tu5mRTrNco .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tu5mRTrNco div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tWhXgibtex {
  z-index: 1000;
  width: 100%;
}
.cid-tWhXgibtex nav.navbar {
  position: fixed;
}
.cid-tWhXgibtex .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-tWhXgibtex .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWhXgibtex .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWhXgibtex .dropdown-item:hover,
.cid-tWhXgibtex .dropdown-item:focus {
  background: #2299aa !important;
  color: white !important;
}
.cid-tWhXgibtex .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWhXgibtex .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWhXgibtex .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWhXgibtex .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWhXgibtex .nav-link {
  position: relative;
}
.cid-tWhXgibtex .container {
  display: flex;
  margin: auto;
}
.cid-tWhXgibtex .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWhXgibtex .dropdown-menu,
.cid-tWhXgibtex .navbar.opened {
  background: #fafafa !important;
}
.cid-tWhXgibtex .nav-item:focus,
.cid-tWhXgibtex .nav-link:focus {
  outline: none;
}
.cid-tWhXgibtex .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWhXgibtex .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWhXgibtex .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWhXgibtex .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWhXgibtex .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWhXgibtex .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWhXgibtex .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.9);
}
.cid-tWhXgibtex .navbar.opened {
  transition: all 0.3s;
}
.cid-tWhXgibtex .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWhXgibtex .navbar .navbar-logo img {
  width: auto;
}
.cid-tWhXgibtex .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWhXgibtex .navbar.collapsed {
  justify-content: center;
}
.cid-tWhXgibtex .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWhXgibtex .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWhXgibtex .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tWhXgibtex .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWhXgibtex .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWhXgibtex .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-tWhXgibtex .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWhXgibtex .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWhXgibtex .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWhXgibtex .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWhXgibtex .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWhXgibtex .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWhXgibtex .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWhXgibtex .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-tWhXgibtex .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWhXgibtex .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWhXgibtex .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWhXgibtex .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWhXgibtex .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWhXgibtex .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWhXgibtex .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWhXgibtex .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWhXgibtex .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWhXgibtex .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWhXgibtex .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWhXgibtex .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWhXgibtex .dropdown-item.active,
.cid-tWhXgibtex .dropdown-item:active {
  background-color: transparent;
}
.cid-tWhXgibtex .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWhXgibtex .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWhXgibtex .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWhXgibtex .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tWhXgibtex .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWhXgibtex .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWhXgibtex ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWhXgibtex .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWhXgibtex button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWhXgibtex button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWhXgibtex button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWhXgibtex button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWhXgibtex button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWhXgibtex button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWhXgibtex nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWhXgibtex nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWhXgibtex nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWhXgibtex nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWhXgibtex .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWhXgibtex a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWhXgibtex .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-tWhXgibtex .navbar {
    height: 70px;
  }
  .cid-tWhXgibtex .navbar.opened {
    height: auto;
  }
  .cid-tWhXgibtex .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWhXgiGprM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/screenshot-8.jpg");
}
.cid-tWhXgiGprM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWhXgiGprM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWhXgiGprM .mbr-text,
.cid-tWhXgiGprM .mbr-section-btn {
  color: #232323;
}
.cid-tWhXgiGprM .card-title,
.cid-tWhXgiGprM .card-box {
  color: #ffffff;
}
.cid-tWhXgiGprM .mbr-text,
.cid-tWhXgiGprM .link-wrap {
  color: #ffffff;
}
.cid-tWhXgj2o4A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWhXgj2o4A .row {
  align-items: center;
}
.cid-tWhXgj2o4A .main-col {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-tWhXgj2o4A .main-col {
    flex-wrap: wrap;
  }
}
.cid-tWhXgj2o4A .title-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 50%;
  padding: 50px 10px 10px 10px !important;
}
@media (max-width: 767px) {
  .cid-tWhXgj2o4A .title-container {
    width: 100%;
    min-height: auto;
    margin-bottom: 50px;
    padding: 0 !important;
  }
}
.cid-tWhXgj2o4A .main-title {
  color: #003629;
  opacity: 0.85;
  width: 100%;
}
.cid-tWhXgj2o4A .main-subtitle {
  margin-top: 40px;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
.cid-tWhXgj2o4A .form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50%;
  padding: 10px !important;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-tWhXgj2o4A .form-container {
    width: 100%;
    min-height: auto;
    padding: 0 !important;
  }
}
.cid-tWhXgj2o4A .form-bg {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  padding: 60px 50px;
  background-color: #ffffff;
  border: 1px solid #1d191f;
}
@media (max-width: 991px) {
  .cid-tWhXgj2o4A .form-bg {
    padding: 50px 25px 50px 25px;
  }
}
@media (max-width: 767px) {
  .cid-tWhXgj2o4A .form-bg {
    padding: 35px 30px;
  }
}
.cid-tWhXgj2o4A form {
  width: 100%;
}
.cid-tWhXgj2o4A form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tWhXgj2o4A form p {
  color: #1d191f;
}
.cid-tWhXgj2o4A form .mbr-section-btn {
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
  justify-content: center;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cid-tWhXgj2o4A form .mbr-section-btn {
    width: 100%;
  }
}
.cid-tWhXgj2o4A form .mbr-section-btn .btn {
  min-width: 120px;
  width: 100%;
  border: none !important;
}
.cid-tWhXgj2o4A form .form-group {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  flex-grow: 1;
}
.cid-tWhXgj2o4A form .form-control {
  height: 55px;
  border: 1px solid #818a91 !important;
  background: transparent;
  box-shadow: none !important;
  border-radius: 10px !important;
  margin-bottom: 0;
  padding: 7px 20px;
  font-size: 16px;
  line-height: 24px;
  color: #1d191f;
  font-weight: 400;
}
.cid-tWhXgj2o4A form .form-control::-webkit-input-placeholder {
  color: #adadad;
}
.cid-tWhXgj2o4A form .form-control::-moz-placeholder {
  color: #adadad;
}
.cid-tWhXgj2o4A form .form-control:-moz-placeholder {
  color: #adadad;
}
.cid-tWhXgj2o4A form .form-control:-ms-input-placeholder {
  color: #adadad;
}
.cid-tWhXgj2o4A form select {
  color: #adadad !important;
}
.cid-tWhXgj2o4A form textarea {
  height: 192px !important;
}
.cid-tWhXgj2o4A form input:active,
.cid-tWhXgj2o4A form textarea:active,
.cid-tWhXgj2o4A form input:focus,
.cid-tWhXgj2o4A form textarea:focus {
  background-color: transparent !important;
  border-color: #818a91 !important;
}
.cid-tWhXgj2o4A form input:active::-webkit-input-placeholder,
.cid-tWhXgj2o4A form textarea:active::-webkit-input-placeholder,
.cid-tWhXgj2o4A form input:focus::-webkit-input-placeholder,
.cid-tWhXgj2o4A form textarea:focus::-webkit-input-placeholder {
  color: #adadad;
}
.cid-tWhXgj2o4A form input:active::-moz-placeholder,
.cid-tWhXgj2o4A form textarea:active::-moz-placeholder,
.cid-tWhXgj2o4A form input:focus::-moz-placeholder,
.cid-tWhXgj2o4A form textarea:focus::-moz-placeholder {
  color: #adadad;
}
.cid-tWhXgj2o4A form input:active:-moz-placeholder,
.cid-tWhXgj2o4A form textarea:active:-moz-placeholder,
.cid-tWhXgj2o4A form input:focus:-moz-placeholder,
.cid-tWhXgj2o4A form textarea:focus:-moz-placeholder {
  color: #adadad;
}
.cid-tWhXgj2o4A form input:active:-ms-input-placeholder,
.cid-tWhXgj2o4A form textarea:active:-ms-input-placeholder,
.cid-tWhXgj2o4A form input:focus:-ms-input-placeholder,
.cid-tWhXgj2o4A form textarea:focus:-ms-input-placeholder {
  color: #adadad;
}
.cid-tWhXgj2o4A form .row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}
.cid-tWhXgj2o4A form .row [class*=col] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-tWhXgj2o4A form label {
  width: 100%;
  color: #1d191f;
  margin-bottom: 4px;
}
.cid-tWhXgj2o4A form .form-check-input {
  border-color: #818a91 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tWhXgj2o4A form .form-check-input:focus,
.cid-tWhXgj2o4A form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #1d191f !important;
}
.cid-tWhXgj2o4A form .form-check-input:checked {
  border-color: #1d191f !important;
  background-color: #1d191f !important;
}
.cid-tWhXgjrVyi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWhXgjrVyi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWhXgjrVyi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWhXgjrVyi .container {
  max-width: 1140px;
}
.cid-tWhXgjrVyi .row {
  align-items: stretch;
}
.cid-tWhXgjrVyi .col-title {
  position: relative;
  padding: 10px;
  flex-grow: 1;
}
.cid-tWhXgjrVyi .col-text {
  padding: 10px;
  flex-grow: 1;
}
.cid-tWhXgjrVyi .title-container {
  position: sticky;
  top: 57px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tWhXgjrVyi .title-container {
    position: static;
  }
}
.cid-tWhXgjrVyi .mbr-section-title {
  color: #003629;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-tWhXgjrVyi .item-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-tWhXgjrVyi .item-text:not(:first-child) {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .cid-tWhXgjrVyi .item-text:not(:first-child) {
    margin-bottom: 0;
  }
}
.cid-tWhXgjrVyi .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 15px !important;
  width: 100%;
}
.cid-tWhXgjrVyi .mbr-text {
  color: #1d191f;
  margin-bottom: 0;
  width: 100%;
}
.cid-tWhXgjQmDZ {
  padding-top: 2rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tWhXgjQmDZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWhXgjQmDZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWhXgjQmDZ .container {
  max-width: 1140px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tWhXgjQmDZ .container {
    padding: 0 30px !important;
  }
}
.cid-tWhXgjQmDZ .row {
  justify-content: center;
}
.cid-tWhXgjQmDZ .col-title {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .cid-tWhXgjQmDZ .col-title {
    margin-bottom: 50px;
  }
}
.cid-tWhXgjQmDZ .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tWhXgjQmDZ .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tWhXgjQmDZ .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 28px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tWhXgjQmDZ .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tWhXgjQmDZ .cards-wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.cid-tWhXgjQmDZ .card {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 30px;
  width: 32%;
  margin: 10px 0;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .cid-tWhXgjQmDZ .card {
    width: 49%;
  }
}
@media (max-width: 767px) {
  .cid-tWhXgjQmDZ .card {
    width: 100%;
  }
}
.cid-tWhXgjQmDZ .card:nth-child(1) {
  background-color: #4479d9;
  border-radius: 30px 144px 30px 30px;
}
.cid-tWhXgjQmDZ .card:nth-child(1):hover {
  border-radius: 120px 0 0 120px;
}
.cid-tWhXgjQmDZ .card:nth-child(2) {
  background-color: #40b0bf;
  border-radius: 118px 30px 30px 30px;
}
.cid-tWhXgjQmDZ .card:nth-child(2):hover {
  border-radius: 0 120px 0 0;
}
.cid-tWhXgjQmDZ .card:nth-child(3) {
  background-color: #ff9966;
  border-radius: 30px 140px 30px 30px;
}
.cid-tWhXgjQmDZ .card:nth-child(3):hover {
  border-radius: 0 120px;
}
.cid-tWhXgjQmDZ .card:nth-child(4) {
  background-color: #d6c3ea;
  border-radius: 23px 80px 23px 23px;
}
.cid-tWhXgjQmDZ .card:nth-child(4):hover {
  border-radius: 120px 0 0 0;
}
.cid-tWhXgjQmDZ .card:nth-child(5) {
  background-color: #4a033a;
  border-radius: 30px 30px 114px 30px;
}
.cid-tWhXgjQmDZ .card:nth-child(5):hover {
  border-radius: 120px 0 0 0;
}
.cid-tWhXgjQmDZ .card:nth-child(6) {
  background-color: #c8d4f2;
  border-radius: 140px 30px 30px 30px;
}
.cid-tWhXgjQmDZ .card:nth-child(6):hover {
  border-radius: 0 120px 0 0;
}
.cid-tWhXgjQmDZ .card-wrap {
  padding: 10px;
  width: 100%;
}
.cid-tWhXgjQmDZ .card-title {
  margin-bottom: 0;
  width: 100%;
}
.cid-tWhXgjQmDZ .card-title-1 {
  color: #ffffff;
}
.cid-tWhXgjQmDZ .card-title-2 {
  color: #1d191f;
  text-align: center;
}
.cid-tWhXgjQmDZ .card-title-3 {
  color: #ffffff;
}
.cid-tWhXgjQmDZ .card-title-4 {
  color: #1d191f;
}
.cid-tWhXgjQmDZ .card-title-5 {
  color: #ffffff;
}
.cid-tWhXgjQmDZ .card-title-6 {
  color: #1d191f;
}
.cid-tWhXgjQmDZ .card-text {
  width: 100%;
  margin-top: 14px;
  margin-bottom: 0;
}
.cid-tWhXgjQmDZ .card-text-1 {
  color: #ffffff;
  text-align: left;
}
.cid-tWhXgjQmDZ .card-text-2 {
  color: #1d191f;
  text-align: center;
}
.cid-tWhXgjQmDZ .card-text-3 {
  color: #ffffff;
  text-align: center;
}
.cid-tWhXgjQmDZ .card-text-4 {
  color: #1d191f;
}
.cid-tWhXgjQmDZ .card-text-5 {
  color: #ffffff;
}
.cid-tWhXgjQmDZ .card-text-6 {
  color: #1d191f;
}
.cid-tWhXgkfw15 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/bulut3-2.png");
}
.cid-tWhXgkfw15 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWhXgkfw15 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWhXgkfw15 .mbr-text,
.cid-tWhXgkfw15 .mbr-section-btn {
  color: #232323;
}
.cid-tWhXgkfw15 .card-title,
.cid-tWhXgkfw15 .card-box {
  color: #ffffff;
}
.cid-tWhXgkfw15 .mbr-text,
.cid-tWhXgkfw15 .link-wrap {
  color: #ffffff;
}
.cid-tWhXgkBSGk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-tWhXgkBSGk .bg-img {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 700px;
  height: 400px;
  border-top-left-radius: 200px;
  background-color: #ffffff;
}
.cid-tWhXgkBSGk .row {
  align-items: stretch;
}
.cid-tWhXgkBSGk .content-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tWhXgkBSGk .content-col {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.cid-tWhXgkBSGk .col-text {
  width: 40%;
}
@media (max-width: 1440px) {
  .cid-tWhXgkBSGk .col-text {
    width: 50%;
    padding-left: 10%;
    padding-left: 0;
    padding-right: 10%;
  }
}
@media (max-width: 1024px) {
  .cid-tWhXgkBSGk .col-text {
    width: 45%;
    padding-left: 15px;
    padding-left: 0;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .cid-tWhXgkBSGk .col-text {
    width: 70%;
    padding: 0 !important;
    text-align: center !important;
  }
}
.cid-tWhXgkBSGk .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.cid-tWhXgkBSGk .mbr-section-title {
  width: 100%;
  color: #000000;
  opacity: 0.85;
  margin-bottom: 25px;
  margin-top: 15px;
}
.cid-tWhXgkBSGk .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  opacity: 0.85;
  width: 100%;
  margin-bottom: 42px;
}
.cid-tWhXgkBSGk .col-card {
  display: flex;
  width: 40%;
}
@media (max-width: 1024px) {
  .cid-tWhXgkBSGk .col-card {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .cid-tWhXgkBSGk .col-card {
    width: 100%;
  }
}
.cid-tWhXgkBSGk .card-container {
  flex-grow: 1;
  position: relative;
  margin: 0 18px 18px;
}
@media (max-width: 1024px) {
  .cid-tWhXgkBSGk .card-container {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .cid-tWhXgkBSGk .card-container {
    width: 85%;
    margin: 0 auto;
    flex-grow: 0;
  }
}
.cid-tWhXgkBSGk .card-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #d4d4d4;
}
@media (max-width: 1024px) {
  .cid-tWhXgkBSGk .card-wrap {
    width: 85%;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .cid-tWhXgkBSGk .card-wrap {
    width: 100%;
    margin: 0;
  }
}
.cid-tWhXgkBSGk .card-item-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 228px;
  padding: 77px 54px 53px;
  width: 100%;
  background-color: #f6f6f6;
}
@media (max-width: 991px) {
  .cid-tWhXgkBSGk .card-item-1 {
    text-align: center !important;
  }
}
.cid-tWhXgkBSGk .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 8px;
  width: 100%;
}
.cid-tWhXgkBSGk .card-subtitle {
  color: #ffffff;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWhXgkBSGk .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tWhXgkBSGk .card-text {
  color: #003629;
  opacity: 0.55;
  margin-bottom: 0;
  width: 100%;
  text-align: left;
}
.cid-tWhXgkBSGk .card-item-2,
.cid-tWhXgkBSGk .card-item-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 54px;
  min-height: 159px;
  width: 100%;
  border-top: 2px solid #d4d4d4;
}
@media (max-width: 991px) {
  .cid-tWhXgkBSGk .card-item-2,
  .cid-tWhXgkBSGk .card-item-3 {
    text-align: center !important;
  }
}
.cid-tWhXgkBSGk .card-item-2 {
  background-color: #c9d2e8;
}
.cid-tWhXgkBSGk .card-item-3 {
  background-color: #c8d4f2;
}
.cid-tWhXgkBSGk .card-back {
  z-index: 2;
  position: absolute;
  right: -18px;
  top: 18px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f6f6f6;
  border: 2px solid #d4d4d4;
}
@media (max-width: 1024px) {
  .cid-tWhXgkBSGk .card-back {
    width: calc(85% + 18px);
    right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tWhXgkBSGk .card-back {
    width: 100%;
    right: -18px;
  }
}
.cid-tWhXgl0uDM {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/screenshot-10.jpeg");
}
.cid-tWhXgl0uDM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWhXgl0uDM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWhXgl0uDM .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tWhXgl0uDM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tWhXgl0uDM .row {
    text-align: center;
  }
  .cid-tWhXgl0uDM .row > div {
    margin: auto;
  }
  .cid-tWhXgl0uDM .social-row {
    justify-content: center;
  }
}
.cid-tWhXgl0uDM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tWhXgl0uDM .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tWhXgl0uDM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tWhXgl0uDM .list {
    margin-bottom: 0rem;
  }
}
.cid-tWhXgl0uDM .mbr-text {
  color: #2299aa;
  text-align: right;
}
.cid-tWhXgl0uDM .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-tWhXgl0uDM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tWhXgl0uDM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tX7ZG9B7Qn {
  z-index: 1000;
  width: 100%;
}
.cid-tX7ZG9B7Qn nav.navbar {
  position: fixed;
}
.cid-tX7ZG9B7Qn .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-tX7ZG9B7Qn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tX7ZG9B7Qn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tX7ZG9B7Qn .dropdown-item:hover,
.cid-tX7ZG9B7Qn .dropdown-item:focus {
  background: #2299aa !important;
  color: white !important;
}
.cid-tX7ZG9B7Qn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tX7ZG9B7Qn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tX7ZG9B7Qn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tX7ZG9B7Qn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tX7ZG9B7Qn .nav-link {
  position: relative;
}
.cid-tX7ZG9B7Qn .container {
  display: flex;
  margin: auto;
}
.cid-tX7ZG9B7Qn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tX7ZG9B7Qn .dropdown-menu,
.cid-tX7ZG9B7Qn .navbar.opened {
  background: #fafafa !important;
}
.cid-tX7ZG9B7Qn .nav-item:focus,
.cid-tX7ZG9B7Qn .nav-link:focus {
  outline: none;
}
.cid-tX7ZG9B7Qn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tX7ZG9B7Qn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tX7ZG9B7Qn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tX7ZG9B7Qn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tX7ZG9B7Qn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tX7ZG9B7Qn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tX7ZG9B7Qn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.9);
}
.cid-tX7ZG9B7Qn .navbar.opened {
  transition: all 0.3s;
}
.cid-tX7ZG9B7Qn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tX7ZG9B7Qn .navbar .navbar-logo img {
  width: auto;
}
.cid-tX7ZG9B7Qn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tX7ZG9B7Qn .navbar.collapsed {
  justify-content: center;
}
.cid-tX7ZG9B7Qn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tX7ZG9B7Qn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tX7ZG9B7Qn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tX7ZG9B7Qn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tX7ZG9B7Qn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tX7ZG9B7Qn .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-tX7ZG9B7Qn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tX7ZG9B7Qn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tX7ZG9B7Qn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tX7ZG9B7Qn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tX7ZG9B7Qn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tX7ZG9B7Qn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tX7ZG9B7Qn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tX7ZG9B7Qn .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-tX7ZG9B7Qn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tX7ZG9B7Qn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tX7ZG9B7Qn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tX7ZG9B7Qn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tX7ZG9B7Qn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tX7ZG9B7Qn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tX7ZG9B7Qn .navbar.navbar-short {
  min-height: 60px;
}
.cid-tX7ZG9B7Qn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tX7ZG9B7Qn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tX7ZG9B7Qn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tX7ZG9B7Qn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tX7ZG9B7Qn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tX7ZG9B7Qn .dropdown-item.active,
.cid-tX7ZG9B7Qn .dropdown-item:active {
  background-color: transparent;
}
.cid-tX7ZG9B7Qn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tX7ZG9B7Qn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tX7ZG9B7Qn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tX7ZG9B7Qn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tX7ZG9B7Qn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tX7ZG9B7Qn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tX7ZG9B7Qn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tX7ZG9B7Qn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tX7ZG9B7Qn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tX7ZG9B7Qn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tX7ZG9B7Qn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tX7ZG9B7Qn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tX7ZG9B7Qn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tX7ZG9B7Qn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tX7ZG9B7Qn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tX7ZG9B7Qn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tX7ZG9B7Qn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tX7ZG9B7Qn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tX7ZG9B7Qn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tX7ZG9B7Qn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tX7ZG9B7Qn .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-tX7ZG9B7Qn .navbar {
    height: 70px;
  }
  .cid-tX7ZG9B7Qn .navbar.opened {
    height: auto;
  }
  .cid-tX7ZG9B7Qn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tX7ZGa5HnU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/screenshot-8.jpg");
}
.cid-tX7ZGa5HnU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX7ZGa5HnU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX7ZGa5HnU .mbr-text,
.cid-tX7ZGa5HnU .mbr-section-btn {
  color: #232323;
}
.cid-tX7ZGa5HnU .card-title,
.cid-tX7ZGa5HnU .card-box {
  color: #ffffff;
}
.cid-tX7ZGa5HnU .mbr-text,
.cid-tX7ZGa5HnU .link-wrap {
  color: #ffffff;
}
.cid-tX7ZGasr0n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tX7ZGasr0n .row {
  align-items: center;
}
.cid-tX7ZGasr0n .main-col {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-tX7ZGasr0n .main-col {
    flex-wrap: wrap;
  }
}
.cid-tX7ZGasr0n .title-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 50%;
  padding: 50px 10px 10px 10px !important;
}
@media (max-width: 767px) {
  .cid-tX7ZGasr0n .title-container {
    width: 100%;
    min-height: auto;
    margin-bottom: 50px;
    padding: 0 !important;
  }
}
.cid-tX7ZGasr0n .main-title {
  color: #003629;
  opacity: 0.85;
  width: 100%;
}
.cid-tX7ZGasr0n .main-subtitle {
  margin-top: 40px;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
.cid-tX7ZGasr0n .form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50%;
  padding: 10px !important;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-tX7ZGasr0n .form-container {
    width: 100%;
    min-height: auto;
    padding: 0 !important;
  }
}
.cid-tX7ZGasr0n .form-bg {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  padding: 60px 50px;
  background-color: #ffffff;
  border: 1px solid #1d191f;
}
@media (max-width: 991px) {
  .cid-tX7ZGasr0n .form-bg {
    padding: 50px 25px 50px 25px;
  }
}
@media (max-width: 767px) {
  .cid-tX7ZGasr0n .form-bg {
    padding: 35px 30px;
  }
}
.cid-tX7ZGasr0n form {
  width: 100%;
}
.cid-tX7ZGasr0n form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tX7ZGasr0n form p {
  color: #1d191f;
}
.cid-tX7ZGasr0n form .mbr-section-btn {
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
  justify-content: center;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cid-tX7ZGasr0n form .mbr-section-btn {
    width: 100%;
  }
}
.cid-tX7ZGasr0n form .mbr-section-btn .btn {
  min-width: 120px;
  width: 100%;
  border: none !important;
}
.cid-tX7ZGasr0n form .form-group {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  flex-grow: 1;
}
.cid-tX7ZGasr0n form .form-control {
  height: 55px;
  border: 1px solid #818a91 !important;
  background: transparent;
  box-shadow: none !important;
  border-radius: 10px !important;
  margin-bottom: 0;
  padding: 7px 20px;
  font-size: 16px;
  line-height: 24px;
  color: #1d191f;
  font-weight: 400;
}
.cid-tX7ZGasr0n form .form-control::-webkit-input-placeholder {
  color: #adadad;
}
.cid-tX7ZGasr0n form .form-control::-moz-placeholder {
  color: #adadad;
}
.cid-tX7ZGasr0n form .form-control:-moz-placeholder {
  color: #adadad;
}
.cid-tX7ZGasr0n form .form-control:-ms-input-placeholder {
  color: #adadad;
}
.cid-tX7ZGasr0n form select {
  color: #adadad !important;
}
.cid-tX7ZGasr0n form textarea {
  height: 192px !important;
}
.cid-tX7ZGasr0n form input:active,
.cid-tX7ZGasr0n form textarea:active,
.cid-tX7ZGasr0n form input:focus,
.cid-tX7ZGasr0n form textarea:focus {
  background-color: transparent !important;
  border-color: #818a91 !important;
}
.cid-tX7ZGasr0n form input:active::-webkit-input-placeholder,
.cid-tX7ZGasr0n form textarea:active::-webkit-input-placeholder,
.cid-tX7ZGasr0n form input:focus::-webkit-input-placeholder,
.cid-tX7ZGasr0n form textarea:focus::-webkit-input-placeholder {
  color: #adadad;
}
.cid-tX7ZGasr0n form input:active::-moz-placeholder,
.cid-tX7ZGasr0n form textarea:active::-moz-placeholder,
.cid-tX7ZGasr0n form input:focus::-moz-placeholder,
.cid-tX7ZGasr0n form textarea:focus::-moz-placeholder {
  color: #adadad;
}
.cid-tX7ZGasr0n form input:active:-moz-placeholder,
.cid-tX7ZGasr0n form textarea:active:-moz-placeholder,
.cid-tX7ZGasr0n form input:focus:-moz-placeholder,
.cid-tX7ZGasr0n form textarea:focus:-moz-placeholder {
  color: #adadad;
}
.cid-tX7ZGasr0n form input:active:-ms-input-placeholder,
.cid-tX7ZGasr0n form textarea:active:-ms-input-placeholder,
.cid-tX7ZGasr0n form input:focus:-ms-input-placeholder,
.cid-tX7ZGasr0n form textarea:focus:-ms-input-placeholder {
  color: #adadad;
}
.cid-tX7ZGasr0n form .row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}
.cid-tX7ZGasr0n form .row [class*=col] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-tX7ZGasr0n form label {
  width: 100%;
  color: #1d191f;
  margin-bottom: 4px;
}
.cid-tX7ZGasr0n form .form-check-input {
  border-color: #818a91 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tX7ZGasr0n form .form-check-input:focus,
.cid-tX7ZGasr0n form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #1d191f !important;
}
.cid-tX7ZGasr0n form .form-check-input:checked {
  border-color: #1d191f !important;
  background-color: #1d191f !important;
}
.cid-tX7ZGaTlii {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tX7ZGaTlii .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX7ZGaTlii .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX7ZGaTlii .container {
  max-width: 1140px;
}
.cid-tX7ZGaTlii .row {
  align-items: stretch;
}
.cid-tX7ZGaTlii .col-title {
  position: relative;
  padding: 10px;
  flex-grow: 1;
}
.cid-tX7ZGaTlii .col-text {
  padding: 10px;
  flex-grow: 1;
}
.cid-tX7ZGaTlii .title-container {
  position: sticky;
  top: 57px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tX7ZGaTlii .title-container {
    position: static;
  }
}
.cid-tX7ZGaTlii .mbr-section-title {
  color: #003629;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-tX7ZGaTlii .item-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-tX7ZGaTlii .item-text:not(:first-child) {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .cid-tX7ZGaTlii .item-text:not(:first-child) {
    margin-bottom: 0;
  }
}
.cid-tX7ZGaTlii .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 15px !important;
  width: 100%;
}
.cid-tX7ZGaTlii .mbr-text {
  color: #1d191f;
  margin-bottom: 0;
  width: 100%;
}
.cid-tX7ZGbnGxh {
  padding-top: 2rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tX7ZGbnGxh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX7ZGbnGxh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX7ZGbnGxh .container {
  max-width: 1140px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tX7ZGbnGxh .container {
    padding: 0 30px !important;
  }
}
.cid-tX7ZGbnGxh .row {
  justify-content: center;
}
.cid-tX7ZGbnGxh .col-title {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .cid-tX7ZGbnGxh .col-title {
    margin-bottom: 50px;
  }
}
.cid-tX7ZGbnGxh .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tX7ZGbnGxh .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tX7ZGbnGxh .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 28px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tX7ZGbnGxh .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tX7ZGbnGxh .cards-wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.cid-tX7ZGbnGxh .card {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 30px;
  width: 32%;
  margin: 10px 0;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .cid-tX7ZGbnGxh .card {
    width: 49%;
  }
}
@media (max-width: 767px) {
  .cid-tX7ZGbnGxh .card {
    width: 100%;
  }
}
.cid-tX7ZGbnGxh .card:nth-child(1) {
  background-color: #4479d9;
  border-radius: 30px 144px 30px 30px;
}
.cid-tX7ZGbnGxh .card:nth-child(1):hover {
  border-radius: 120px 0 0 120px;
}
.cid-tX7ZGbnGxh .card:nth-child(2) {
  background-color: #40b0bf;
  border-radius: 118px 30px 30px 30px;
}
.cid-tX7ZGbnGxh .card:nth-child(2):hover {
  border-radius: 0 120px 0 0;
}
.cid-tX7ZGbnGxh .card:nth-child(3) {
  background-color: #ff9966;
  border-radius: 30px 140px 30px 30px;
}
.cid-tX7ZGbnGxh .card:nth-child(3):hover {
  border-radius: 0 120px;
}
.cid-tX7ZGbnGxh .card:nth-child(4) {
  background-color: #d6c3ea;
  border-radius: 23px 80px 23px 23px;
}
.cid-tX7ZGbnGxh .card:nth-child(4):hover {
  border-radius: 120px 0 0 0;
}
.cid-tX7ZGbnGxh .card:nth-child(5) {
  background-color: #4a033a;
  border-radius: 30px 30px 114px 30px;
}
.cid-tX7ZGbnGxh .card:nth-child(5):hover {
  border-radius: 120px 0 0 0;
}
.cid-tX7ZGbnGxh .card:nth-child(6) {
  background-color: #c8d4f2;
  border-radius: 140px 30px 30px 30px;
}
.cid-tX7ZGbnGxh .card:nth-child(6):hover {
  border-radius: 0 120px 0 0;
}
.cid-tX7ZGbnGxh .card-wrap {
  padding: 10px;
  width: 100%;
}
.cid-tX7ZGbnGxh .card-title {
  margin-bottom: 0;
  width: 100%;
}
.cid-tX7ZGbnGxh .card-title-1 {
  color: #ffffff;
}
.cid-tX7ZGbnGxh .card-title-2 {
  color: #1d191f;
  text-align: center;
}
.cid-tX7ZGbnGxh .card-title-3 {
  color: #ffffff;
}
.cid-tX7ZGbnGxh .card-title-4 {
  color: #1d191f;
}
.cid-tX7ZGbnGxh .card-title-5 {
  color: #ffffff;
}
.cid-tX7ZGbnGxh .card-title-6 {
  color: #1d191f;
}
.cid-tX7ZGbnGxh .card-text {
  width: 100%;
  margin-top: 14px;
  margin-bottom: 0;
}
.cid-tX7ZGbnGxh .card-text-1 {
  color: #ffffff;
  text-align: left;
}
.cid-tX7ZGbnGxh .card-text-2 {
  color: #1d191f;
  text-align: center;
}
.cid-tX7ZGbnGxh .card-text-3 {
  color: #ffffff;
  text-align: center;
}
.cid-tX7ZGbnGxh .card-text-4 {
  color: #1d191f;
}
.cid-tX7ZGbnGxh .card-text-5 {
  color: #ffffff;
}
.cid-tX7ZGbnGxh .card-text-6 {
  color: #1d191f;
}
.cid-tX7ZGbQ0BN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/bulut3-2.png");
}
.cid-tX7ZGbQ0BN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX7ZGbQ0BN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX7ZGbQ0BN .mbr-text,
.cid-tX7ZGbQ0BN .mbr-section-btn {
  color: #232323;
}
.cid-tX7ZGbQ0BN .card-title,
.cid-tX7ZGbQ0BN .card-box {
  color: #ffffff;
}
.cid-tX7ZGbQ0BN .mbr-text,
.cid-tX7ZGbQ0BN .link-wrap {
  color: #ffffff;
}
.cid-tX7ZGcde9z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-tX7ZGcde9z .bg-img {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 700px;
  height: 400px;
  border-top-left-radius: 200px;
  background-color: #ffffff;
}
.cid-tX7ZGcde9z .row {
  align-items: stretch;
}
.cid-tX7ZGcde9z .content-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-tX7ZGcde9z .content-col {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.cid-tX7ZGcde9z .col-text {
  width: 40%;
}
@media (max-width: 1440px) {
  .cid-tX7ZGcde9z .col-text {
    width: 50%;
    padding-left: 10%;
  }
}
@media (max-width: 1024px) {
  .cid-tX7ZGcde9z .col-text {
    width: 45%;
    padding-left: 15px;
  }
}
@media (max-width: 991px) {
  .cid-tX7ZGcde9z .col-text {
    width: 70%;
    padding: 0 !important;
    text-align: center !important;
  }
}
.cid-tX7ZGcde9z .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.cid-tX7ZGcde9z .mbr-section-title {
  width: 100%;
  color: #000000;
  opacity: 0.85;
  margin-bottom: 25px;
  margin-top: 15px;
}
.cid-tX7ZGcde9z .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  opacity: 0.85;
  width: 100%;
  margin-bottom: 42px;
}
.cid-tX7ZGcde9z .col-card {
  display: flex;
  width: 40%;
}
@media (max-width: 1024px) {
  .cid-tX7ZGcde9z .col-card {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .cid-tX7ZGcde9z .col-card {
    width: 100%;
  }
}
.cid-tX7ZGcde9z .card-container {
  flex-grow: 1;
  position: relative;
  margin: 0 18px 18px;
}
@media (max-width: 1024px) {
  .cid-tX7ZGcde9z .card-container {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .cid-tX7ZGcde9z .card-container {
    width: 85%;
    margin: 0 auto;
    flex-grow: 0;
  }
}
.cid-tX7ZGcde9z .card-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #d4d4d4;
}
@media (max-width: 1024px) {
  .cid-tX7ZGcde9z .card-wrap {
    width: 85%;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .cid-tX7ZGcde9z .card-wrap {
    width: 100%;
    margin: 0;
  }
}
.cid-tX7ZGcde9z .card-item-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 228px;
  padding: 77px 54px 53px;
  width: 100%;
  background-color: #f6f6f6;
}
@media (max-width: 991px) {
  .cid-tX7ZGcde9z .card-item-1 {
    text-align: center !important;
  }
}
.cid-tX7ZGcde9z .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 8px;
  width: 100%;
}
.cid-tX7ZGcde9z .card-subtitle {
  color: #ffffff;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tX7ZGcde9z .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tX7ZGcde9z .card-text {
  color: #003629;
  opacity: 0.55;
  margin-bottom: 0;
  width: 100%;
  text-align: left;
}
.cid-tX7ZGcde9z .card-item-2,
.cid-tX7ZGcde9z .card-item-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 54px;
  min-height: 159px;
  width: 100%;
  border-top: 2px solid #d4d4d4;
}
@media (max-width: 991px) {
  .cid-tX7ZGcde9z .card-item-2,
  .cid-tX7ZGcde9z .card-item-3 {
    text-align: center !important;
  }
}
.cid-tX7ZGcde9z .card-item-2 {
  background-color: #c9d2e8;
}
.cid-tX7ZGcde9z .card-item-3 {
  background-color: #c8d4f2;
}
.cid-tX7ZGcde9z .card-back {
  z-index: 2;
  position: absolute;
  right: -18px;
  top: 18px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f6f6f6;
  border: 2px solid #d4d4d4;
}
@media (max-width: 1024px) {
  .cid-tX7ZGcde9z .card-back {
    width: calc(85% + 18px);
    right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tX7ZGcde9z .card-back {
    width: 100%;
    right: -18px;
  }
}
.cid-tX7ZGcGWeo {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/screenshot-10.jpeg");
}
.cid-tX7ZGcGWeo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX7ZGcGWeo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX7ZGcGWeo .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tX7ZGcGWeo .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tX7ZGcGWeo .row {
    text-align: center;
  }
  .cid-tX7ZGcGWeo .row > div {
    margin: auto;
  }
  .cid-tX7ZGcGWeo .social-row {
    justify-content: center;
  }
}
.cid-tX7ZGcGWeo .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tX7ZGcGWeo .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tX7ZGcGWeo .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tX7ZGcGWeo .list {
    margin-bottom: 0rem;
  }
}
.cid-tX7ZGcGWeo .mbr-text {
  color: #2299aa;
  text-align: right;
}
.cid-tX7ZGcGWeo .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-tX7ZGcGWeo .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tX7ZGcGWeo div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tWi0XBl2Sp {
  z-index: 1000;
  width: 100%;
}
.cid-tWi0XBl2Sp nav.navbar {
  position: fixed;
}
.cid-tWi0XBl2Sp .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-tWi0XBl2Sp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWi0XBl2Sp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWi0XBl2Sp .dropdown-item:hover,
.cid-tWi0XBl2Sp .dropdown-item:focus {
  background: #2299aa !important;
  color: white !important;
}
.cid-tWi0XBl2Sp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWi0XBl2Sp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWi0XBl2Sp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWi0XBl2Sp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWi0XBl2Sp .nav-link {
  position: relative;
}
.cid-tWi0XBl2Sp .container {
  display: flex;
  margin: auto;
}
.cid-tWi0XBl2Sp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWi0XBl2Sp .dropdown-menu,
.cid-tWi0XBl2Sp .navbar.opened {
  background: #fafafa !important;
}
.cid-tWi0XBl2Sp .nav-item:focus,
.cid-tWi0XBl2Sp .nav-link:focus {
  outline: none;
}
.cid-tWi0XBl2Sp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWi0XBl2Sp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWi0XBl2Sp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWi0XBl2Sp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWi0XBl2Sp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWi0XBl2Sp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWi0XBl2Sp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.9);
}
.cid-tWi0XBl2Sp .navbar.opened {
  transition: all 0.3s;
}
.cid-tWi0XBl2Sp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWi0XBl2Sp .navbar .navbar-logo img {
  width: auto;
}
.cid-tWi0XBl2Sp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWi0XBl2Sp .navbar.collapsed {
  justify-content: center;
}
.cid-tWi0XBl2Sp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWi0XBl2Sp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWi0XBl2Sp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tWi0XBl2Sp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWi0XBl2Sp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWi0XBl2Sp .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-tWi0XBl2Sp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWi0XBl2Sp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWi0XBl2Sp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWi0XBl2Sp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWi0XBl2Sp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWi0XBl2Sp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWi0XBl2Sp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWi0XBl2Sp .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-tWi0XBl2Sp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWi0XBl2Sp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWi0XBl2Sp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWi0XBl2Sp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWi0XBl2Sp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWi0XBl2Sp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWi0XBl2Sp .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWi0XBl2Sp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWi0XBl2Sp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWi0XBl2Sp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWi0XBl2Sp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWi0XBl2Sp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWi0XBl2Sp .dropdown-item.active,
.cid-tWi0XBl2Sp .dropdown-item:active {
  background-color: transparent;
}
.cid-tWi0XBl2Sp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWi0XBl2Sp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWi0XBl2Sp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWi0XBl2Sp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tWi0XBl2Sp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWi0XBl2Sp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWi0XBl2Sp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWi0XBl2Sp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWi0XBl2Sp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWi0XBl2Sp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWi0XBl2Sp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWi0XBl2Sp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWi0XBl2Sp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWi0XBl2Sp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWi0XBl2Sp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWi0XBl2Sp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWi0XBl2Sp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWi0XBl2Sp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWi0XBl2Sp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWi0XBl2Sp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWi0XBl2Sp .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-tWi0XBl2Sp .navbar {
    height: 70px;
  }
  .cid-tWi0XBl2Sp .navbar.opened {
    height: auto;
  }
  .cid-tWi0XBl2Sp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWi0XCn6Ao {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/screenshot-8.jpg");
}
.cid-tWi0XCn6Ao .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWi0XCn6Ao .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWi0XCn6Ao .mbr-text,
.cid-tWi0XCn6Ao .mbr-section-btn {
  color: #232323;
}
.cid-tWi0XCn6Ao .card-title,
.cid-tWi0XCn6Ao .card-box {
  color: #ffffff;
}
.cid-tWi0XCn6Ao .mbr-text,
.cid-tWi0XCn6Ao .link-wrap {
  color: #ffffff;
}
.cid-tWi0XDh9jc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWi0XDh9jc .row {
  align-items: center;
}
.cid-tWi0XDh9jc .main-col {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-tWi0XDh9jc .main-col {
    flex-wrap: wrap;
  }
}
.cid-tWi0XDh9jc .title-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 50%;
  padding: 50px 10px 10px 10px !important;
}
@media (max-width: 767px) {
  .cid-tWi0XDh9jc .title-container {
    width: 100%;
    min-height: auto;
    margin-bottom: 50px;
    padding: 0 !important;
  }
}
.cid-tWi0XDh9jc .main-title {
  color: #003629;
  opacity: 0.85;
  width: 100%;
}
.cid-tWi0XDh9jc .main-subtitle {
  margin-top: 40px;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
.cid-tWi0XDh9jc .form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50%;
  padding: 10px !important;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-tWi0XDh9jc .form-container {
    width: 100%;
    min-height: auto;
    padding: 0 !important;
  }
}
.cid-tWi0XDh9jc .form-bg {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  padding: 60px 50px;
  background-color: #ffffff;
  border: 1px solid #1d191f;
}
@media (max-width: 991px) {
  .cid-tWi0XDh9jc .form-bg {
    padding: 50px 25px 50px 25px;
  }
}
@media (max-width: 767px) {
  .cid-tWi0XDh9jc .form-bg {
    padding: 35px 30px;
  }
}
.cid-tWi0XDh9jc form {
  width: 100%;
}
.cid-tWi0XDh9jc form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tWi0XDh9jc form p {
  color: #1d191f;
}
.cid-tWi0XDh9jc form .mbr-section-btn {
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
  justify-content: center;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cid-tWi0XDh9jc form .mbr-section-btn {
    width: 100%;
  }
}
.cid-tWi0XDh9jc form .mbr-section-btn .btn {
  min-width: 120px;
  width: 100%;
  border: none !important;
}
.cid-tWi0XDh9jc form .form-group {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  flex-grow: 1;
}
.cid-tWi0XDh9jc form .form-control {
  height: 55px;
  border: 1px solid #818a91 !important;
  background: transparent;
  box-shadow: none !important;
  border-radius: 10px !important;
  margin-bottom: 0;
  padding: 7px 20px;
  font-size: 16px;
  line-height: 24px;
  color: #1d191f;
  font-weight: 400;
}
.cid-tWi0XDh9jc form .form-control::-webkit-input-placeholder {
  color: #adadad;
}
.cid-tWi0XDh9jc form .form-control::-moz-placeholder {
  color: #adadad;
}
.cid-tWi0XDh9jc form .form-control:-moz-placeholder {
  color: #adadad;
}
.cid-tWi0XDh9jc form .form-control:-ms-input-placeholder {
  color: #adadad;
}
.cid-tWi0XDh9jc form select {
  color: #adadad !important;
}
.cid-tWi0XDh9jc form textarea {
  height: 192px !important;
}
.cid-tWi0XDh9jc form input:active,
.cid-tWi0XDh9jc form textarea:active,
.cid-tWi0XDh9jc form input:focus,
.cid-tWi0XDh9jc form textarea:focus {
  background-color: transparent !important;
  border-color: #818a91 !important;
}
.cid-tWi0XDh9jc form input:active::-webkit-input-placeholder,
.cid-tWi0XDh9jc form textarea:active::-webkit-input-placeholder,
.cid-tWi0XDh9jc form input:focus::-webkit-input-placeholder,
.cid-tWi0XDh9jc form textarea:focus::-webkit-input-placeholder {
  color: #adadad;
}
.cid-tWi0XDh9jc form input:active::-moz-placeholder,
.cid-tWi0XDh9jc form textarea:active::-moz-placeholder,
.cid-tWi0XDh9jc form input:focus::-moz-placeholder,
.cid-tWi0XDh9jc form textarea:focus::-moz-placeholder {
  color: #adadad;
}
.cid-tWi0XDh9jc form input:active:-moz-placeholder,
.cid-tWi0XDh9jc form textarea:active:-moz-placeholder,
.cid-tWi0XDh9jc form input:focus:-moz-placeholder,
.cid-tWi0XDh9jc form textarea:focus:-moz-placeholder {
  color: #adadad;
}
.cid-tWi0XDh9jc form input:active:-ms-input-placeholder,
.cid-tWi0XDh9jc form textarea:active:-ms-input-placeholder,
.cid-tWi0XDh9jc form input:focus:-ms-input-placeholder,
.cid-tWi0XDh9jc form textarea:focus:-ms-input-placeholder {
  color: #adadad;
}
.cid-tWi0XDh9jc form .row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}
.cid-tWi0XDh9jc form .row [class*=col] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-tWi0XDh9jc form label {
  width: 100%;
  color: #1d191f;
  margin-bottom: 4px;
}
.cid-tWi0XDh9jc form .form-check-input {
  border-color: #818a91 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tWi0XDh9jc form .form-check-input:focus,
.cid-tWi0XDh9jc form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #1d191f !important;
}
.cid-tWi0XDh9jc form .form-check-input:checked {
  border-color: #1d191f !important;
  background-color: #1d191f !important;
}
.cid-tWi0XEjDMl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWi0XEjDMl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWi0XEjDMl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWi0XEjDMl .container {
  max-width: 1140px;
}
.cid-tWi0XEjDMl .row {
  align-items: stretch;
}
.cid-tWi0XEjDMl .col-title {
  position: relative;
  padding: 10px;
  flex-grow: 1;
}
.cid-tWi0XEjDMl .col-text {
  padding: 10px;
  flex-grow: 1;
}
.cid-tWi0XEjDMl .title-container {
  position: sticky;
  top: 57px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tWi0XEjDMl .title-container {
    position: static;
  }
}
.cid-tWi0XEjDMl .mbr-section-title {
  color: #003629;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-tWi0XEjDMl .item-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-tWi0XEjDMl .item-text:not(:first-child) {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .cid-tWi0XEjDMl .item-text:not(:first-child) {
    margin-bottom: 0;
  }
}
.cid-tWi0XEjDMl .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 15px !important;
  width: 100%;
}
.cid-tWi0XEjDMl .mbr-text {
  color: #1d191f;
  margin-bottom: 0;
  width: 100%;
}
.cid-tWi0XFbRDF {
  padding-top: 2rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tWi0XFbRDF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWi0XFbRDF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWi0XFbRDF .container {
  max-width: 1140px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tWi0XFbRDF .container {
    padding: 0 30px !important;
  }
}
.cid-tWi0XFbRDF .row {
  justify-content: center;
}
.cid-tWi0XFbRDF .col-title {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .cid-tWi0XFbRDF .col-title {
    margin-bottom: 50px;
  }
}
.cid-tWi0XFbRDF .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tWi0XFbRDF .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tWi0XFbRDF .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 28px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tWi0XFbRDF .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tWi0XFbRDF .cards-wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.cid-tWi0XFbRDF .card {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 30px;
  width: 32%;
  margin: 10px 0;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .cid-tWi0XFbRDF .card {
    width: 49%;
  }
}
@media (max-width: 767px) {
  .cid-tWi0XFbRDF .card {
    width: 100%;
  }
}
.cid-tWi0XFbRDF .card:nth-child(1) {
  background-color: #4479d9;
  border-radius: 30px 144px 30px 30px;
}
.cid-tWi0XFbRDF .card:nth-child(1):hover {
  border-radius: 120px 0 0 120px;
}
.cid-tWi0XFbRDF .card:nth-child(2) {
  background-color: #40b0bf;
  border-radius: 118px 30px 30px 30px;
}
.cid-tWi0XFbRDF .card:nth-child(2):hover {
  border-radius: 0 120px 0 0;
}
.cid-tWi0XFbRDF .card:nth-child(3) {
  background-color: #ff9966;
  border-radius: 30px 140px 30px 30px;
}
.cid-tWi0XFbRDF .card:nth-child(3):hover {
  border-radius: 0 120px;
}
.cid-tWi0XFbRDF .card:nth-child(4) {
  background-color: #d6c3ea;
  border-radius: 23px 80px 23px 23px;
}
.cid-tWi0XFbRDF .card:nth-child(4):hover {
  border-radius: 120px 0 0 0;
}
.cid-tWi0XFbRDF .card:nth-child(5) {
  background-color: #4a033a;
  border-radius: 30px 30px 114px 30px;
}
.cid-tWi0XFbRDF .card:nth-child(5):hover {
  border-radius: 120px 0 0 0;
}
.cid-tWi0XFbRDF .card:nth-child(6) {
  background-color: #c8d4f2;
  border-radius: 140px 30px 30px 30px;
}
.cid-tWi0XFbRDF .card:nth-child(6):hover {
  border-radius: 0 120px 0 0;
}
.cid-tWi0XFbRDF .card-wrap {
  padding: 10px;
  width: 100%;
}
.cid-tWi0XFbRDF .card-title {
  margin-bottom: 0;
  width: 100%;
}
.cid-tWi0XFbRDF .card-title-1 {
  color: #ffffff;
}
.cid-tWi0XFbRDF .card-title-2 {
  color: #1d191f;
  text-align: center;
}
.cid-tWi0XFbRDF .card-title-3 {
  color: #ffffff;
}
.cid-tWi0XFbRDF .card-title-4 {
  color: #1d191f;
}
.cid-tWi0XFbRDF .card-title-5 {
  color: #ffffff;
}
.cid-tWi0XFbRDF .card-title-6 {
  color: #1d191f;
}
.cid-tWi0XFbRDF .card-text {
  width: 100%;
  margin-top: 14px;
  margin-bottom: 0;
}
.cid-tWi0XFbRDF .card-text-1 {
  color: #ffffff;
  text-align: left;
}
.cid-tWi0XFbRDF .card-text-2 {
  color: #1d191f;
  text-align: center;
}
.cid-tWi0XFbRDF .card-text-3 {
  color: #ffffff;
  text-align: center;
}
.cid-tWi0XFbRDF .card-text-4 {
  color: #1d191f;
}
.cid-tWi0XFbRDF .card-text-5 {
  color: #ffffff;
}
.cid-tWi0XFbRDF .card-text-6 {
  color: #1d191f;
}
.cid-tWi0XGcin3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/bulut3-2.png");
}
.cid-tWi0XGcin3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWi0XGcin3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWi0XGcin3 .mbr-text,
.cid-tWi0XGcin3 .mbr-section-btn {
  color: #232323;
}
.cid-tWi0XGcin3 .card-title,
.cid-tWi0XGcin3 .card-box {
  color: #ffffff;
}
.cid-tWi0XGcin3 .mbr-text,
.cid-tWi0XGcin3 .link-wrap {
  color: #ffffff;
}
.cid-tWi0XGXMzC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-tWi0XGXMzC .bg-img {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 700px;
  height: 400px;
  border-top-left-radius: 200px;
  background-color: #ffffff;
}
.cid-tWi0XGXMzC .row {
  align-items: stretch;
}
.cid-tWi0XGXMzC .content-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-tWi0XGXMzC .content-col {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.cid-tWi0XGXMzC .col-text {
  width: 40%;
}
@media (max-width: 1440px) {
  .cid-tWi0XGXMzC .col-text {
    width: 50%;
    padding-left: 10%;
  }
}
@media (max-width: 1024px) {
  .cid-tWi0XGXMzC .col-text {
    width: 45%;
    padding-left: 15px;
  }
}
@media (max-width: 991px) {
  .cid-tWi0XGXMzC .col-text {
    width: 70%;
    padding: 0 !important;
    text-align: center !important;
  }
}
.cid-tWi0XGXMzC .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.cid-tWi0XGXMzC .mbr-section-title {
  width: 100%;
  color: #000000;
  opacity: 0.85;
  margin-bottom: 25px;
  margin-top: 15px;
}
.cid-tWi0XGXMzC .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  opacity: 0.85;
  width: 100%;
  margin-bottom: 42px;
}
.cid-tWi0XGXMzC .col-card {
  display: flex;
  width: 40%;
}
@media (max-width: 1024px) {
  .cid-tWi0XGXMzC .col-card {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .cid-tWi0XGXMzC .col-card {
    width: 100%;
  }
}
.cid-tWi0XGXMzC .card-container {
  flex-grow: 1;
  position: relative;
  margin: 0 18px 18px;
}
@media (max-width: 1024px) {
  .cid-tWi0XGXMzC .card-container {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .cid-tWi0XGXMzC .card-container {
    width: 85%;
    margin: 0 auto;
    flex-grow: 0;
  }
}
.cid-tWi0XGXMzC .card-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #d4d4d4;
}
@media (max-width: 1024px) {
  .cid-tWi0XGXMzC .card-wrap {
    width: 85%;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .cid-tWi0XGXMzC .card-wrap {
    width: 100%;
    margin: 0;
  }
}
.cid-tWi0XGXMzC .card-item-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 228px;
  padding: 77px 54px 53px;
  width: 100%;
  background-color: #f6f6f6;
}
@media (max-width: 991px) {
  .cid-tWi0XGXMzC .card-item-1 {
    text-align: center !important;
  }
}
.cid-tWi0XGXMzC .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 8px;
  width: 100%;
}
.cid-tWi0XGXMzC .card-subtitle {
  color: #ffffff;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWi0XGXMzC .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tWi0XGXMzC .card-text {
  color: #003629;
  opacity: 0.55;
  margin-bottom: 0;
  width: 100%;
  text-align: left;
}
.cid-tWi0XGXMzC .card-item-2,
.cid-tWi0XGXMzC .card-item-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 54px;
  min-height: 159px;
  width: 100%;
  border-top: 2px solid #d4d4d4;
}
@media (max-width: 991px) {
  .cid-tWi0XGXMzC .card-item-2,
  .cid-tWi0XGXMzC .card-item-3 {
    text-align: center !important;
  }
}
.cid-tWi0XGXMzC .card-item-2 {
  background-color: #c9d2e8;
}
.cid-tWi0XGXMzC .card-item-3 {
  background-color: #c8d4f2;
}
.cid-tWi0XGXMzC .card-back {
  z-index: 2;
  position: absolute;
  right: -18px;
  top: 18px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f6f6f6;
  border: 2px solid #d4d4d4;
}
@media (max-width: 1024px) {
  .cid-tWi0XGXMzC .card-back {
    width: calc(85% + 18px);
    right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tWi0XGXMzC .card-back {
    width: 100%;
    right: -18px;
  }
}
.cid-tWi0XHRepE {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/screenshot-10.jpeg");
}
.cid-tWi0XHRepE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWi0XHRepE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWi0XHRepE .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tWi0XHRepE .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tWi0XHRepE .row {
    text-align: center;
  }
  .cid-tWi0XHRepE .row > div {
    margin: auto;
  }
  .cid-tWi0XHRepE .social-row {
    justify-content: center;
  }
}
.cid-tWi0XHRepE .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tWi0XHRepE .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tWi0XHRepE .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tWi0XHRepE .list {
    margin-bottom: 0rem;
  }
}
.cid-tWi0XHRepE .mbr-text {
  color: #2299aa;
  text-align: right;
}
.cid-tWi0XHRepE .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-tWi0XHRepE .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tWi0XHRepE div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ttIpGUFk4R {
  z-index: 1000;
  width: 100%;
}
.cid-ttIpGUFk4R nav.navbar {
  position: fixed;
}
.cid-ttIpGUFk4R .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-ttIpGUFk4R .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ttIpGUFk4R .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttIpGUFk4R .dropdown-item:hover,
.cid-ttIpGUFk4R .dropdown-item:focus {
  background: #2299aa !important;
  color: white !important;
}
.cid-ttIpGUFk4R .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ttIpGUFk4R .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ttIpGUFk4R .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttIpGUFk4R .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttIpGUFk4R .nav-link {
  position: relative;
}
.cid-ttIpGUFk4R .container {
  display: flex;
  margin: auto;
}
.cid-ttIpGUFk4R .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ttIpGUFk4R .dropdown-menu,
.cid-ttIpGUFk4R .navbar.opened {
  background: #fafafa !important;
}
.cid-ttIpGUFk4R .nav-item:focus,
.cid-ttIpGUFk4R .nav-link:focus {
  outline: none;
}
.cid-ttIpGUFk4R .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttIpGUFk4R .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttIpGUFk4R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttIpGUFk4R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttIpGUFk4R .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttIpGUFk4R .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttIpGUFk4R .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.9);
}
.cid-ttIpGUFk4R .navbar.opened {
  transition: all 0.3s;
}
.cid-ttIpGUFk4R .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttIpGUFk4R .navbar .navbar-logo img {
  width: auto;
}
.cid-ttIpGUFk4R .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttIpGUFk4R .navbar.collapsed {
  justify-content: center;
}
.cid-ttIpGUFk4R .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttIpGUFk4R .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttIpGUFk4R .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ttIpGUFk4R .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttIpGUFk4R .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttIpGUFk4R .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-ttIpGUFk4R .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttIpGUFk4R .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttIpGUFk4R .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttIpGUFk4R .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttIpGUFk4R .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttIpGUFk4R .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttIpGUFk4R .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttIpGUFk4R .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-ttIpGUFk4R .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttIpGUFk4R .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttIpGUFk4R .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttIpGUFk4R .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttIpGUFk4R .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttIpGUFk4R .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ttIpGUFk4R .navbar.navbar-short {
  min-height: 60px;
}
.cid-ttIpGUFk4R .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ttIpGUFk4R .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ttIpGUFk4R .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttIpGUFk4R .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttIpGUFk4R .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttIpGUFk4R .dropdown-item.active,
.cid-ttIpGUFk4R .dropdown-item:active {
  background-color: transparent;
}
.cid-ttIpGUFk4R .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttIpGUFk4R .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttIpGUFk4R .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttIpGUFk4R .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-ttIpGUFk4R .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttIpGUFk4R .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttIpGUFk4R ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttIpGUFk4R .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ttIpGUFk4R button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ttIpGUFk4R button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ttIpGUFk4R button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ttIpGUFk4R button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttIpGUFk4R button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttIpGUFk4R button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ttIpGUFk4R nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttIpGUFk4R nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ttIpGUFk4R nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ttIpGUFk4R nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttIpGUFk4R .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ttIpGUFk4R a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttIpGUFk4R .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-ttIpGUFk4R .navbar {
    height: 70px;
  }
  .cid-ttIpGUFk4R .navbar.opened {
    height: auto;
  }
  .cid-ttIpGUFk4R .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWn1JL4wEI {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/screenshot-16.jpeg");
}
.cid-tWn1JL4wEI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWn1JL4wEI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWn1JL4wEI img {
  border-radius: 2rem;
}
.cid-tWn1JL4wEI .mbr-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-tWn1JL4wEI .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #2299aa;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tWn1JL4wEI .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #ff6666;
  font-size: 1.5rem;
}
.cid-tWn1JL4wEI .mbr-section-title {
  color: #04492e;
}
.cid-tWn1JL4wEI .mbr-text,
.cid-tWn1JL4wEI .mbr-section-btn {
  color: #6e6e6e;
}
.cid-tWn1JL4wEI .mbr-section-subtitle,
.cid-tWn1JL4wEI .align-wrapper {
  color: #04492e;
}
.cid-tWn1EN1yc7 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-tWn1EN1yc7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWn1EN1yc7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWn1EN1yc7 form .btn {
  border-radius: 2rem;
  padding: 1rem 2rem;
}
.cid-tWn1EN1yc7 h1 {
  font-weight: 500;
  line-height: 1;
}
.cid-tWn1EN1yc7 .mbr-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-tWn1EN1yc7 .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #2299aa;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tWn1EN1yc7 .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #ff6666;
  font-size: 1.5rem;
}
.cid-tWn1EN1yc7 .mbr-section-title {
  color: #04492e;
  text-align: right;
}
.cid-tWn1EN1yc7 .mbr-text,
.cid-tWn1EN1yc7 .mbr-section-btn {
  color: #6e6e6e;
  text-align: right;
}
.cid-tWn1EN1yc7 .mbr-section-subtitle,
.cid-tWn1EN1yc7 .align-wrapper {
  color: #04492e;
}
.cid-tWn1EN1yc7 textarea {
  min-height: 150px;
}
.cid-tWn1EN1yc7 LABEL {
  color: #04492e;
}
@media (max-width: 767px) {
  .cid-tWn1EN1yc7 .col-auto {
    margin: auto;
  }
}
.cid-ttIIVFw6e5 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/screenshot-10.jpeg");
}
.cid-ttIIVFw6e5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttIIVFw6e5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttIIVFw6e5 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ttIIVFw6e5 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ttIIVFw6e5 .row {
    text-align: center;
  }
  .cid-ttIIVFw6e5 .row > div {
    margin: auto;
  }
  .cid-ttIIVFw6e5 .social-row {
    justify-content: center;
  }
}
.cid-ttIIVFw6e5 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ttIIVFw6e5 .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-ttIIVFw6e5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ttIIVFw6e5 .list {
    margin-bottom: 0rem;
  }
}
.cid-ttIIVFw6e5 .mbr-text {
  color: #2299aa;
  text-align: right;
}
.cid-ttIIVFw6e5 .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-ttIIVFw6e5 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ttIIVFw6e5 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sFCw1qGFAI {
  z-index: 1000;
  width: 100%;
}
.cid-sFCw1qGFAI nav.navbar {
  position: fixed;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #2299aa !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.9);
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tX84P6ALSx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/screenshot-8.jpg");
}
.cid-tX84P6ALSx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX84P6ALSx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX84P6ALSx .mbr-text,
.cid-tX84P6ALSx .mbr-section-btn {
  color: #232323;
}
.cid-tX84P6ALSx .card-title,
.cid-tX84P6ALSx .card-box {
  color: #ffffff;
}
.cid-tX84P6ALSx .mbr-text,
.cid-tX84P6ALSx .link-wrap {
  color: #ffffff;
}
.cid-tW0tLhuphA {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tW0tLhuphA .row {
  align-items: center;
}
.cid-tW0tLhuphA .main-col {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-tW0tLhuphA .main-col {
    flex-wrap: wrap;
  }
}
.cid-tW0tLhuphA .title-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 50%;
  padding: 50px 10px 10px 10px !important;
}
@media (max-width: 767px) {
  .cid-tW0tLhuphA .title-container {
    width: 100%;
    min-height: auto;
    margin-bottom: 50px;
    padding: 0 !important;
  }
}
.cid-tW0tLhuphA .main-title {
  color: #003629;
  opacity: 0.85;
  width: 100%;
}
.cid-tW0tLhuphA .main-subtitle {
  margin-top: 40px;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
.cid-tW0tLhuphA .form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50%;
  padding: 10px !important;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-tW0tLhuphA .form-container {
    width: 100%;
    min-height: auto;
    padding: 0 !important;
  }
}
.cid-tW0tLhuphA .form-bg {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  padding: 60px 50px;
  background-color: #ffffff;
  border: 1px solid #1d191f;
}
@media (max-width: 991px) {
  .cid-tW0tLhuphA .form-bg {
    padding: 50px 25px 50px 25px;
  }
}
@media (max-width: 767px) {
  .cid-tW0tLhuphA .form-bg {
    padding: 35px 30px;
  }
}
.cid-tW0tLhuphA form {
  width: 100%;
}
.cid-tW0tLhuphA form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tW0tLhuphA form p {
  color: #1d191f;
}
.cid-tW0tLhuphA form .mbr-section-btn {
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
  justify-content: center;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cid-tW0tLhuphA form .mbr-section-btn {
    width: 100%;
  }
}
.cid-tW0tLhuphA form .mbr-section-btn .btn {
  min-width: 120px;
  width: 100%;
  border: none !important;
}
.cid-tW0tLhuphA form .form-group {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  flex-grow: 1;
}
.cid-tW0tLhuphA form .form-control {
  height: 55px;
  border: 1px solid #818a91 !important;
  background: transparent;
  box-shadow: none !important;
  border-radius: 10px !important;
  margin-bottom: 0;
  padding: 7px 20px;
  font-size: 16px;
  line-height: 24px;
  color: #1d191f;
  font-weight: 400;
}
.cid-tW0tLhuphA form .form-control::-webkit-input-placeholder {
  color: #adadad;
}
.cid-tW0tLhuphA form .form-control::-moz-placeholder {
  color: #adadad;
}
.cid-tW0tLhuphA form .form-control:-moz-placeholder {
  color: #adadad;
}
.cid-tW0tLhuphA form .form-control:-ms-input-placeholder {
  color: #adadad;
}
.cid-tW0tLhuphA form select {
  color: #adadad !important;
}
.cid-tW0tLhuphA form textarea {
  height: 192px !important;
}
.cid-tW0tLhuphA form input:active,
.cid-tW0tLhuphA form textarea:active,
.cid-tW0tLhuphA form input:focus,
.cid-tW0tLhuphA form textarea:focus {
  background-color: transparent !important;
  border-color: #818a91 !important;
}
.cid-tW0tLhuphA form input:active::-webkit-input-placeholder,
.cid-tW0tLhuphA form textarea:active::-webkit-input-placeholder,
.cid-tW0tLhuphA form input:focus::-webkit-input-placeholder,
.cid-tW0tLhuphA form textarea:focus::-webkit-input-placeholder {
  color: #adadad;
}
.cid-tW0tLhuphA form input:active::-moz-placeholder,
.cid-tW0tLhuphA form textarea:active::-moz-placeholder,
.cid-tW0tLhuphA form input:focus::-moz-placeholder,
.cid-tW0tLhuphA form textarea:focus::-moz-placeholder {
  color: #adadad;
}
.cid-tW0tLhuphA form input:active:-moz-placeholder,
.cid-tW0tLhuphA form textarea:active:-moz-placeholder,
.cid-tW0tLhuphA form input:focus:-moz-placeholder,
.cid-tW0tLhuphA form textarea:focus:-moz-placeholder {
  color: #adadad;
}
.cid-tW0tLhuphA form input:active:-ms-input-placeholder,
.cid-tW0tLhuphA form textarea:active:-ms-input-placeholder,
.cid-tW0tLhuphA form input:focus:-ms-input-placeholder,
.cid-tW0tLhuphA form textarea:focus:-ms-input-placeholder {
  color: #adadad;
}
.cid-tW0tLhuphA form .row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}
.cid-tW0tLhuphA form .row [class*=col] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-tW0tLhuphA form label {
  width: 100%;
  color: #1d191f;
  margin-bottom: 4px;
}
.cid-tW0tLhuphA form .form-check-input {
  border-color: #818a91 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tW0tLhuphA form .form-check-input:focus,
.cid-tW0tLhuphA form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #1d191f !important;
}
.cid-tW0tLhuphA form .form-check-input:checked {
  border-color: #1d191f !important;
  background-color: #1d191f !important;
}
.cid-ttIIVFw6e5 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/screenshot-10.jpeg");
}
.cid-ttIIVFw6e5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttIIVFw6e5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttIIVFw6e5 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ttIIVFw6e5 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ttIIVFw6e5 .row {
    text-align: center;
  }
  .cid-ttIIVFw6e5 .row > div {
    margin: auto;
  }
  .cid-ttIIVFw6e5 .social-row {
    justify-content: center;
  }
}
.cid-ttIIVFw6e5 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ttIIVFw6e5 .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-ttIIVFw6e5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ttIIVFw6e5 .list {
    margin-bottom: 0rem;
  }
}
.cid-ttIIVFw6e5 .mbr-text {
  color: #2299aa;
  text-align: right;
}
.cid-ttIIVFw6e5 .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-ttIIVFw6e5 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ttIIVFw6e5 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tW0CNpbVJi {
  z-index: 1000;
  width: 100%;
}
.cid-tW0CNpbVJi nav.navbar {
  position: fixed;
}
.cid-tW0CNpbVJi .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-tW0CNpbVJi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tW0CNpbVJi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tW0CNpbVJi .dropdown-item:hover,
.cid-tW0CNpbVJi .dropdown-item:focus {
  background: #2299aa !important;
  color: white !important;
}
.cid-tW0CNpbVJi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tW0CNpbVJi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tW0CNpbVJi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tW0CNpbVJi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tW0CNpbVJi .nav-link {
  position: relative;
}
.cid-tW0CNpbVJi .container {
  display: flex;
  margin: auto;
}
.cid-tW0CNpbVJi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tW0CNpbVJi .dropdown-menu,
.cid-tW0CNpbVJi .navbar.opened {
  background: #fafafa !important;
}
.cid-tW0CNpbVJi .nav-item:focus,
.cid-tW0CNpbVJi .nav-link:focus {
  outline: none;
}
.cid-tW0CNpbVJi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tW0CNpbVJi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tW0CNpbVJi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tW0CNpbVJi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tW0CNpbVJi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tW0CNpbVJi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tW0CNpbVJi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.9);
}
.cid-tW0CNpbVJi .navbar.opened {
  transition: all 0.3s;
}
.cid-tW0CNpbVJi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tW0CNpbVJi .navbar .navbar-logo img {
  width: auto;
}
.cid-tW0CNpbVJi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tW0CNpbVJi .navbar.collapsed {
  justify-content: center;
}
.cid-tW0CNpbVJi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tW0CNpbVJi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tW0CNpbVJi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tW0CNpbVJi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tW0CNpbVJi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tW0CNpbVJi .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-tW0CNpbVJi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tW0CNpbVJi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tW0CNpbVJi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tW0CNpbVJi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tW0CNpbVJi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tW0CNpbVJi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tW0CNpbVJi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tW0CNpbVJi .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-tW0CNpbVJi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tW0CNpbVJi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tW0CNpbVJi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tW0CNpbVJi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tW0CNpbVJi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tW0CNpbVJi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tW0CNpbVJi .navbar.navbar-short {
  min-height: 60px;
}
.cid-tW0CNpbVJi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tW0CNpbVJi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tW0CNpbVJi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tW0CNpbVJi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tW0CNpbVJi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tW0CNpbVJi .dropdown-item.active,
.cid-tW0CNpbVJi .dropdown-item:active {
  background-color: transparent;
}
.cid-tW0CNpbVJi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tW0CNpbVJi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tW0CNpbVJi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tW0CNpbVJi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tW0CNpbVJi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tW0CNpbVJi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tW0CNpbVJi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tW0CNpbVJi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tW0CNpbVJi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tW0CNpbVJi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tW0CNpbVJi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tW0CNpbVJi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tW0CNpbVJi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tW0CNpbVJi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tW0CNpbVJi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tW0CNpbVJi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tW0CNpbVJi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tW0CNpbVJi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tW0CNpbVJi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tW0CNpbVJi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tW0CNpbVJi .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-tW0CNpbVJi .navbar {
    height: 70px;
  }
  .cid-tW0CNpbVJi .navbar.opened {
    height: auto;
  }
  .cid-tW0CNpbVJi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tW0EF57D5z {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/untitled1-2.jpg");
}
.cid-tW0EF57D5z .wrapper {
  background-size: cover;
  border-radius: 30px;
  position: relative;
}
.cid-tW0EF57D5z .wrapper img {
  border-radius: 30px;
}
@media (max-width: 768px) {
  .cid-tW0EF57D5z .wrapper {
    padding: 0;
  }
  .cid-tW0EF57D5z .wrapper img {
    width: 70%;
    right: 0;
    bottom: 115px;
  }
}
@media (min-width: 992px) {
  .cid-tW0EF57D5z .wrapper {
    padding: 0 6rem;
  }
}
.cid-tW0EF57D5z .btn {
  border-radius: 30px;
  font-size: 16px;
}
.cid-tW0EF57D5z .btn-black {
  position: relative;
  border-radius: 20px;
  padding: 2rem 4rem 2rem 1.5rem;
  transition: all .3s;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
  margin-right: 40px;
}
@media (max-width: 768px) {
  .cid-tW0EF57D5z .btn-black {
    width: 100%;
    padding: 2rem 1rem;
  }
  .cid-tW0EF57D5z .btn-black::after,
  .cid-tW0EF57D5z .btn-black::before {
    display: none;
  }
}
.cid-tW0EF57D5z .btn-black::before {
  position: absolute;
  background-color: #ff6a61;
  content: "";
  border-radius: 20px;
  width: 100%;
  height: 100%;
  transition: all .3s;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tW0EF57D5z .btn-black:hover::before {
  width: 120%;
  height: 100px;
  left: -5px;
}
.cid-tW0EF57D5z .btn-black::after {
  content: "→";
  position: absolute;
  right: 20px;
  transition: all .3s;
  font-size: 20px;
  bottom: 35%;
}
.cid-tW0EF57D5z .btn-black:hover::after {
  right: -15px;
  font-size: 30px;
  bottom: 28%;
}
@media (min-width: 769px) {
  .cid-tW0EF57D5z .btn-black:hover {
    padding: 2rem 3.5rem 2rem 2rem;
  }
}
.cid-tW0EF57D5z .mbr-section-subtitle {
  text-align: right;
  color: #846a5d;
}
.cid-tW0EGhbZZW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tW0EGhbZZW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tW0EGhbZZW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tW0EGhbZZW .row {
  justify-content: flex-start;
}
.cid-tW0EGhbZZW .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
}
.cid-tW0EGhbZZW .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-tW0EGhbZZW .mbr-section-btn {
  margin-top: 20px;
}
.cid-tXuoyG8dpp {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tXuoyG8dpp .mbr-section-subtitle {
  color: #767676;
}
.cid-tXuoyG8dpp ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tXuoyG8dpp ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-tXuoyG8dpp ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-tXuoyG8dpp ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-tXuoyG8dpp .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-tXuoyG8dpp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXuoyG8dpp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tW0CNqZYZo {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/screenshot-10.jpeg");
}
.cid-tW0CNqZYZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tW0CNqZYZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tW0CNqZYZo .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tW0CNqZYZo .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tW0CNqZYZo .row {
    text-align: center;
  }
  .cid-tW0CNqZYZo .row > div {
    margin: auto;
  }
  .cid-tW0CNqZYZo .social-row {
    justify-content: center;
  }
}
.cid-tW0CNqZYZo .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tW0CNqZYZo .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tW0CNqZYZo .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tW0CNqZYZo .list {
    margin-bottom: 0rem;
  }
}
.cid-tW0CNqZYZo .mbr-text {
  color: #2299aa;
  text-align: right;
}
.cid-tW0CNqZYZo .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-tW0CNqZYZo .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tW0CNqZYZo div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tX7QYK9rDJ {
  z-index: 1000;
  width: 100%;
}
.cid-tX7QYK9rDJ nav.navbar {
  position: fixed;
}
.cid-tX7QYK9rDJ .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-tX7QYK9rDJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tX7QYK9rDJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tX7QYK9rDJ .dropdown-item:hover,
.cid-tX7QYK9rDJ .dropdown-item:focus {
  background: #2299aa !important;
  color: white !important;
}
.cid-tX7QYK9rDJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tX7QYK9rDJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tX7QYK9rDJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tX7QYK9rDJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tX7QYK9rDJ .nav-link {
  position: relative;
}
.cid-tX7QYK9rDJ .container {
  display: flex;
  margin: auto;
}
.cid-tX7QYK9rDJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tX7QYK9rDJ .dropdown-menu,
.cid-tX7QYK9rDJ .navbar.opened {
  background: #fafafa !important;
}
.cid-tX7QYK9rDJ .nav-item:focus,
.cid-tX7QYK9rDJ .nav-link:focus {
  outline: none;
}
.cid-tX7QYK9rDJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tX7QYK9rDJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tX7QYK9rDJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tX7QYK9rDJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tX7QYK9rDJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tX7QYK9rDJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tX7QYK9rDJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.9);
}
.cid-tX7QYK9rDJ .navbar.opened {
  transition: all 0.3s;
}
.cid-tX7QYK9rDJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tX7QYK9rDJ .navbar .navbar-logo img {
  width: auto;
}
.cid-tX7QYK9rDJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tX7QYK9rDJ .navbar.collapsed {
  justify-content: center;
}
.cid-tX7QYK9rDJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tX7QYK9rDJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tX7QYK9rDJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tX7QYK9rDJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tX7QYK9rDJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tX7QYK9rDJ .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-tX7QYK9rDJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tX7QYK9rDJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tX7QYK9rDJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tX7QYK9rDJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tX7QYK9rDJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tX7QYK9rDJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tX7QYK9rDJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tX7QYK9rDJ .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-tX7QYK9rDJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tX7QYK9rDJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tX7QYK9rDJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tX7QYK9rDJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tX7QYK9rDJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tX7QYK9rDJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tX7QYK9rDJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tX7QYK9rDJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tX7QYK9rDJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tX7QYK9rDJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tX7QYK9rDJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tX7QYK9rDJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tX7QYK9rDJ .dropdown-item.active,
.cid-tX7QYK9rDJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tX7QYK9rDJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tX7QYK9rDJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tX7QYK9rDJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tX7QYK9rDJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tX7QYK9rDJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tX7QYK9rDJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tX7QYK9rDJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tX7QYK9rDJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tX7QYK9rDJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tX7QYK9rDJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tX7QYK9rDJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tX7QYK9rDJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tX7QYK9rDJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tX7QYK9rDJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tX7QYK9rDJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tX7QYK9rDJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tX7QYK9rDJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tX7QYK9rDJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tX7QYK9rDJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tX7QYK9rDJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tX7QYK9rDJ .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-tX7QYK9rDJ .navbar {
    height: 70px;
  }
  .cid-tX7QYK9rDJ .navbar.opened {
    height: auto;
  }
  .cid-tX7QYK9rDJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tX7Sfrurxc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/screenshot-8.jpg");
}
.cid-tX7Sfrurxc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX7Sfrurxc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX7Sfrurxc .mbr-text,
.cid-tX7Sfrurxc .mbr-section-btn {
  color: #232323;
}
.cid-tX7Sfrurxc .card-title,
.cid-tX7Sfrurxc .card-box {
  color: #ffffff;
}
.cid-tX7Sfrurxc .mbr-text,
.cid-tX7Sfrurxc .link-wrap {
  color: #ffffff;
}
.cid-tX7XYe4MUo {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #ffffff;
}
.cid-tX7XYe4MUo .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-tX7XYe4MUo .mbr-section-subtitle {
  font-weight: 700 !important;
  color: #003629;
  margin-bottom: 0.7rem;
}
.cid-tX7XYe4MUo input,
.cid-tX7XYe4MUo textarea {
  font-size: 14px;
}
.cid-tX7XYe4MUo input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-tX7XYe4MUo textarea {
  padding: 0.9rem 2rem !important;
  border-radius: 30px;
  height: 100%;
}
.cid-tX7XYe4MUo .form-group {
  margin-bottom: 1.9rem;
  padding: 0rem;
}
.cid-tX7XYe4MUo .col-auto {
  width: 100%;
  text-align: center;
}
.cid-tX7XYe4MUo img {
  width: 90%;
  border-radius: 8px;
}
.cid-tX7XYe4MUo .mbr-form .btn {
  margin: 0.4rem 0.4rem;
  margin-left: 0rem;
}
.cid-tX7XYe4MUo .btn {
  padding: 1rem 3.5rem !important;
}
.cid-tX7XYe4MUo .title-block {
  margin-bottom: 2rem;
}
.cid-tX7XYe4MUo .form-control,
.cid-tX7XYe4MUo .field-input {
  background-color: #dedede;
  border-color: #e2e3e7;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tX7XYe4MUo .form-control:hover,
.cid-tX7XYe4MUo .field-input:hover {
  background-color: #e2e3e7;
  border-color: #e2e3e7 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tX7XYe4MUo .form-control:focus,
.cid-tX7XYe4MUo .field-input:focus {
  background-color: #ffffff;
  border-color: #e2e3e7 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tX7XYe4MUo input::-webkit-input-placeholder,
.cid-tX7XYe4MUo textarea::-webkit-input-placeholder {
  color: #807d78;
}
.cid-tX7XYe4MUo input:-moz-placeholder,
.cid-tX7XYe4MUo textarea:-moz-placeholder {
  color: #807d78;
}
.cid-tX7XYe4MUo .jq-selectbox li,
.cid-tX7XYe4MUo .jq-selectbox li {
  background-color: #dedede;
  color: #000000;
}
.cid-tX7XYe4MUo .jq-selectbox li:hover,
.cid-tX7XYe4MUo .jq-selectbox li.selected {
  background-color: #e2e3e7;
  color: #000000;
}
.cid-tX7XYe4MUo .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #dedede;
}
.cid-tX7XYe4MUo .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #e2e3e7;
}
.cid-tX7XYe4MUo H5 {
  padding-bottom: 2rem;
}
.cid-tX7XYe4MUo .mbr-text {
  color: #777777;
}
.cid-tX7XYe4MUo .mbr-form {
  padding: 0rem;
}
.cid-tX7XYe4MUo .btn-form {
  margin-top: 0.2rem;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .cid-tX7XYe4MUo .form-row {
    margin: 0;
  }
  .cid-tX7XYe4MUo .btn-form {
    width: 100%;
    padding-right: 1rem;
  }
  .cid-tX7XYe4MUo .btn {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-tX7XYe4MUo img {
    width: 100%;
  }
}
.cid-tX7XYe4MUo .form-row > [class*="col-"] {
  padding: 0 1rem;
}
.cid-tX7XYe4MUo H3 {
  color: #003629;
}
.cid-tX7XYe4MUo .mbr-text,
.cid-tX7XYe4MUo .mbr-section-btn {
  color: #003629;
}
.cid-tX7QYLSMYe {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/screenshot-10.jpeg");
}
.cid-tX7QYLSMYe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX7QYLSMYe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX7QYLSMYe .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tX7QYLSMYe .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tX7QYLSMYe .row {
    text-align: center;
  }
  .cid-tX7QYLSMYe .row > div {
    margin: auto;
  }
  .cid-tX7QYLSMYe .social-row {
    justify-content: center;
  }
}
.cid-tX7QYLSMYe .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tX7QYLSMYe .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tX7QYLSMYe .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tX7QYLSMYe .list {
    margin-bottom: 0rem;
  }
}
.cid-tX7QYLSMYe .mbr-text {
  color: #2299aa;
  text-align: right;
}
.cid-tX7QYLSMYe .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-tX7QYLSMYe .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tX7QYLSMYe div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tXvimA0Kke {
  z-index: 1000;
  width: 100%;
}
.cid-tXvimA0Kke nav.navbar {
  position: fixed;
}
.cid-tXvimA0Kke .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-tXvimA0Kke .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXvimA0Kke .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXvimA0Kke .dropdown-item:hover,
.cid-tXvimA0Kke .dropdown-item:focus {
  background: #2299aa !important;
  color: white !important;
}
.cid-tXvimA0Kke .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXvimA0Kke .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXvimA0Kke .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tXvimA0Kke .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXvimA0Kke .nav-link {
  position: relative;
}
.cid-tXvimA0Kke .container {
  display: flex;
  margin: auto;
}
.cid-tXvimA0Kke .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXvimA0Kke .dropdown-menu,
.cid-tXvimA0Kke .navbar.opened {
  background: #fafafa !important;
}
.cid-tXvimA0Kke .nav-item:focus,
.cid-tXvimA0Kke .nav-link:focus {
  outline: none;
}
.cid-tXvimA0Kke .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXvimA0Kke .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXvimA0Kke .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXvimA0Kke .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXvimA0Kke .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXvimA0Kke .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXvimA0Kke .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.9);
}
.cid-tXvimA0Kke .navbar.opened {
  transition: all 0.3s;
}
.cid-tXvimA0Kke .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXvimA0Kke .navbar .navbar-logo img {
  width: auto;
}
.cid-tXvimA0Kke .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXvimA0Kke .navbar.collapsed {
  justify-content: center;
}
.cid-tXvimA0Kke .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXvimA0Kke .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXvimA0Kke .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXvimA0Kke .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXvimA0Kke .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXvimA0Kke .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-tXvimA0Kke .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXvimA0Kke .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXvimA0Kke .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXvimA0Kke .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXvimA0Kke .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXvimA0Kke .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXvimA0Kke .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXvimA0Kke .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-tXvimA0Kke .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXvimA0Kke .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXvimA0Kke .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXvimA0Kke .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXvimA0Kke .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXvimA0Kke .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXvimA0Kke .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXvimA0Kke .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXvimA0Kke .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXvimA0Kke .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXvimA0Kke .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXvimA0Kke .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXvimA0Kke .dropdown-item.active,
.cid-tXvimA0Kke .dropdown-item:active {
  background-color: transparent;
}
.cid-tXvimA0Kke .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXvimA0Kke .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXvimA0Kke .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXvimA0Kke .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tXvimA0Kke .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXvimA0Kke .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXvimA0Kke ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXvimA0Kke .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXvimA0Kke button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXvimA0Kke button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXvimA0Kke button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXvimA0Kke button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXvimA0Kke button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXvimA0Kke button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXvimA0Kke nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXvimA0Kke nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXvimA0Kke nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXvimA0Kke nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXvimA0Kke .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXvimA0Kke a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXvimA0Kke .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-tXvimA0Kke .navbar {
    height: 70px;
  }
  .cid-tXvimA0Kke .navbar.opened {
    height: auto;
  }
  .cid-tXvimA0Kke .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXvimAwx9n {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/untitled1-2.jpg");
}
.cid-tXvimAwx9n .wrapper {
  background-size: cover;
  border-radius: 30px;
  position: relative;
}
.cid-tXvimAwx9n .wrapper img {
  border-radius: 30px;
}
@media (max-width: 768px) {
  .cid-tXvimAwx9n .wrapper {
    padding: 0;
  }
  .cid-tXvimAwx9n .wrapper img {
    width: 70%;
    right: 0;
    bottom: 115px;
  }
}
@media (min-width: 992px) {
  .cid-tXvimAwx9n .wrapper {
    padding: 0 6rem;
  }
}
.cid-tXvimAwx9n .btn {
  border-radius: 30px;
  font-size: 16px;
}
.cid-tXvimAwx9n .btn-black {
  position: relative;
  border-radius: 20px;
  padding: 2rem 4rem 2rem 1.5rem;
  transition: all .3s;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
  margin-right: 40px;
}
@media (max-width: 768px) {
  .cid-tXvimAwx9n .btn-black {
    width: 100%;
    padding: 2rem 1rem;
  }
  .cid-tXvimAwx9n .btn-black::after,
  .cid-tXvimAwx9n .btn-black::before {
    display: none;
  }
}
.cid-tXvimAwx9n .btn-black::before {
  position: absolute;
  background-color: #ff6a61;
  content: "";
  border-radius: 20px;
  width: 100%;
  height: 100%;
  transition: all .3s;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tXvimAwx9n .btn-black:hover::before {
  width: 120%;
  height: 100px;
  left: -5px;
}
.cid-tXvimAwx9n .btn-black::after {
  content: "→";
  position: absolute;
  right: 20px;
  transition: all .3s;
  font-size: 20px;
  bottom: 35%;
}
.cid-tXvimAwx9n .btn-black:hover::after {
  right: -15px;
  font-size: 30px;
  bottom: 28%;
}
@media (min-width: 769px) {
  .cid-tXvimAwx9n .btn-black:hover {
    padding: 2rem 3.5rem 2rem 2rem;
  }
}
.cid-tXvimAwx9n .mbr-section-subtitle {
  text-align: right;
  color: #846a5d;
}
.cid-tXvimAUFPh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXvimAUFPh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXvimAUFPh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXvimAUFPh .row {
  justify-content: flex-start;
}
.cid-tXvimAUFPh .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
}
.cid-tXvimAUFPh .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-tXvimAUFPh .mbr-section-btn {
  margin-top: 20px;
}
.cid-tXvimBijvN {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tXvimBijvN .mbr-section-subtitle {
  color: #767676;
}
.cid-tXvimBijvN ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tXvimBijvN ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-tXvimBijvN ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-tXvimBijvN ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-tXvimBijvN .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-tXvimBijvN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXvimBijvN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXvimBMmuu {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/screenshot-10.jpeg");
}
.cid-tXvimBMmuu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXvimBMmuu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXvimBMmuu .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tXvimBMmuu .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tXvimBMmuu .row {
    text-align: center;
  }
  .cid-tXvimBMmuu .row > div {
    margin: auto;
  }
  .cid-tXvimBMmuu .social-row {
    justify-content: center;
  }
}
.cid-tXvimBMmuu .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tXvimBMmuu .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tXvimBMmuu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tXvimBMmuu .list {
    margin-bottom: 0rem;
  }
}
.cid-tXvimBMmuu .mbr-text {
  color: #2299aa;
  text-align: right;
}
.cid-tXvimBMmuu .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-tXvimBMmuu .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tXvimBMmuu div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u07NwmhVsg {
  z-index: 1000;
  width: 100%;
}
.cid-u07NwmhVsg nav.navbar {
  position: fixed;
}
.cid-u07NwmhVsg .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-u07NwmhVsg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u07NwmhVsg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u07NwmhVsg .dropdown-item:hover,
.cid-u07NwmhVsg .dropdown-item:focus {
  background: #2299aa !important;
  color: white !important;
}
.cid-u07NwmhVsg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u07NwmhVsg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u07NwmhVsg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u07NwmhVsg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u07NwmhVsg .nav-link {
  position: relative;
}
.cid-u07NwmhVsg .container {
  display: flex;
  margin: auto;
}
.cid-u07NwmhVsg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u07NwmhVsg .dropdown-menu,
.cid-u07NwmhVsg .navbar.opened {
  background: #fafafa !important;
}
.cid-u07NwmhVsg .nav-item:focus,
.cid-u07NwmhVsg .nav-link:focus {
  outline: none;
}
.cid-u07NwmhVsg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u07NwmhVsg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u07NwmhVsg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u07NwmhVsg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u07NwmhVsg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u07NwmhVsg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u07NwmhVsg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.9);
}
.cid-u07NwmhVsg .navbar.opened {
  transition: all 0.3s;
}
.cid-u07NwmhVsg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u07NwmhVsg .navbar .navbar-logo img {
  width: auto;
}
.cid-u07NwmhVsg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u07NwmhVsg .navbar.collapsed {
  justify-content: center;
}
.cid-u07NwmhVsg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u07NwmhVsg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u07NwmhVsg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u07NwmhVsg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u07NwmhVsg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u07NwmhVsg .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-u07NwmhVsg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u07NwmhVsg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u07NwmhVsg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u07NwmhVsg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u07NwmhVsg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u07NwmhVsg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u07NwmhVsg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u07NwmhVsg .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-u07NwmhVsg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u07NwmhVsg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u07NwmhVsg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u07NwmhVsg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u07NwmhVsg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u07NwmhVsg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u07NwmhVsg .navbar.navbar-short {
  min-height: 60px;
}
.cid-u07NwmhVsg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u07NwmhVsg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u07NwmhVsg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u07NwmhVsg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u07NwmhVsg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u07NwmhVsg .dropdown-item.active,
.cid-u07NwmhVsg .dropdown-item:active {
  background-color: transparent;
}
.cid-u07NwmhVsg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u07NwmhVsg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u07NwmhVsg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u07NwmhVsg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-u07NwmhVsg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u07NwmhVsg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u07NwmhVsg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u07NwmhVsg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u07NwmhVsg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u07NwmhVsg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u07NwmhVsg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u07NwmhVsg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u07NwmhVsg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u07NwmhVsg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u07NwmhVsg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u07NwmhVsg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u07NwmhVsg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u07NwmhVsg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u07NwmhVsg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u07NwmhVsg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u07NwmhVsg .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-u07NwmhVsg .navbar {
    height: 70px;
  }
  .cid-u07NwmhVsg .navbar.opened {
    height: auto;
  }
  .cid-u07NwmhVsg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u07NwmG6pr {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/untitled1-2.jpg");
}
.cid-u07NwmG6pr .wrapper {
  background-size: cover;
  border-radius: 30px;
  position: relative;
}
.cid-u07NwmG6pr .wrapper img {
  border-radius: 30px;
}
@media (max-width: 768px) {
  .cid-u07NwmG6pr .wrapper {
    padding: 0;
  }
  .cid-u07NwmG6pr .wrapper img {
    width: 70%;
    right: 0;
    bottom: 115px;
  }
}
@media (min-width: 992px) {
  .cid-u07NwmG6pr .wrapper {
    padding: 0 6rem;
  }
}
.cid-u07NwmG6pr .btn {
  border-radius: 30px;
  font-size: 16px;
}
.cid-u07NwmG6pr .btn-black {
  position: relative;
  border-radius: 20px;
  padding: 2rem 4rem 2rem 1.5rem;
  transition: all .3s;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
  margin-right: 40px;
}
@media (max-width: 768px) {
  .cid-u07NwmG6pr .btn-black {
    width: 100%;
    padding: 2rem 1rem;
  }
  .cid-u07NwmG6pr .btn-black::after,
  .cid-u07NwmG6pr .btn-black::before {
    display: none;
  }
}
.cid-u07NwmG6pr .btn-black::before {
  position: absolute;
  background-color: #ff6a61;
  content: "";
  border-radius: 20px;
  width: 100%;
  height: 100%;
  transition: all .3s;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-u07NwmG6pr .btn-black:hover::before {
  width: 120%;
  height: 100px;
  left: -5px;
}
.cid-u07NwmG6pr .btn-black::after {
  content: "→";
  position: absolute;
  right: 20px;
  transition: all .3s;
  font-size: 20px;
  bottom: 35%;
}
.cid-u07NwmG6pr .btn-black:hover::after {
  right: -15px;
  font-size: 30px;
  bottom: 28%;
}
@media (min-width: 769px) {
  .cid-u07NwmG6pr .btn-black:hover {
    padding: 2rem 3.5rem 2rem 2rem;
  }
}
.cid-u07NwmG6pr .mbr-section-subtitle {
  text-align: right;
  color: #846a5d;
}
.cid-u07Nwn2IG2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u07Nwn2IG2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u07Nwn2IG2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u07Nwn2IG2 .row {
  justify-content: flex-start;
}
.cid-u07Nwn2IG2 .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
}
.cid-u07Nwn2IG2 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-u07Nwn2IG2 .mbr-section-btn {
  margin-top: 20px;
}
.cid-u07NwnmPu1 {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-u07NwnmPu1 .mbr-section-subtitle {
  color: #767676;
}
.cid-u07NwnmPu1 ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u07NwnmPu1 ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-u07NwnmPu1 ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-u07NwnmPu1 ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-u07NwnmPu1 .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-u07NwnmPu1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u07NwnmPu1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u07NwnRyM5 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/screenshot-10.jpeg");
}
.cid-u07NwnRyM5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u07NwnRyM5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u07NwnRyM5 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u07NwnRyM5 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u07NwnRyM5 .row {
    text-align: center;
  }
  .cid-u07NwnRyM5 .row > div {
    margin: auto;
  }
  .cid-u07NwnRyM5 .social-row {
    justify-content: center;
  }
}
.cid-u07NwnRyM5 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u07NwnRyM5 .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-u07NwnRyM5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u07NwnRyM5 .list {
    margin-bottom: 0rem;
  }
}
.cid-u07NwnRyM5 .mbr-text {
  color: #2299aa;
  text-align: right;
}
.cid-u07NwnRyM5 .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-u07NwnRyM5 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u07NwnRyM5 div > *:last-child {
    margin-top: 0 !important;
  }
}
