@import url(https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap);





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.25rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.06rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((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.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((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: #4284df !important;
}
.bg-success {
  background-color: #9473d2 !important;
}
.bg-info {
  background-color: #7237a2 !important;
}
.bg-warning {
  background-color: #f8f9c4 !important;
}
.bg-danger {
  background-color: #efefef !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #4284df !important;
  border-color: #4284df !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #4284df !important;
  border-color: #4284df !important;
}
.btn-primary:before {
  background-color: #1f5eb6 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1f5eb6 !important;
  border-color: #1f5eb6 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-secondary:before {
  background-color: #eb3934 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #eb3934 !important;
  border-color: #eb3934 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-info:before {
  background-color: #4a2469 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4a2469 !important;
  border-color: #4a2469 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-success:before {
  background-color: #693cbc !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #693cbc !important;
  border-color: #693cbc !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
  color: #aaac12 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #aaac12 !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-warning:before {
  background-color: #f0f27f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #aaac12 !important;
  background-color: #f0f27f !important;
  border-color: #f0f27f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-danger:before {
  background-color: #c9c9c9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-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,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-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,
.btn-primary-outline.active {
  background: none;
  border-color: #1b53a0;
  color: #1b53a0;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #4284df;
}
.btn-primary-outline:before {
  background-color: #4284df;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4284df !important;
  border-color: #4284df !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9221d;
  color: #e9221d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #f27d7a;
}
.btn-secondary-outline:before {
  background-color: #f27d7a;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #3c1d56;
  color: #3c1d56;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #7237a2;
}
.btn-info-outline:before {
  background-color: #7237a2;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #5e36a9;
  color: #5e36a9;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #9473d2;
}
.btn-success-outline:before {
  background-color: #9473d2;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #edf067;
  color: #edf067;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #aaac12;
  border-color: #f8f9c4;
}
.btn-warning-outline:before {
  background-color: #f8f9c4;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #bcbcbc;
  color: #bcbcbc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #707070;
  border-color: #efefef;
}
.btn-danger-outline:before {
  background-color: #efefef;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-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;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4284df;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #4284df !important;
}
.text-secondary {
  color: #f27d7a !important;
}
.text-success {
  color: #9473d2 !important;
}
.text-info {
  color: #7237a2 !important;
}
.text-warning {
  color: #f8f9c4 !important;
}
.text-danger {
  color: #efefef !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #1b53a0 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9221d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #5e36a9 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #3c1d56 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #edf067 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #bcbcbc !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: #7237a2;
}
.alert-warning {
  background-color: #f8f9c4;
}
.alert-danger {
  background-color: #efefef;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4284df;
  border-color: #4284df;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4284df;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f0f6fd;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b083d5;
}
.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: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #4284df;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #4284df;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #4284df;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.696rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4284df;
  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-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #4284df;
  border-bottom-color: #4284df;
}
.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: #4284df !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: #f27d7a !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='%234284df' %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-s8oWWgNo9E .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-s8oWWgNo9E .collapsed {
  flex-direction: row!important;
}
.cid-s8oWWgNo9E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s8oWWgNo9E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s8oWWgNo9E .navbar-buttons {
  flex-wrap: wrap;
}
.cid-s8oWWgNo9E .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all .3s;
  background: #f2f6ff;
}
.cid-s8oWWgNo9E .navbar.opened {
  transition: all .3s;
  background: #f2f6ff !important;
}
.cid-s8oWWgNo9E .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-s8oWWgNo9E .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-s8oWWgNo9E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s8oWWgNo9E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-s8oWWgNo9E .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s8oWWgNo9E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s8oWWgNo9E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s8oWWgNo9E .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-s8oWWgNo9E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s8oWWgNo9E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s8oWWgNo9E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s8oWWgNo9E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s8oWWgNo9E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s8oWWgNo9E .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s8oWWgNo9E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s8oWWgNo9E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s8oWWgNo9E .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-s8oWWgNo9E .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s8oWWgNo9E .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s8oWWgNo9E .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s8oWWgNo9E .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s8oWWgNo9E .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s8oWWgNo9E .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s8oWWgNo9E .navbar.navbar-short {
  background: #f2f6ff !important;
  min-height: 60px;
}
.cid-s8oWWgNo9E .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s8oWWgNo9E .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s8oWWgNo9E .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #f27d7a;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-s8oWWgNo9E .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-s8oWWgNo9E .nav-item:focus,
.cid-s8oWWgNo9E .nav-link:focus {
  outline: none;
}
.cid-s8oWWgNo9E .text-white:hover,
.cid-s8oWWgNo9E .text-white:active,
.cid-s8oWWgNo9E .text-white:focus {
  color: white!important;
}
.cid-s8oWWgNo9E .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-s8oWWgNo9E .dropdown-item:hover {
  color: black!important;
}
.cid-s8oWWgNo9E .dropdown-menu {
  background-color: white!important;
}
.cid-s8oWWgNo9E .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(247, 170, 168, 0.35);
  display: block;
}
.cid-s8oWWgNo9E .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #f27d7a;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-s8oWWgNo9E .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (max-width: 992px) {
  .cid-s8oWWgNo9E .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-s8oWWgNo9E .nav-item {
    position: relative;
  }
}
.cid-s8oWWgNo9E .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-s8oWWgNo9E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s8oWWgNo9E .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-s8oWWgNo9E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s8oWWgNo9E .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-s8oWWgNo9E .navbar-caption {
  font-weight: 600!important;
}
.cid-s8oWWgNo9E .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-s8oWWgNo9E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s8oWWgNo9E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s8oWWgNo9E .dropdown-item.active,
.cid-s8oWWgNo9E .dropdown-item:active {
  background-color: transparent;
}
.cid-s8oWWgNo9E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s8oWWgNo9E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s8oWWgNo9E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s8oWWgNo9E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f6ff;
}
.cid-s8oWWgNo9E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s8oWWgNo9E ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s8oWWgNo9E .navbar-buttons {
  text-align: center;
}
.cid-s8oWWgNo9E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s8oWWgNo9E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-s8oWWgNo9E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s8oWWgNo9E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s8oWWgNo9E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s8oWWgNo9E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s8oWWgNo9E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s8oWWgNo9E nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s8oWWgNo9E nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s8oWWgNo9E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s8oWWgNo9E .nav-link {
  font-weight: 600!important;
}
.cid-s8oWWgNo9E a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s8oWWgNo9E .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s8oWWgNo9E .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-s8oWWgNo9E .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s8oWWgNo9E .navbar {
    height: 77px;
  }
  .cid-s8oWWgNo9E .navbar.opened {
    height: auto;
  }
  .cid-s8oWWgNo9E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s8oMuFxZ3h {
  padding-top: 150px;
  background-image: url("../../../assets/images/2796389-2000x1333.jpeg");
}
.cid-s8oMuFxZ3h .text-content {
  padding-bottom: 60px;
}
.cid-s8oMuFxZ3h .content-container .btn-bgr {
  z-index: 0;
}
.cid-s8oMuFxZ3h .box-item-text {
  color: #767676;
}
.cid-s8oMuFxZ3h .box-item {
  padding: 2.5rem;
}
.cid-s8oMuFxZ3h .box-item:first-child {
  background-color: #ffffff;
}
.cid-s8oMuFxZ3h .box-item:nth-child(2) {
  background-color: #f5f5f5;
}
.cid-s8oMuFxZ3h .box-item:last-child {
  background-color: #ffffff;
}
.cid-s8oMuFxZ3h .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-s8oMuFxZ3h .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-s8oMuFxZ3h .box-list li:last-child {
  border-bottom: none;
}
.cid-s8oMuFxZ3h .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-s8oMuFxZ3h .mbr-iconfont {
  color: #4284df;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-s8oMuFxZ3h .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-s8oMuFxZ3h .mbr-section-subtitle,
  .cid-s8oMuFxZ3h .mbr-section-title,
  .cid-s8oMuFxZ3h .mbr-text,
  .cid-s8oMuFxZ3h .mbr-section-btn,
  .cid-s8oMuFxZ3h .icon-block-top,
  .cid-s8oMuFxZ3h .box-item-title,
  .cid-s8oMuFxZ3h .box-item-text {
    text-align: center !important;
  }
}
.cid-s8oMuFxZ3h .mbr-section-title {
  color: #232323;
}
.cid-s8oMuFxZ3h .mbr-text,
.cid-s8oMuFxZ3h .mbr-section-btn {
  color: #232323;
}
.cid-s8oMuFxZ3h .mbr-section-subtitle {
  color: #767676;
}
.cid-s8oMVJfVRg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s8oMVJfVRg .nav-tabs .nav-item.open .nav-link:focus,
.cid-s8oMVJfVRg .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-s8oMVJfVRg .nav-link.active {
  background: #1425cc;
}
.cid-s8oMVJfVRg .nav-link {
  background: white;
  transition: all 0.3s;
  padding: 1rem 3rem;
  border-radius: 0;
  text-align: center;
  margin: 0px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-s8oMVJfVRg .nav-link:hover {
  background: #1425cc;
}
.cid-s8oMVJfVRg .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
  padding-right: 2rem;
  justify-content: center;
}
.cid-s8oMVJfVRg .nav-tabs .nav-item {
  padding: .5rem;
  flex: 1 1 100%;
}
.cid-s8oMVJfVRg p {
  padding-left: 2rem;
  color: #767676;
}
.cid-s8oMVJfVRg .col-md-12 {
  flex-direction: row;
  display: flex;
}
.cid-s8oMVJfVRg .nav-tabs .nav-link {
  color: #767676;
  font-style: normal;
  font-weight: 500;
  transition: all .5s;
  border: none;
}
.cid-s8oMVJfVRg .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #ffffff;
}
.cid-s8oMVJfVRg .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
}
@media (max-width: 992px) {
  .cid-s8oMVJfVRg .nav-tabs {
    flex-direction: row;
    justify-content: center;
    border-right: 0px;
    padding-right: 0rem;
  }
  .cid-s8oMVJfVRg .col-md-12 {
    flex-direction: column;
    display: flex;
  }
  .cid-s8oMVJfVRg p {
    padding-left: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-s8oMVJfVRg .mbr-text,
  .cid-s8oMVJfVRg .nav-link {
    text-align: center;
  }
  .cid-s8oMVJfVRg .col-md-12 {
    flex-direction: column;
    display: flex;
  }
  .cid-s8oMVJfVRg .nav-tabs {
    border-right: 0px;
    padding-right: 0rem;
    flex-direction: column;
  }
  .cid-s8oMVJfVRg p {
    padding-left: 0rem;
  }
}
.cid-s8oSqO5rpA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-s8oSqO5rpA .mbr-overlay {
  background: linear-gradient(90deg, #4284df, #6441a5);
}
.cid-s8oSqO5rpA h2,
.cid-s8oSqO5rpA h3,
.cid-s8oSqO5rpA h4,
.cid-s8oSqO5rpA p {
  color: #ffffff;
}
.cid-s8oSqO5rpA .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-s8oSqO5rpA .text-block {
  border-bottom: 1px solid #767676;
}
.cid-s8oSqO5rpA .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-s8oSqO5rpA .mbr-text {
  color: #767676;
}
.cid-s8oSqO5rpA a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-s8oSqO5rpA .multi-horizontal {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s8oSqO5rpA .input-group-btn {
  display: block;
  text-align: center;
}
.cid-s8oSqO5rpA textarea.form-control {
  resize: none;
}
@media (max-width: 767px) {
  .cid-s8oSqO5rpA h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-s8oSqO5rpA .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-s8oSqO5rpA .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-s8oSqO5rpA .google-map {
    padding-bottom: 2rem;
  }
}
.cid-s8p8Jkbhz1 {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #343351;
  position: relative;
  overflow: hidden;
}
.cid-s8p8Jkbhz1 .container {
  max-width: 1400px;
}
.cid-s8p8Jkbhz1 .card-img2 span {
  padding-top: 6px;
}
.cid-s8p8Jkbhz1 .soc-item a {
  padding-top: 5px;
}
.cid-s8p8Jkbhz1 .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-s8p8Jkbhz1 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-s8p8Jkbhz1 .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-s8p8Jkbhz1 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-s8p8Jkbhz1 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-s8p8Jkbhz1 #e2_shape {
  fill: #ffffff !important;
}
.cid-s8p8Jkbhz1 .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-s8p8Jkbhz1 .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-s8p8Jkbhz1 .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s8p8Jkbhz1 .card-img {
  width: auto;
}
.cid-s8p8Jkbhz1 .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-s8p8Jkbhz1 .soc-item span {
  font-size: 1.4rem;
}
.cid-s8p8Jkbhz1 .soc-item:hover span {
  color: #4284df !important;
}
.cid-s8p8Jkbhz1 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-s8p8Jkbhz1 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-s8p8Jkbhz1 .media-wrap {
  margin-bottom: 1rem;
}
.cid-s8p8Jkbhz1 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s8p8Jkbhz1 img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-s8p8Jkbhz1 .item {
    justify-content: center;
  }
  .cid-s8p8Jkbhz1 .quote::after {
    left: 60px;
  }
}
.cid-s8p8Jkbhz1 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-s8p8Jkbhz1 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s8p8Jkbhz1 .text1 {
  color: #ffffff;
}
.cid-s8p8Jkbhz1 .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-s8p8Jkbhz1 H5 {
  color: #ffffff;
}
.cid-s8p8Jkbhz1 .theme {
  color: #ffffff;
}
.cid-s8p8Jkbhz1 .copyright > p {
  color: #ff3366;
}
.cid-s8p8Jkbhz1 .text2 {
  color: #ffffff;
}
.cid-s8ptaxAoJN .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-s8ptaxAoJN .collapsed {
  flex-direction: row!important;
}
.cid-s8ptaxAoJN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s8ptaxAoJN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s8ptaxAoJN .navbar-buttons {
  flex-wrap: wrap;
}
.cid-s8ptaxAoJN .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all .3s;
  background: #f2f6ff;
}
.cid-s8ptaxAoJN .navbar.opened {
  transition: all .3s;
  background: #f2f6ff !important;
}
.cid-s8ptaxAoJN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-s8ptaxAoJN .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-s8ptaxAoJN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s8ptaxAoJN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-s8ptaxAoJN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s8ptaxAoJN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s8ptaxAoJN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s8ptaxAoJN .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-s8ptaxAoJN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s8ptaxAoJN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s8ptaxAoJN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s8ptaxAoJN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s8ptaxAoJN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s8ptaxAoJN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s8ptaxAoJN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s8ptaxAoJN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s8ptaxAoJN .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-s8ptaxAoJN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s8ptaxAoJN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s8ptaxAoJN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s8ptaxAoJN .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s8ptaxAoJN .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s8ptaxAoJN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s8ptaxAoJN .navbar.navbar-short {
  background: #f2f6ff !important;
  min-height: 60px;
}
.cid-s8ptaxAoJN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s8ptaxAoJN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s8ptaxAoJN .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #f27d7a;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-s8ptaxAoJN .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-s8ptaxAoJN .nav-item:focus,
.cid-s8ptaxAoJN .nav-link:focus {
  outline: none;
}
.cid-s8ptaxAoJN .text-white:hover,
.cid-s8ptaxAoJN .text-white:active,
.cid-s8ptaxAoJN .text-white:focus {
  color: white!important;
}
.cid-s8ptaxAoJN .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-s8ptaxAoJN .dropdown-item:hover {
  color: black!important;
}
.cid-s8ptaxAoJN .dropdown-menu {
  background-color: white!important;
}
.cid-s8ptaxAoJN .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(247, 170, 168, 0.35);
  display: block;
}
.cid-s8ptaxAoJN .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #f27d7a;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-s8ptaxAoJN .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (max-width: 992px) {
  .cid-s8ptaxAoJN .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-s8ptaxAoJN .nav-item {
    position: relative;
  }
}
.cid-s8ptaxAoJN .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-s8ptaxAoJN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s8ptaxAoJN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-s8ptaxAoJN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s8ptaxAoJN .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-s8ptaxAoJN .navbar-caption {
  font-weight: 600!important;
}
.cid-s8ptaxAoJN .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-s8ptaxAoJN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s8ptaxAoJN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s8ptaxAoJN .dropdown-item.active,
.cid-s8ptaxAoJN .dropdown-item:active {
  background-color: transparent;
}
.cid-s8ptaxAoJN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s8ptaxAoJN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s8ptaxAoJN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s8ptaxAoJN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f6ff;
}
.cid-s8ptaxAoJN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s8ptaxAoJN ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s8ptaxAoJN .navbar-buttons {
  text-align: center;
}
.cid-s8ptaxAoJN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s8ptaxAoJN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-s8ptaxAoJN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s8ptaxAoJN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s8ptaxAoJN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s8ptaxAoJN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s8ptaxAoJN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s8ptaxAoJN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s8ptaxAoJN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s8ptaxAoJN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s8ptaxAoJN .nav-link {
  font-weight: 600!important;
}
.cid-s8ptaxAoJN a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s8ptaxAoJN .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s8ptaxAoJN .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-s8ptaxAoJN .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s8ptaxAoJN .navbar {
    height: 77px;
  }
  .cid-s8ptaxAoJN .navbar.opened {
    height: auto;
  }
  .cid-s8ptaxAoJN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s8ptaymVEu {
  padding-top: 150px;
  background-image: url("../../../assets/images/2796389-2000x1333.jpeg");
}
.cid-s8ptaymVEu .text-content {
  padding-bottom: 45px;
}
.cid-s8ptaymVEu .content-container .btn-bgr {
  z-index: 0;
}
.cid-s8ptaymVEu .box-item-text {
  color: #767676;
}
.cid-s8ptaymVEu .box-item {
  padding: 2.5rem;
}
.cid-s8ptaymVEu .box-item:first-child {
  background-color: #ffffff;
}
.cid-s8ptaymVEu .box-item:nth-child(2) {
  background-color: #f5f5f5;
}
.cid-s8ptaymVEu .box-item:last-child {
  background-color: #ffffff;
}
.cid-s8ptaymVEu .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-s8ptaymVEu .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-s8ptaymVEu .box-list li:last-child {
  border-bottom: none;
}
.cid-s8ptaymVEu .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-s8ptaymVEu .mbr-iconfont {
  color: #4284df;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-s8ptaymVEu .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-s8ptaymVEu .mbr-section-subtitle,
  .cid-s8ptaymVEu .mbr-section-title,
  .cid-s8ptaymVEu .mbr-text,
  .cid-s8ptaymVEu .mbr-section-btn,
  .cid-s8ptaymVEu .icon-block-top,
  .cid-s8ptaymVEu .box-item-title,
  .cid-s8ptaymVEu .box-item-text {
    text-align: center !important;
  }
}
.cid-s8ptaymVEu .mbr-section-title {
  color: #232323;
}
.cid-s8ptaymVEu .mbr-text,
.cid-s8ptaymVEu .mbr-section-btn {
  color: #232323;
}
.cid-s8ptaymVEu .mbr-section-subtitle {
  color: #767676;
}
.cid-s8ptsS9pwP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s8ptsS9pwP h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-s8ptsS9pwP p {
  color: #767676;
  text-align: left;
}
.cid-s8ptsS9pwP .card-wrapper {
  height: 100%;
}
.cid-s8ptsS9pwP .container-fluid {
  max-width: 1600px;
}
.cid-s8ptsS9pwP .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-s8ptsS9pwP img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-s8ptsS9pwP .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-s8ptsS9pwP .card:hover img {
  filter: blur(3px);
}
.cid-s8ptsS9pwP .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-s8ptsS9pwP .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-s8ptsS9pwP .mbr-iconfont {
    opacity: 1;
  }
  .cid-s8ptsS9pwP img {
    filter: blur(3px);
  }
}
.cid-s8ptazFVjx {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-s8ptazFVjx .mbr-overlay {
  background: linear-gradient(90deg, #4284df, #6441a5);
}
.cid-s8ptazFVjx h2,
.cid-s8ptazFVjx h3,
.cid-s8ptazFVjx h4,
.cid-s8ptazFVjx p {
  color: #ffffff;
}
.cid-s8ptazFVjx .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-s8ptazFVjx .text-block {
  border-bottom: 1px solid #767676;
}
.cid-s8ptazFVjx .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-s8ptazFVjx .mbr-text {
  color: #767676;
}
.cid-s8ptazFVjx a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-s8ptazFVjx .multi-horizontal {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s8ptazFVjx .input-group-btn {
  display: block;
  text-align: center;
}
.cid-s8ptazFVjx textarea.form-control {
  resize: none;
}
@media (max-width: 767px) {
  .cid-s8ptazFVjx h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-s8ptazFVjx .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-s8ptazFVjx .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-s8ptazFVjx .google-map {
    padding-bottom: 2rem;
  }
}
.cid-s8ptaAa6G8 {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #343351;
  position: relative;
  overflow: hidden;
}
.cid-s8ptaAa6G8 .container {
  max-width: 1400px;
}
.cid-s8ptaAa6G8 .card-img2 span {
  padding-top: 6px;
}
.cid-s8ptaAa6G8 .soc-item a {
  padding-top: 5px;
}
.cid-s8ptaAa6G8 .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-s8ptaAa6G8 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-s8ptaAa6G8 .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-s8ptaAa6G8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-s8ptaAa6G8 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-s8ptaAa6G8 #e2_shape {
  fill: #ffffff !important;
}
.cid-s8ptaAa6G8 .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-s8ptaAa6G8 .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-s8ptaAa6G8 .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s8ptaAa6G8 .card-img {
  width: auto;
}
.cid-s8ptaAa6G8 .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-s8ptaAa6G8 .soc-item span {
  font-size: 1.4rem;
}
.cid-s8ptaAa6G8 .soc-item:hover span {
  color: #4284df !important;
}
.cid-s8ptaAa6G8 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-s8ptaAa6G8 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-s8ptaAa6G8 .media-wrap {
  margin-bottom: 1rem;
}
.cid-s8ptaAa6G8 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s8ptaAa6G8 img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-s8ptaAa6G8 .item {
    justify-content: center;
  }
  .cid-s8ptaAa6G8 .quote::after {
    left: 60px;
  }
}
.cid-s8ptaAa6G8 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-s8ptaAa6G8 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s8ptaAa6G8 .text1 {
  color: #ffffff;
}
.cid-s8ptaAa6G8 .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-s8ptaAa6G8 H5 {
  color: #ffffff;
}
.cid-s8ptaAa6G8 .theme {
  color: #ffffff;
}
.cid-s8ptaAa6G8 .copyright > p {
  color: #ff3366;
}
.cid-s8ptaAa6G8 .text2 {
  color: #ffffff;
}
.cid-s8ptcdgyM5 .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-s8ptcdgyM5 .collapsed {
  flex-direction: row!important;
}
.cid-s8ptcdgyM5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s8ptcdgyM5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s8ptcdgyM5 .navbar-buttons {
  flex-wrap: wrap;
}
.cid-s8ptcdgyM5 .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all .3s;
  background: #f2f6ff;
}
.cid-s8ptcdgyM5 .navbar.opened {
  transition: all .3s;
  background: #f2f6ff !important;
}
.cid-s8ptcdgyM5 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-s8ptcdgyM5 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-s8ptcdgyM5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s8ptcdgyM5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-s8ptcdgyM5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s8ptcdgyM5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s8ptcdgyM5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s8ptcdgyM5 .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-s8ptcdgyM5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s8ptcdgyM5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s8ptcdgyM5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s8ptcdgyM5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s8ptcdgyM5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s8ptcdgyM5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s8ptcdgyM5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s8ptcdgyM5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s8ptcdgyM5 .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-s8ptcdgyM5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s8ptcdgyM5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s8ptcdgyM5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s8ptcdgyM5 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s8ptcdgyM5 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s8ptcdgyM5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s8ptcdgyM5 .navbar.navbar-short {
  background: #f2f6ff !important;
  min-height: 60px;
}
.cid-s8ptcdgyM5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s8ptcdgyM5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s8ptcdgyM5 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #f27d7a;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-s8ptcdgyM5 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-s8ptcdgyM5 .nav-item:focus,
.cid-s8ptcdgyM5 .nav-link:focus {
  outline: none;
}
.cid-s8ptcdgyM5 .text-white:hover,
.cid-s8ptcdgyM5 .text-white:active,
.cid-s8ptcdgyM5 .text-white:focus {
  color: white!important;
}
.cid-s8ptcdgyM5 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-s8ptcdgyM5 .dropdown-item:hover {
  color: black!important;
}
.cid-s8ptcdgyM5 .dropdown-menu {
  background-color: white!important;
}
.cid-s8ptcdgyM5 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(247, 170, 168, 0.35);
  display: block;
}
.cid-s8ptcdgyM5 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #f27d7a;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-s8ptcdgyM5 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (max-width: 992px) {
  .cid-s8ptcdgyM5 .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-s8ptcdgyM5 .nav-item {
    position: relative;
  }
}
.cid-s8ptcdgyM5 .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-s8ptcdgyM5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s8ptcdgyM5 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-s8ptcdgyM5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s8ptcdgyM5 .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-s8ptcdgyM5 .navbar-caption {
  font-weight: 600!important;
}
.cid-s8ptcdgyM5 .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-s8ptcdgyM5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s8ptcdgyM5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s8ptcdgyM5 .dropdown-item.active,
.cid-s8ptcdgyM5 .dropdown-item:active {
  background-color: transparent;
}
.cid-s8ptcdgyM5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s8ptcdgyM5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s8ptcdgyM5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s8ptcdgyM5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f6ff;
}
.cid-s8ptcdgyM5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s8ptcdgyM5 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s8ptcdgyM5 .navbar-buttons {
  text-align: center;
}
.cid-s8ptcdgyM5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s8ptcdgyM5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-s8ptcdgyM5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s8ptcdgyM5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s8ptcdgyM5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s8ptcdgyM5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s8ptcdgyM5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s8ptcdgyM5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s8ptcdgyM5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s8ptcdgyM5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s8ptcdgyM5 .nav-link {
  font-weight: 600!important;
}
.cid-s8ptcdgyM5 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s8ptcdgyM5 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s8ptcdgyM5 .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-s8ptcdgyM5 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s8ptcdgyM5 .navbar {
    height: 77px;
  }
  .cid-s8ptcdgyM5 .navbar.opened {
    height: auto;
  }
  .cid-s8ptcdgyM5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s8ptcdTIEG {
  padding-top: 150px;
  background-image: url("../../../assets/images/2796389-2000x1333.jpeg");
}
.cid-s8ptcdTIEG .text-content {
  padding-bottom: 60px;
}
.cid-s8ptcdTIEG .content-container .btn-bgr {
  z-index: 0;
}
.cid-s8ptcdTIEG .box-item-text {
  color: #767676;
}
.cid-s8ptcdTIEG .box-item {
  padding: 2.5rem;
}
.cid-s8ptcdTIEG .box-item:first-child {
  background-color: #ffffff;
}
.cid-s8ptcdTIEG .box-item:nth-child(2) {
  background-color: #f5f5f5;
}
.cid-s8ptcdTIEG .box-item:last-child {
  background-color: #ffffff;
}
.cid-s8ptcdTIEG .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-s8ptcdTIEG .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-s8ptcdTIEG .box-list li:last-child {
  border-bottom: none;
}
.cid-s8ptcdTIEG .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-s8ptcdTIEG .mbr-iconfont {
  color: #4284df;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-s8ptcdTIEG .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-s8ptcdTIEG .mbr-section-subtitle,
  .cid-s8ptcdTIEG .mbr-section-title,
  .cid-s8ptcdTIEG .mbr-text,
  .cid-s8ptcdTIEG .mbr-section-btn,
  .cid-s8ptcdTIEG .icon-block-top,
  .cid-s8ptcdTIEG .box-item-title,
  .cid-s8ptcdTIEG .box-item-text {
    text-align: center !important;
  }
}
.cid-s8ptcdTIEG .mbr-section-title {
  color: #232323;
}
.cid-s8ptcdTIEG .mbr-text,
.cid-s8ptcdTIEG .mbr-section-btn {
  color: #232323;
}
.cid-s8ptcdTIEG .mbr-section-subtitle {
  color: #767676;
}
.cid-s8ptceZAHI {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-s8ptceZAHI .mbr-overlay {
  background: linear-gradient(90deg, #4284df, #6441a5);
}
.cid-s8ptceZAHI h2,
.cid-s8ptceZAHI h3,
.cid-s8ptceZAHI h4,
.cid-s8ptceZAHI p {
  color: #ffffff;
}
.cid-s8ptceZAHI .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-s8ptceZAHI .text-block {
  border-bottom: 1px solid #767676;
}
.cid-s8ptceZAHI .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-s8ptceZAHI .mbr-text {
  color: #767676;
}
.cid-s8ptceZAHI a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-s8ptceZAHI .multi-horizontal {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s8ptceZAHI .input-group-btn {
  display: block;
  text-align: center;
}
.cid-s8ptceZAHI textarea.form-control {
  resize: none;
}
@media (max-width: 767px) {
  .cid-s8ptceZAHI h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-s8ptceZAHI .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-s8ptceZAHI .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-s8ptceZAHI .google-map {
    padding-bottom: 2rem;
  }
}
.cid-s8ptcftQ0Z {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #343351;
  position: relative;
  overflow: hidden;
}
.cid-s8ptcftQ0Z .container {
  max-width: 1400px;
}
.cid-s8ptcftQ0Z .card-img2 span {
  padding-top: 6px;
}
.cid-s8ptcftQ0Z .soc-item a {
  padding-top: 5px;
}
.cid-s8ptcftQ0Z .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-s8ptcftQ0Z .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-s8ptcftQ0Z .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-s8ptcftQ0Z .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-s8ptcftQ0Z svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-s8ptcftQ0Z #e2_shape {
  fill: #ffffff !important;
}
.cid-s8ptcftQ0Z .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-s8ptcftQ0Z .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-s8ptcftQ0Z .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s8ptcftQ0Z .card-img {
  width: auto;
}
.cid-s8ptcftQ0Z .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-s8ptcftQ0Z .soc-item span {
  font-size: 1.4rem;
}
.cid-s8ptcftQ0Z .soc-item:hover span {
  color: #4284df !important;
}
.cid-s8ptcftQ0Z .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-s8ptcftQ0Z .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-s8ptcftQ0Z .media-wrap {
  margin-bottom: 1rem;
}
.cid-s8ptcftQ0Z .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s8ptcftQ0Z img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-s8ptcftQ0Z .item {
    justify-content: center;
  }
  .cid-s8ptcftQ0Z .quote::after {
    left: 60px;
  }
}
.cid-s8ptcftQ0Z .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-s8ptcftQ0Z .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s8ptcftQ0Z .text1 {
  color: #ffffff;
}
.cid-s8ptcftQ0Z .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-s8ptcftQ0Z H5 {
  color: #ffffff;
}
.cid-s8ptcftQ0Z .theme {
  color: #ffffff;
}
.cid-s8ptcftQ0Z .copyright > p {
  color: #ff3366;
}
.cid-s8ptcftQ0Z .text2 {
  color: #ffffff;
}
