body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
}
.display-1 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
  font-weight: 400;
}
.display-5 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.5rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ff8a73 !important;
}
.bg-success {
  background-color: #1fe5e7 !important;
}
.bg-info {
  background-color: #f99719 !important;
}
.bg-warning {
  background-color: #1c91e5 !important;
}
.bg-danger {
  background-color: #4892f1 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff8a73 !important;
  border-color: #ff8a73 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #ff4a26 !important;
  border-color: #ff4a26 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff4a26 !important;
  border-color: #ff4a26 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #5580ff !important;
  border-color: #5580ff !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0847ff !important;
  border-color: #0847ff !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0847ff !important;
  border-color: #0847ff !important;
}
.btn-info,
.btn-info:active {
  background-color: #f99719 !important;
  border-color: #f99719 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #c06e05 !important;
  border-color: #c06e05 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #c06e05 !important;
  border-color: #c06e05 !important;
}
.btn-success,
.btn-success:active {
  background-color: #1fe5e7 !important;
  border-color: #1fe5e7 !important;
  color: #010606 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #010606 !important;
  background-color: #12a6a8 !important;
  border-color: #12a6a8 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #010606 !important;
  background-color: #12a6a8 !important;
  border-color: #12a6a8 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #1c91e5 !important;
  border-color: #1c91e5 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #1366a2 !important;
  border-color: #1366a2 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #1366a2 !important;
  border-color: #1366a2 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #4892f1 !important;
  border-color: #4892f1 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #116adc !important;
  border-color: #116adc !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #116adc !important;
  border-color: #116adc !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #ff350d;
  color: #ff350d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #ff8a73;
  border-color: #ff8a73;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff8a73 !important;
  border-color: #ff8a73 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #003cee;
  color: #003cee;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #5580ff;
  border-color: #5580ff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #5580ff !important;
  border-color: #5580ff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #a86004;
  color: #a86004;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #f99719;
  border-color: #f99719;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #f99719 !important;
  border-color: #f99719 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #0f8f91;
  color: #0f8f91;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #010606;
  background-color: #1fe5e7;
  border-color: #1fe5e7;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #010606 !important;
  background-color: #1fe5e7 !important;
  border-color: #1fe5e7 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #10588b;
  color: #10588b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #1c91e5;
  border-color: #1c91e5;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #1c91e5 !important;
  border-color: #1c91e5 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #0f5ec4;
  color: #0f5ec4;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #4892f1;
  border-color: #4892f1;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #4892f1 !important;
  border-color: #4892f1 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ff8a73 !important;
}
.text-secondary {
  color: #5580ff !important;
}
.text-success {
  color: #1fe5e7 !important;
}
.text-info {
  color: #f99719 !important;
}
.text-warning {
  color: #1c91e5 !important;
}
.text-danger {
  color: #4892f1 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ff350d !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #003cee !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #0f8f91 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #a86004 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #10588b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #0f5ec4 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #f99719;
}
.alert-warning {
  background-color: #1c91e5;
}
.alert-danger {
  background-color: #4892f1;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff8a73;
  border-color: #ff8a73;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff8a73;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d7fafb;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fef1e0;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d3eafa;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
  font-weight: 400;
}
blockquote {
  border-color: #ff8a73;
}
.btn-primary {
  margin: 1rem 0.5rem !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 6px 16px 0 #ff8a73 !important;
  -webkit-box-shadow: 0 6px 16px 0 #ff8a73 !important;
  background-color: #ff8a73 !important;
  border-color: #ff8a73 !important;
}
.btn-secondary {
  margin: 1rem 0.5rem !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 6px 15px 0 #5580ff !important;
  -webkit-box-shadow: 0 6px 16px 0 #5580ff !important;
  background-color: #5580ff !important;
  border-color: #5580ff !important;
}
.btn-success {
  color: white !important;
  margin: 1rem 0.5rem !important;
}
.btn-success:active {
  color: white !important;
}
.btn-success:hover,
.btn-success:focus {
  color: white !important;
  box-shadow: 0 6px 15px 0 #1fe5e7 !important;
  -webkit-box-shadow: 0 6px 16px 0 #1fe5e7 !important;
  background-color: #1fe5e7 !important;
  border-color: #1fe5e7 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff8a73;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  background-color: #f5f6ff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff8a73;
  border-bottom-color: #ff8a73;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ff8a73 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #5580ff !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 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='%23ff8a73' %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;
}
.cid-sSvriosCOg .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sSvriosCOg .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-sSvriosCOg .nav-item:focus,
.cid-sSvriosCOg .nav-link:focus {
  outline: none;
}
.cid-sSvriosCOg .text-white:hover,
.cid-sSvriosCOg .text-white:active,
.cid-sSvriosCOg .text-white:focus {
  color: white!important;
}
.cid-sSvriosCOg .section {
  position: relative;
  overflow: visible!important;
}
.cid-sSvriosCOg .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-sSvriosCOg .dropdown-item:hover {
  color: black!important;
}
.cid-sSvriosCOg .dropdown-menu {
  background-color: white!important;
}
.cid-sSvriosCOg .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-sSvriosCOg .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sSvriosCOg .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-sSvriosCOg .nav-item .nav-link {
    position: relative;
  }
}
.cid-sSvriosCOg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sSvriosCOg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSvriosCOg .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sSvriosCOg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sSvriosCOg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sSvriosCOg .collapsed {
  flex-direction: row!important;
}
.cid-sSvriosCOg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSvriosCOg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSvriosCOg .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #020729;
}
.cid-sSvriosCOg .navbar.opened {
  transition: all .3s;
  background: #020729 !important;
}
.cid-sSvriosCOg .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sSvriosCOg .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSvriosCOg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSvriosCOg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sSvriosCOg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sSvriosCOg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSvriosCOg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSvriosCOg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sSvriosCOg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSvriosCOg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sSvriosCOg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sSvriosCOg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSvriosCOg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSvriosCOg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sSvriosCOg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSvriosCOg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSvriosCOg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sSvriosCOg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sSvriosCOg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSvriosCOg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSvriosCOg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sSvriosCOg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sSvriosCOg .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sSvriosCOg .navbar.navbar-short {
  background: #020729 !important;
  min-height: 60px;
}
.cid-sSvriosCOg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sSvriosCOg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sSvriosCOg .navbar-caption {
  font-weight: 600!important;
}
.cid-sSvriosCOg .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sSvriosCOg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSvriosCOg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSvriosCOg .dropdown-item.active,
.cid-sSvriosCOg .dropdown-item:active {
  background-color: transparent;
}
.cid-sSvriosCOg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSvriosCOg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSvriosCOg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSvriosCOg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #020729;
}
.cid-sSvriosCOg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSvriosCOg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sSvriosCOg .navbar-buttons {
  text-align: center;
}
.cid-sSvriosCOg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sSvriosCOg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ca9216;
}
.cid-sSvriosCOg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sSvriosCOg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sSvriosCOg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sSvriosCOg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sSvriosCOg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sSvriosCOg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sSvriosCOg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sSvriosCOg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sSvriosCOg .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-sSvriosCOg .nav-link {
  font-weight: 600!important;
}
.cid-sSvriosCOg a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sSvriosCOg .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sSvriosCOg .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sSvriosCOg .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sSvriosCOg .navbar {
    height: 77px;
  }
  .cid-sSvriosCOg .navbar.opened {
    height: auto;
  }
  .cid-sSvriosCOg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBbfd8FAcO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uBbfd8FAcO .carousel {
  height: 800px;
}
.cid-uBbfd8FAcO .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uBbfd8FAcO .carousel-item,
.cid-uBbfd8FAcO .carousel-inner {
  height: 100%;
}
.cid-uBbfd8FAcO .carousel-caption {
  bottom: 40px;
}
.cid-uBbfd8FAcO .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBbfd8FAcO .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBbfd8FAcO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBbfd8FAcO .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uBbfd8FAcO .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBbfd8FAcO .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBbfd8FAcO .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBbfd8FAcO .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uBbfd8FAcO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBbfd8FAcO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBbfd8FAcO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBbfd8FAcO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBbfd8FAcO .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uBbfd8FAcO .carousel-indicators li.active,
.cid-uBbfd8FAcO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBbfd8FAcO .carousel-indicators li::after,
.cid-uBbfd8FAcO .carousel-indicators li::before {
  content: none;
}
.cid-uBbfd8FAcO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBbfd8FAcO .carousel-indicators {
    display: none !important;
  }
}
.cid-uBbwObJoyr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #03042b;
}
.cid-uBbwObJoyr .container-fluid {
  padding: 0;
}
.cid-uBbwObJoyr img {
  width: 100%;
}
.cid-uBbwObJoyr .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-uBbwObJoyr .content {
    padding: 3rem;
  }
}
.cid-uBbwObJoyr .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-uBbwObJoyr .img-col {
  padding: 0;
  margin: auto;
}
.cid-uBbwObJoyr .mbr-section-title {
  text-align: center;
  color: #ca9216;
}
.cid-uBbVIac5wo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #020729;
}
.cid-uBbVIac5wo .item {
  padding-bottom: 2rem;
}
.cid-uBbVIac5wo .item-wrapper {
  height: 100%;
}
.cid-uBbVIac5wo .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uBbVIac5wo .carousel-control,
.cid-uBbVIac5wo .close {
  background: #1b1b1b;
}
.cid-uBbVIac5wo .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uBbVIac5wo .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uBbVIac5wo .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-uBbVIac5wo .close::before {
  content: '\e91a';
}
.cid-uBbVIac5wo .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uBbVIac5wo .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-uBbVIac5wo .carousel-inner > .active {
  display: block;
}
.cid-uBbVIac5wo .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBbVIac5wo .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uBbVIac5wo .carousel-control .icon-next,
.cid-uBbVIac5wo .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uBbVIac5wo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uBbVIac5wo .carousel-control,
  .cid-uBbVIac5wo .carousel-indicators,
  .cid-uBbVIac5wo .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uBbVIac5wo .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uBbVIac5wo .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uBbVIac5wo .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-uBbVIac5wo .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uBbVIac5wo .carousel-indicators {
    display: none;
  }
}
.cid-uBbVIac5wo .carousel-indicators .active,
.cid-uBbVIac5wo .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-uBbVIac5wo .carousel-indicators .active {
  background: #fff;
}
.cid-uBbVIac5wo .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uBbVIac5wo .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uBbVIac5wo .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uBbVIac5wo .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uBbVIac5wo .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uBbVIac5wo .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-uBbVIac5wo .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uBbVIac5wo .carousel {
  width: 100%;
}
.cid-uBbVIac5wo .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uBbVIac5wo .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-uBbVIac5wo .modal.fade .modal-dialog,
.cid-uBbVIac5wo .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-uBbVIac5wo .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uBbVIac5wo a {
  display: block;
}
.cid-uBbVIac5wo a.img {
  pointer-events: none;
}
.cid-sSvsKbc15F {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #020729;
}
.cid-sSvsKbc15F .mbr-text {
  color: #ca9216;
}
.cid-sSvsKbc15F .card-img span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-sSvsKbc15F .card-img .img1 {
  background-color: #9a6f0f;
}
.cid-sSvsKbc15F .card-img .img2 {
  background-color: #9a6f0f;
}
.cid-sSvsKbc15F .card-img .img3 {
  background-color: #9a6f0f;
}
.cid-sSvsKbc15F .card-img .img4 {
  background-color: #ff8a73;
}
.cid-sSvsKbc15F .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1.5rem !important;
}
.cid-sSvsKbc15F .card {
  display: flex;
  flex-direction: row;
  transition: all 0.3s;
  padding: 2rem 1.5rem !important;
}
.cid-sSvsKbc15F .card:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1.5rem);
}
.cid-sSvsKbc15F .card-title,
.cid-sSvsKbc15F .card-img {
  color: #57468b;
}
@media (max-width: 576px) {
  .cid-sSvsKbc15F .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-sSvsKbc15F .card .card-img {
    margin-bottom: 1rem;
  }
  .cid-sSvsKbc15F .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-sSvsKbc15F .card-img span {
    margin-right: 0rem;
  }
}
.cid-sSvsKbc15F .card-title {
  color: #ffffff;
}
.cid-sSw1PGCn3I {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sSw1PGCn3I .card-title {
  line-height: 1.6;
  padding: 15px 25px;
  background: linear-gradient(to top, #333333, transparent);
  margin: 0;
  text-align: left;
  color: #ffffff;
}
.cid-sSw1PGCn3I .card-img {
  position: relative;
}
.cid-sSw1PGCn3I .card-img:hover .card-title {
  background: linear-gradient(to top, #274abb, transparent);
}
.cid-sSw1PGCn3I .card {
  margin-bottom: 2rem;
  owerflow: hidden;
}
.cid-sSw1PGCn3I .card-wrapper {
  position: relative;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
}
.cid-sSw1PGCn3I .ico2 {
  color: #fff4e8;
  font-size: 1.1rem;
}
.cid-sSw1PGCn3I .icobig {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  color: #ffffff;
  font-size: 2.1rem;
}
.cid-sSw1PGCn3I .text-box {
  padding: 20px;
}
.cid-sSw1PGCn3I .text-box p {
  margin: 0;
}
.cid-sSw1PGCn3I .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sSw1PGCn3I .ico-box p {
  margin: 0;
}
.cid-sSw1PGCn3I .ico-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.5rem;
}
.cid-sSw1PGCn3I .p-box {
  background-color: #f1f1f1;
  width: 100%;
  padding: 10px;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-sSw1PGCn3I .p-box p {
  padding: 10px;
  margin: 0;
  line-height: 1.5;
}
.cid-sSw1PGCn3I .card-box {
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0;
  padding: 0px;
  transition: all 0.3s;
}
.cid-sSw1PGCn3I .mbr-section-title {
  color: #ca9216;
}
.cid-sSw1PGCn3I .card-box {
  bottom: 0px;
}
@media (max-width: 991px) {
  .cid-sSw1PGCn3I .card-box {
    bottom: 0px;
  }
  .cid-sSw1PGCn3I .p-box {
    padding: 0px;
  }
  .cid-sSw1PGCn3I .card-title {
    padding: 10px 15px;
  }
}
.cid-sSw1PGCn3I .card-text {
  color: #656565;
}
.cid-sSw1PGCn3I .phone {
  color: #000000;
}
.cid-sSw1PGCn3I .card-title2 {
  color: #020729;
  text-align: center;
}
.cid-sSw1PGCn3I .phone B {
  color: #000000;
}
.cid-sSvsSNgsbL {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #020729;
}
.cid-sSvsSNgsbL H1 {
  color: #ca9216;
}
.cid-sSvsSNgsbL .mbr-text,
.cid-sSvsSNgsbL .mbr-section-btn {
  color: #fff4e8;
}
.cid-sSvsSNgsbL img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-sSvsSNgsbL .col-lg-6 {
    padding: 0 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sSvsSNgsbL img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-sSIPIgjOqA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sSIPIgjOqA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sSIPIgjOqA .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-sSIPIgjOqA .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-sSIPIgjOqA .btn-primary-outline:active {
  color: gray;
}
.cid-sSIPIgjOqA .btn-primary-outline:hover {
  color: white;
}
.cid-sSIPIgjOqA div {
  overflow: hidden;
}
.cid-sSIPIgjOqA .btn-primary-outline.active {
  color: white;
}
.cid-sSIPIgjOqA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sSIPIgjOqA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sSIPIgjOqA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sSIPIgjOqA .mbr-gallery-item {
  overflow: hidden;
}
.cid-sSIPIgjOqA .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-sSIPIgjOqA .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-sSIPIgjOqA .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-sSIPIgjOqA .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sSIPIgjOqA .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sSIPIgjOqA .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-sSIPIgjOqA .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sSIPIgjOqA .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-t82w3sQ3A5 {
  background-image: url("../../../assets/images/6-best-places-to-study-abroad-v2-848x477.jpg");
}
.cid-t82w3sQ3A5 .mbr-overlay {
  background-color: #020729;
  opacity: 0.8;
}
.cid-t82w3sQ3A5 img {
  width: 90%;
  border-radius: 8px;
}
.cid-t82w3sQ3A5 .btn {
  border-radius: 30px;
  padding: 0.7rem 2.4rem;
  margin: 0;
  position: relative;
}
.cid-t82w3sQ3A5 textarea {
  min-height: 130px;
}
.cid-t82w3sQ3A5 H5 {
  color: #12265a ;
}
@media (max-width: 992px) {
  .cid-t82w3sQ3A5 img {
    width: 100%;
  }
  .cid-t82w3sQ3A5 .map-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t82w3sQ3A5 .google-map {
  height: 95%;
  position: relative;
}
.cid-t82w3sQ3A5 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t82w3sQ3A5 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-t82w3sQ3A5 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t82w3sQ3A5 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-t82w3sQ3A5 .col-auto {
    width: 100%;
    text-align: center;
  }
}
.cid-t82w3sQ3A5 .container-fluid {
  max-width: 1200px;
}
.cid-t82w3sQ3A5 svg {
  position: relative;
  left: 0;
  top: 0;
}
.cid-t82w3sQ3A5 .inner-dashed-border {
  stroke: #ffffff;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.cid-t82w3sQ3A5 .button-svg:hover .inner-dashed-border {
  animation-play-state: running;
  stroke: #ffffff;
}
@keyframes dashed_border_running {
  100% {
    stroke-dashoffset: -1000;
  }
}
.cid-t82w3sQ3A5 rect {
  position: absolute;
  width: 95%;
}
@media (max-width: 767px) {
  .cid-t82w3sQ3A5 {
    padding-top: 50px;
    padding-bottom: 40px;
  }
  .cid-t82w3sQ3A5 .title {
    text-align: left;
  }
  .cid-t82w3sQ3A5 .dragArea {
    padding-left: 0rem;
  }
  .cid-t82w3sQ3A5 .mbr-section-title {
    text-align: left;
  }
}
@media (min-width: 767px) {
  .cid-t82w3sQ3A5 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .cid-t82w3sQ3A5 .container-fluid {
    padding: 0 1.8rem;
  }
}
@media (min-width: 992px) {
  .cid-t82w3sQ3A5 .dragArea {
    padding-left: 2rem;
  }
}
.cid-t82w3sQ3A5 .mbr-section-title span {
  display: inline-block;
}
.cid-t82w3sQ3A5 .mbr-text {
  margin-top: 0.5rem;
}
.cid-t82w3sQ3A5 .svg1 {
  position: absolute;
  padding: 2px;
}
.cid-t82w3sQ3A5 .svg1 rect {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}
.cid-t82w3sQ3A5 .mbr-section-btn {
  margin-left: 5px;
}
.cid-t82w3sQ3A5 iframe {
  border-radius: 30px;
}
.cid-t82w3sQ3A5 .mbr-section-title {
  color: #ca9216;
  text-align: center;
}
.cid-sSvrMMUUjk {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #020729;
  position: relative;
  overflow: hidden;
}
.cid-sSvrMMUUjk .container {
  max-width: 1400px;
}
.cid-sSvrMMUUjk .card-img2 span {
  padding-top: 6px;
}
.cid-sSvrMMUUjk .soc-item a {
  padding-top: 5px;
}
.cid-sSvrMMUUjk .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-sSvrMMUUjk .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sSvrMMUUjk .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sSvrMMUUjk .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sSvrMMUUjk svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sSvrMMUUjk #e2_shape {
  fill: #ffffff !important;
}
.cid-sSvrMMUUjk .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ca9216;
}
.cid-sSvrMMUUjk .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sSvrMMUUjk .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sSvrMMUUjk .card-img {
  width: auto;
}
.cid-sSvrMMUUjk .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sSvrMMUUjk .soc-item span {
  font-size: 1.4rem;
}
.cid-sSvrMMUUjk .soc-item:hover span {
  color: #ff8a73 !important;
}
.cid-sSvrMMUUjk .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sSvrMMUUjk .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sSvrMMUUjk .media-wrap {
  margin-bottom: 1rem;
}
.cid-sSvrMMUUjk .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sSvrMMUUjk img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-sSvrMMUUjk .item {
    justify-content: center;
  }
  .cid-sSvrMMUUjk .quote::after {
    left: 60px;
  }
}
.cid-sSvrMMUUjk .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sSvrMMUUjk .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sSvrMMUUjk .text1 {
  color: #ffffff;
}
.cid-sSvrMMUUjk .item-title {
  color: #ca9216;
}
.cid-sSvrMMUUjk H5 {
  color: #fff4e8;
}
.cid-sSvrMMUUjk .theme {
  color: #ca9216;
}
.cid-sSvrMMUUjk .copyright > p {
  color: #ff3366;
}
.cid-sSvrMMUUjk .text2 {
  color: #ca9216;
}
.cid-tSiw0C9QKn .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tSiw0C9QKn .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tSiw0C9QKn .nav-item:focus,
.cid-tSiw0C9QKn .nav-link:focus {
  outline: none;
}
.cid-tSiw0C9QKn .text-white:hover,
.cid-tSiw0C9QKn .text-white:active,
.cid-tSiw0C9QKn .text-white:focus {
  color: white!important;
}
.cid-tSiw0C9QKn .section {
  position: relative;
  overflow: visible!important;
}
.cid-tSiw0C9QKn .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tSiw0C9QKn .dropdown-item:hover {
  color: black!important;
}
.cid-tSiw0C9QKn .dropdown-menu {
  background-color: white!important;
}
.cid-tSiw0C9QKn .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tSiw0C9QKn .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tSiw0C9QKn .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tSiw0C9QKn .nav-item .nav-link {
    position: relative;
  }
}
.cid-tSiw0C9QKn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tSiw0C9QKn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSiw0C9QKn .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tSiw0C9QKn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tSiw0C9QKn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tSiw0C9QKn .collapsed {
  flex-direction: row!important;
}
.cid-tSiw0C9QKn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSiw0C9QKn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSiw0C9QKn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #020729;
}
.cid-tSiw0C9QKn .navbar.opened {
  transition: all .3s;
  background: #020729 !important;
}
.cid-tSiw0C9QKn .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tSiw0C9QKn .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSiw0C9QKn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSiw0C9QKn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tSiw0C9QKn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tSiw0C9QKn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSiw0C9QKn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSiw0C9QKn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tSiw0C9QKn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSiw0C9QKn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tSiw0C9QKn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tSiw0C9QKn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSiw0C9QKn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSiw0C9QKn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tSiw0C9QKn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSiw0C9QKn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSiw0C9QKn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tSiw0C9QKn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tSiw0C9QKn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSiw0C9QKn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSiw0C9QKn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tSiw0C9QKn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tSiw0C9QKn .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tSiw0C9QKn .navbar.navbar-short {
  background: #020729 !important;
  min-height: 60px;
}
.cid-tSiw0C9QKn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tSiw0C9QKn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tSiw0C9QKn .navbar-caption {
  font-weight: 600!important;
}
.cid-tSiw0C9QKn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tSiw0C9QKn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSiw0C9QKn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSiw0C9QKn .dropdown-item.active,
.cid-tSiw0C9QKn .dropdown-item:active {
  background-color: transparent;
}
.cid-tSiw0C9QKn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSiw0C9QKn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSiw0C9QKn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSiw0C9QKn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #020729;
}
.cid-tSiw0C9QKn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSiw0C9QKn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tSiw0C9QKn .navbar-buttons {
  text-align: center;
}
.cid-tSiw0C9QKn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tSiw0C9QKn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ca9216;
}
.cid-tSiw0C9QKn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tSiw0C9QKn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tSiw0C9QKn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tSiw0C9QKn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tSiw0C9QKn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tSiw0C9QKn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tSiw0C9QKn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tSiw0C9QKn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tSiw0C9QKn .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-tSiw0C9QKn .nav-link {
  font-weight: 600!important;
}
.cid-tSiw0C9QKn a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tSiw0C9QKn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tSiw0C9QKn .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tSiw0C9QKn .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tSiw0C9QKn .navbar {
    height: 77px;
  }
  .cid-tSiw0C9QKn .navbar.opened {
    height: auto;
  }
  .cid-tSiw0C9QKn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBbV2YpHbj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uBbV2YpHbj .carousel {
  height: 800px;
}
.cid-uBbV2YpHbj .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uBbV2YpHbj .carousel-item,
.cid-uBbV2YpHbj .carousel-inner {
  height: 100%;
}
.cid-uBbV2YpHbj .carousel-caption {
  bottom: 40px;
}
.cid-uBbV2YpHbj .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uBbV2YpHbj .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uBbV2YpHbj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uBbV2YpHbj .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uBbV2YpHbj .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uBbV2YpHbj .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uBbV2YpHbj .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uBbV2YpHbj .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uBbV2YpHbj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBbV2YpHbj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBbV2YpHbj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBbV2YpHbj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uBbV2YpHbj .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uBbV2YpHbj .carousel-indicators li.active,
.cid-uBbV2YpHbj .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBbV2YpHbj .carousel-indicators li::after,
.cid-uBbV2YpHbj .carousel-indicators li::before {
  content: none;
}
.cid-uBbV2YpHbj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBbV2YpHbj .carousel-indicators {
    display: none !important;
  }
}
.cid-tSiywPHwyk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #020729;
}
.cid-tSiywPHwyk .mbr-section-title {
  letter-spacing: 0.1em;
  color: #ca9216;
  margin-bottom: 2rem;
}
.cid-tSiywPHwyk .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-tSiywPHwyk .btn {
  margin: 0px !important;
}
.cid-tSiywPHwyk .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tSiywPHwyk .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tSiywPHwyk .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-tSiywPHwyk .carousel-item .wrap-img {
  text-align: center;
}
.cid-tSiywPHwyk .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-tSiywPHwyk .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-tSiywPHwyk .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-tSiywPHwyk .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-tSiywPHwyk .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-tSiywPHwyk .second-col {
    padding-top: 2rem;
  }
}
.cid-tSiywPHwyk .mbr-section-subtitle,
.cid-tSiywPHwyk .mbr-section-btn {
  color: #ffffff;
}
.cid-uBbVnGSu9Y {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #020729;
}
.cid-uBbVnGSu9Y .item {
  padding-bottom: 2rem;
}
.cid-uBbVnGSu9Y .item-wrapper {
  height: 100%;
}
.cid-uBbVnGSu9Y .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uBbVnGSu9Y .carousel-control,
.cid-uBbVnGSu9Y .close {
  background: #1b1b1b;
}
.cid-uBbVnGSu9Y .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uBbVnGSu9Y .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uBbVnGSu9Y .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-uBbVnGSu9Y .close::before {
  content: '\e91a';
}
.cid-uBbVnGSu9Y .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uBbVnGSu9Y .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-uBbVnGSu9Y .carousel-inner > .active {
  display: block;
}
.cid-uBbVnGSu9Y .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBbVnGSu9Y .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uBbVnGSu9Y .carousel-control .icon-next,
.cid-uBbVnGSu9Y .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uBbVnGSu9Y .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uBbVnGSu9Y .carousel-control,
  .cid-uBbVnGSu9Y .carousel-indicators,
  .cid-uBbVnGSu9Y .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uBbVnGSu9Y .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uBbVnGSu9Y .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uBbVnGSu9Y .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-uBbVnGSu9Y .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uBbVnGSu9Y .carousel-indicators {
    display: none;
  }
}
.cid-uBbVnGSu9Y .carousel-indicators .active,
.cid-uBbVnGSu9Y .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-uBbVnGSu9Y .carousel-indicators .active {
  background: #fff;
}
.cid-uBbVnGSu9Y .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uBbVnGSu9Y .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uBbVnGSu9Y .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uBbVnGSu9Y .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uBbVnGSu9Y .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uBbVnGSu9Y .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-uBbVnGSu9Y .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uBbVnGSu9Y .carousel {
  width: 100%;
}
.cid-uBbVnGSu9Y .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uBbVnGSu9Y .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-uBbVnGSu9Y .modal.fade .modal-dialog,
.cid-uBbVnGSu9Y .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-uBbVnGSu9Y .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uBbVnGSu9Y a {
  display: block;
}
.cid-uBbVnGSu9Y a.img {
  pointer-events: none;
}
.cid-tSiysxXxTK {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tSiysxXxTK .container-fluid {
  padding: 0 3rem;
}
.cid-tSiysxXxTK .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ff8a73, #5580ff);
  display: inline-block;
}
.cid-tSiysxXxTK .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tSiysxXxTK .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-tSiysxXxTK .card .card-wrapper {
  height: 1%;
}
.cid-tSiysxXxTK .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-tSiysxXxTK .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tSiysxXxTK .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #020729;
}
.cid-tSiysxXxTK .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tSiysxXxTK .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-tSiysxXxTK .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tSiysxXxTK .img-text {
  color: #ca9216;
}
.cid-tSiysxXxTK .mbr-section-title,
.cid-tSiysxXxTK .underline {
  color: #020729;
}
.cid-uBbSte20Eg {
  background-image: url("../../../assets/images/6-best-places-to-study-abroad-v2-848x477.jpg");
}
.cid-uBbSte20Eg .mbr-overlay {
  background-color: #020729;
  opacity: 0.8;
}
.cid-uBbSte20Eg img {
  width: 90%;
  border-radius: 8px;
}
.cid-uBbSte20Eg .btn {
  border-radius: 30px;
  padding: 0.7rem 2.4rem;
  margin: 0;
  position: relative;
}
.cid-uBbSte20Eg textarea {
  min-height: 130px;
}
.cid-uBbSte20Eg H5 {
  color: #12265a ;
}
@media (max-width: 992px) {
  .cid-uBbSte20Eg img {
    width: 100%;
  }
  .cid-uBbSte20Eg .map-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBbSte20Eg .google-map {
  height: 95%;
  position: relative;
}
.cid-uBbSte20Eg .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uBbSte20Eg .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uBbSte20Eg .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uBbSte20Eg .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-uBbSte20Eg .col-auto {
    width: 100%;
    text-align: center;
  }
}
.cid-uBbSte20Eg .container-fluid {
  max-width: 1200px;
}
.cid-uBbSte20Eg svg {
  position: relative;
  left: 0;
  top: 0;
}
.cid-uBbSte20Eg .inner-dashed-border {
  stroke: #ffffff;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.cid-uBbSte20Eg .button-svg:hover .inner-dashed-border {
  animation-play-state: running;
  stroke: #ffffff;
}
@keyframes dashed_border_running {
  100% {
    stroke-dashoffset: -1000;
  }
}
.cid-uBbSte20Eg rect {
  position: absolute;
  width: 95%;
}
@media (max-width: 767px) {
  .cid-uBbSte20Eg {
    padding-top: 50px;
    padding-bottom: 40px;
  }
  .cid-uBbSte20Eg .title {
    text-align: left;
  }
  .cid-uBbSte20Eg .dragArea {
    padding-left: 0rem;
  }
  .cid-uBbSte20Eg .mbr-section-title {
    text-align: left;
  }
}
@media (min-width: 767px) {
  .cid-uBbSte20Eg {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .cid-uBbSte20Eg .container-fluid {
    padding: 0 1.8rem;
  }
}
@media (min-width: 992px) {
  .cid-uBbSte20Eg .dragArea {
    padding-left: 2rem;
  }
}
.cid-uBbSte20Eg .mbr-section-title span {
  display: inline-block;
}
.cid-uBbSte20Eg .mbr-text {
  margin-top: 0.5rem;
}
.cid-uBbSte20Eg .svg1 {
  position: absolute;
  padding: 2px;
}
.cid-uBbSte20Eg .svg1 rect {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}
.cid-uBbSte20Eg .mbr-section-btn {
  margin-left: 5px;
}
.cid-uBbSte20Eg iframe {
  border-radius: 30px;
}
.cid-uBbSte20Eg .mbr-section-title {
  color: #ca9216;
  text-align: center;
}
.cid-tSiw0LZRez {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSiw0LZRez .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tSiw0LZRez .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-tSiw0LZRez .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-tSiw0LZRez .btn-primary-outline:active {
  color: gray;
}
.cid-tSiw0LZRez .btn-primary-outline:hover {
  color: white;
}
.cid-tSiw0LZRez div {
  overflow: hidden;
}
.cid-tSiw0LZRez .btn-primary-outline.active {
  color: white;
}
.cid-tSiw0LZRez .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tSiw0LZRez .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tSiw0LZRez .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tSiw0LZRez .mbr-gallery-item {
  overflow: hidden;
}
.cid-tSiw0LZRez .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-tSiw0LZRez .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-tSiw0LZRez .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-tSiw0LZRez .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tSiw0LZRez .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tSiw0LZRez .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tSiw0LZRez .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tSiw0LZRez .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uBbUZw1MDN {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #020729;
  position: relative;
  overflow: hidden;
}
.cid-uBbUZw1MDN .container {
  max-width: 1400px;
}
.cid-uBbUZw1MDN .card-img2 span {
  padding-top: 6px;
}
.cid-uBbUZw1MDN .soc-item a {
  padding-top: 5px;
}
.cid-uBbUZw1MDN .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-uBbUZw1MDN .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uBbUZw1MDN .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uBbUZw1MDN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uBbUZw1MDN svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uBbUZw1MDN #e2_shape {
  fill: #ffffff !important;
}
.cid-uBbUZw1MDN .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ca9216;
}
.cid-uBbUZw1MDN .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uBbUZw1MDN .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uBbUZw1MDN .card-img {
  width: auto;
}
.cid-uBbUZw1MDN .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uBbUZw1MDN .soc-item span {
  font-size: 1.4rem;
}
.cid-uBbUZw1MDN .soc-item:hover span {
  color: #ff8a73 !important;
}
.cid-uBbUZw1MDN .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uBbUZw1MDN .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uBbUZw1MDN .media-wrap {
  margin-bottom: 1rem;
}
.cid-uBbUZw1MDN .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uBbUZw1MDN img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-uBbUZw1MDN .item {
    justify-content: center;
  }
  .cid-uBbUZw1MDN .quote::after {
    left: 60px;
  }
}
.cid-uBbUZw1MDN .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uBbUZw1MDN .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uBbUZw1MDN .text1 {
  color: #ffffff;
}
.cid-uBbUZw1MDN .item-title {
  color: #ca9216;
}
.cid-uBbUZw1MDN H5 {
  color: #fff4e8;
}
.cid-uBbUZw1MDN .theme {
  color: #ca9216;
}
.cid-uBbUZw1MDN .copyright > p {
  color: #ff3366;
}
.cid-uBbUZw1MDN .text2 {
  color: #ca9216;
}
