body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 4.4rem;
}
.display-1 > .ino-iconfont {
  font-size: 7.04rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.8rem;
  line-height: 1.3;
}
.display-2 > .ino-iconfont {
  font-size: 4.48rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}
.display-4 > .ino-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-5 > .ino-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}
.display-7 > .ino-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for inovle 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.52rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((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: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !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: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !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: #000000 !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !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: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.ino-section-btn a.btn:not(.btn-form):hover,
.ino-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.ino-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.ino-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.ino-plan-header.bg-primary .ino-plan-subtitle,
.ino-plan-header.bg-primary .ino-plan-price-desc {
  color: #b3b3b3;
}
.ino-plan-header.bg-success .ino-plan-subtitle,
.ino-plan-header.bg-success .ino-plan-price-desc {
  color: #ffffff;
}
.ino-plan-header.bg-info .ino-plan-subtitle,
.ino-plan-header.bg-info .ino-plan-price-desc {
  color: #beb8b2;
}
.ino-plan-header.bg-warning .ino-plan-subtitle,
.ino-plan-header.bg-warning .ino-plan-price-desc {
  color: #ced6d8;
}
.ino-plan-header.bg-danger .ino-plan-subtitle,
.ino-plan-header.bg-danger .ino-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}
.form-control > .ino-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.ino-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !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: #ff3366 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23000000' %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-rym5webdvf .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-rym5webdvf .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rym5webdvf a {
  font-style: normal;
}
.cid-rym5webdvf .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-rym5webdvf .top-icon {
  font-size: 1rem;
  color: #000000;
  padding: 0.4rem;
}
.cid-rym5webdvf .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-rym5webdvf .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rym5webdvf .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rym5webdvf .nav-item:focus,
.cid-rym5webdvf .nav-link:focus {
  outline: none;
}
.cid-rym5webdvf .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rym5webdvf .btn .ino-iconfont {
  font-size: 1.6rem;
}
.cid-rym5webdvf .menu-logo {
  margin-right: auto;
}
.cid-rym5webdvf .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo .ino-iconfont {
  transition: font-size 0.25s;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rym5webdvf .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rym5webdvf .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rym5webdvf .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rym5webdvf .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a .ino-iconfont {
  font-size: 2.5rem !important;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rym5webdvf button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rym5webdvf button.navbar-toggler:focus {
  outline: none;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rym5webdvf .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rym5webdvf .collapsed .btn {
  display: -webkit-flex;
}
.cid-rym5webdvf .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing,
.cid-rym5webdvf .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rym5webdvf .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rym5webdvf .collapsed button.navbar-toggler {
  display: block;
}
.cid-rym5webdvf .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rym5webdvf .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rym5webdvf .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rym5webdvf.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rym5webdvf img {
    height: 3.8rem !important;
  }
  .cid-rym5webdvf .icon-wrap {
    margin-top: 1rem;
  }
  .cid-rym5webdvf .menu-wrap {
    flex-direction: column;
  }
  .cid-rym5webdvf .btn {
    display: -webkit-flex;
  }
  .cid-rym5webdvf button.navbar-toggler {
    display: block;
  }
  .cid-rym5webdvf .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-rym5webdvf .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rym5webdvf .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing,
  .cid-rym5webdvf .navbar-collapse.show {
    display: block !important;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-nav,
  .cid-rym5webdvf .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rym5webdvf .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-buttons,
  .cid-rym5webdvf .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rym5webdvf .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rym5webdvf .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rym5webdvf .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rym5webdvf .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rym5webdvf .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rym5webdvf .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-rym5webdvf .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-rym5webdvf .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-rym5webdvf .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rym5webdvf .nav-link:hover,
.cid-rym5webdvf .dropdown-item:hover {
  color: #cccccc !important;
}
.cid-t8sqEvoSd3 {
  background-image: url("../../../assets/images/gord-wildlifewhaletail-1080x642.jpg");
}
.cid-t8sqEvoSd3 h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-t8sqEvoSd3 h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-t8sqEvoSd3 h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
@media (max-width: 768px) {
  .cid-t8sqEvoSd3 h3::before,
  .cid-t8sqEvoSd3 h3::after {
    display: none;
  }
}
.cid-t8srtfOgqb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eeeeee;
}
.cid-t8srtfOgqb .carousel {
  height: 800px;
}
.cid-t8srtfOgqb .carousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-t8srtfOgqb .carousel-item,
.cid-t8srtfOgqb .carousel-inner {
  height: 100%;
}
.cid-t8srtfOgqb .ino-overlay {
  z-index: 1;
}
.cid-t8srtfOgqb .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  transform: translateY(-50%);
  -webkit-align-items: center;
  padding-left: 120px;
  padding-right: 120px;
  justify-content: center;
}
.cid-t8srtfOgqb .inov-inoi-arrow-next {
  margin-left: 5px;
}
.cid-t8srtfOgqb .inov-inoi-arrow-prev {
  margin-right: 5px;
}
.cid-t8srtfOgqb .carousel-control:hover {
  color: #fff;
  opacity: 1;
}
.cid-t8srtfOgqb .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t8srtfOgqb .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t8srtfOgqb .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t8srtfOgqb .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t8srtfOgqb .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .8;
}
.cid-t8srtfOgqb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8srtfOgqb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8srtfOgqb .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8srtfOgqb .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t8srtfOgqb .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #e5e5e5;
  border: 0px solid transparent;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-t8srtfOgqb .carousel-indicators li.active {
  background-color: #5aac98;
}
.cid-t8srtfOgqb .carousel-indicators li.active,
.cid-t8srtfOgqb .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8srtfOgqb .carousel-indicators li::after,
.cid-t8srtfOgqb .carousel-indicators li::before {
  content: none;
}
.cid-t8srtfOgqb .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8srtfOgqb .carousel-indicators {
    display: none !important;
  }
}
.cid-t8srtfOgqb .btn.btn-primary-outline {
  border: 1px solid #000000;
}
.cid-t8srtfOgqb .btn.btn-primary-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-t8srtfOgqb .btn.btn-secondary-outline {
  border: 1px solid #ff3366;
}
.cid-t8srtfOgqb .btn.btn-secondary-outline:hover {
  background-color: #ff3366 !important;
  color: #ffffff !important;
}
.cid-t8srtfOgqb .btn.btn-success-outline {
  border: 1px solid #f7ed4a;
}
.cid-t8srtfOgqb .btn.btn-success-outline:hover {
  background-color: #f7ed4a !important;
  color: #ffffff !important;
}
.cid-t8srtfOgqb .btn.btn-info-outline {
  border: 1px solid #82786e;
}
.cid-t8srtfOgqb .btn.btn-info-outline:hover {
  background-color: #82786e !important;
  color: #ffffff !important;
}
.cid-t8srtfOgqb .btn.btn-warning-outline {
  border: 1px solid #879a9f;
}
.cid-t8srtfOgqb .btn.btn-warning-outline:hover {
  background-color: #879a9f !important;
  color: #ffffff !important;
}
.cid-t8srtfOgqb .btn.btn-danger-outline {
  border: 1px solid #b1a374;
}
.cid-t8srtfOgqb .btn.btn-danger-outline:hover {
  background-color: #b1a374 !important;
  color: #ffffff !important;
}
.cid-t8srtfOgqb .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-t8srtfOgqb .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-t8srtfOgqb .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-t8srtfOgqb .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-t8srtfOgqb .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .cid-t8srtfOgqb .carousel-caption {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cid-t8srtfOgqb .carousel-control {
    display: none;
  }
  .cid-t8srtfOgqb .buttons-wrap {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
  .cid-t8srtfOgqb .buttons-wrap .ino-section-btn {
    text-align: center;
    margin-bottom: 10px;
  }
}
.cid-t8tUibyLmC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-t8tUibyLmC .content-block {
  max-width: 350px;
  padding: 4rem 3rem;
  z-index: 5;
  position: relative;
}
.cid-t8tUibyLmC .img-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/gord-cityangkorwat-1080x654.jpg");
  background-position: center;
  background-size: cover;
  z-index: 3;
}
.cid-t8tUibyLmC .block2 {
  background-image: url("../../../assets/images/gord-perspectiveinvertedmallards-1080x416.jpeg");
}
.cid-t8tUibyLmC .block2:hover .block2-over {
  opacity: 0;
}
.cid-t8tUibyLmC .block1 {
  background-image: url("../../../assets/images/gord-landscapehudsonmtnkatlynglacier-1080x608.jpg");
}
.cid-t8tUibyLmC .block1:hover .block1-over {
  opacity: 0;
}
.cid-t8tUibyLmC .block1-over {
  position: absolute;
  transition: all 0.6s;
  width: 100%;
  background-color: #cc2952;
  opactiy: 1;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-t8tUibyLmC .block2-over {
  position: absolute;
  transition: all 0.6s;
  width: 100%;
  background-color: #ed6031;
  opactiy: 1;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-t8tUibyLmC .overlay {
  position: absolute;
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0%;
  background: #29a7c6;
  z-index: 2;
  opacity: 1;
}
.cid-t8tUibyLmC .overlay-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 50%;
  transition-delay: 0.3s;
  top: 0;
  z-index: 4;
}
.cid-t8tUibyLmC .col {
  padding: 0;
  display: flex;
  position: relative;
  min-height: 400px;
  justify-content: flex-end;
}
.cid-t8tUibyLmC .col:hover .overlay-wrapper {
  width: 100%;
  right: 0;
  transition-delay: 0s;
}
.cid-t8tUibyLmC .col:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-t8tUibyLmC .col:hover .img-content {
  opacity: 1;
  width: 100%;
  transition-delay: 0.3s;
}
.cid-t8tUibyLmC .col:hover .box-title2,
.cid-t8tUibyLmC .col:hover .box-text2 {
  color: #efefef;
  transition-delay: 0.3s;
}
.cid-t8tUibyLmC .box-title2,
.cid-t8tUibyLmC .box-text2 {
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-t8tUibyLmC .box-content {
  width: 50%;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: #29a7c6;
}
.cid-t8tUibyLmC .content1 {
  z-index: 5;
  max-width: 450px;
  position: relative;
  transition: all 0.3s;
  transition-delay: 0.3s;

  min-width:300px;
  margin-top:20px;
  padding: 4rem 3rem;
}
.cid-t8tUibyLmC .content2 {
  z-index: 2;
  max-width: 450px;
  margin-bottom: -1rem;
  position: relative;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0s;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-t8tUibyLmC .img-content {
    opacity: 1;
  }
  .cid-t8tUibyLmC .overlay-wrapper {
    width: 100%;
    right: 0;
  }
  .cid-t8tUibyLmC .box-content {
    width: 100%;
  }
  .cid-t8tUibyLmC .box-title2,
  .cid-t8tUibyLmC .box-text2 {
    color: #efefef !important;
  }
  .cid-t8tUibyLmC .content-block,
  .cid-t8tUibyLmC .content1 {
    padding: 3rem 1rem;
  }
}
.cid-t8tUibyLmC .box-text1 {
  color: #333333;
}
.cid-t8tUibyLmC .box-title2 {
  color: #ffffff;
}
.cid-t8tUibyLmC .block1-text,
.cid-t8tUibyLmC .ino-section-btn {
  color: #ffffff;
}
.cid-t8tUibyLmC .block2-text,
.cid-t8tUibyLmC .ino-section-btn {
  color: #ffffff;
}
.cid-t8tUibyLmC .block2-title {
  color: #333333;
}
.cid-t8tUibyLmC .block1-subtitle {
  color: #ffffff;
}
.cid-t8tUibyLmC .block2-subtitle {
  color: #ffffff;
}
.cid-t8t7Br2mDn {
  background-image: url("../../../assets/images/gord-stewart-1600x1067.jpg");
  
}
.cid-t8t7Br2mDn .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t8t7Br2mDn .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t8t7Br2mDn .col-text {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .cid-t8t7Br2mDn .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t8t7Br2mDn .col-form {
    padding: 30px;
  }
}
.cid-t8t7Br2mDn .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-t8t7Br2mDn .text-wrapper {
    text-align: center !important;
  }
}
.cid-t8t7Br2mDn .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-t8t7Br2mDn .label-text {
    text-align: center !important;
    margin-top:600px;
    background-position: center center;

  }
}
.cid-t8t7Br2mDn .ino-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-t8t7Br2mDn {
    background-position: -550px -50px;
    background-color:#5F5249;
    
  }
}
@media (max-width: 767px) {
  .cid-t8t7Br2mDn .ino-section-title {
    text-align: center !important;
    
    
  }
}
.cid-t8t7Br2mDn .ino-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-t8t7Br2mDn .ino-text {
    text-align: center !important;
  }
}
.cid-t8t7Br2mDn .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-t8t7Br2mDn .btn-container {
  width: 100%;
  margin-top: 22px;
}
@media (max-width: 767px) {
  .cid-t8t7Br2mDn .ino-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-t8t7Br2mDn .ino-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t8t7Br2mDn .ino-section-btn .btn {
    width: 100%;
  }
}
.cid-t8t7Br2mDn .form-container {
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  .cid-t8t7Br2mDn .form-container {
    max-width: 22rem;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .cid-t8t7Br2mDn .form-container {
    text-align: center !important;
    margin-top:600px;
     background-color: rgba(0, 0, 0, 0.4);
  }
}
.cid-t8t7Br2mDn .form-title {
  color: #ffffff;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-t8t7Br2mDn .form-title {
    text-align: center !important;
  }
}
.cid-t8t7Br2mDn .form-control {
  font-size: 1rem;
}
.cid-rym5xrJx4C {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/gord-landscapetorresdelpaine-1080x717.jpg");
}
.cid-rym5xrJx4C h3 {
  text-align: center;
}
.cid-rym5xrJx4C .ino-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-rym5xrJx4C .ino-content-text {
  color: #000000;
}
.cid-rym5xrJx4C .card {
  word-wrap: break-word;
}
.cid-rym5xrJx4C .ino-iconfont {
  color: #dd8100 !important;
  font-size: 3.5rem!important;
}
.cid-rym5xVDGLY {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rym5xVDGLY h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-rym5xVDGLY h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rym5xVDGLY h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rym5xVDGLY .ino-text,
.cid-rym5xVDGLY .ino-section-btn {
  color: #767676;
}
.cid-rym5y8NvJ0 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-rym5y8NvJ0 .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
}
.cid-rym5y8NvJ0 .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-rym5y8NvJ0 .image-block:hover:before {
  opacity: 0.4;
}
.cid-rym5y8NvJ0 .image-block:hover .wrap {
  opacity: 1;
}
.cid-rym5y8NvJ0 .image-block:hover img {
  transform: scale(1.05);
}
.cid-rym5y8NvJ0 h4 {
  letter-spacing: 2px;
}
.cid-rym5y8NvJ0 figcaption {
  position: relative;
}
.cid-rym5y8NvJ0 figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-rym5y8NvJ0 img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-rym5y8NvJ0 .col-lg-4 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-rym5y8NvJ0 .image-block {
    height: 400px;
  }
}
.cid-rym5yD6HiJ {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-rym5yD6HiJ .image-block {
  margin: auto;
  height: 800px;
  overflow: hidden;
}
.cid-rym5yD6HiJ .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-rym5yD6HiJ .image-block:hover:before {
  opacity: 0.4;
}
.cid-rym5yD6HiJ .image-block:hover .wrap {
  opacity: 1;
}
.cid-rym5yD6HiJ .image-block:hover img {
  transform: scale(1.05);
}
.cid-rym5yD6HiJ h4 {
  letter-spacing: 2px;
}
.cid-rym5yD6HiJ figcaption {
  position: relative;
}
.cid-rym5yD6HiJ figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-rym5yD6HiJ img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-rym5yD6HiJ .col-lg-6 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-rym5yD6HiJ .image-block {
    height: 400px;
  }
}
.cid-t8tcUdPb44 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-t8tcUdPb44 .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 24rem;
}
@media (max-width: 991px) {
  .cid-t8tcUdPb44 .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t8tcUdPb44 .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-t8tcUdPb44 .ino-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-t8tcUdPb44 .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-t8tcUdPb44 .footer-top {
  border-bottom: 2px solid #f23801;
}
.cid-t8tcUdPb44 .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-t8tcUdPb44 .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-t8tcUdPb44 .footer-item-text {
  margin-bottom: 1.9375rem;
  color: #cccccc;
  text-align: left;
}
.cid-t8tcUdPb44 .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-t8tcUdPb44 .soc-item a {
  color: #fafafa;
}
.cid-t8tcUdPb44 .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fafafa;
  border: 1px solid #ffffff;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-t8tcUdPb44 .soc-item span:hover {
  border-color: #f23801;
  color: #f23801;
}
.cid-rym5webdvf .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-rym5webdvf .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rym5webdvf a {
  font-style: normal;
}
.cid-rym5webdvf .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-rym5webdvf .top-icon {
  font-size: 1rem;
  color: #000000;
  padding: 0.4rem;
}
.cid-rym5webdvf .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-rym5webdvf .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rym5webdvf .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rym5webdvf .nav-item:focus,
.cid-rym5webdvf .nav-link:focus {
  outline: none;
}
.cid-rym5webdvf .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rym5webdvf .btn .ino-iconfont {
  font-size: 1.6rem;
}
.cid-rym5webdvf .menu-logo {
  margin-right: auto;
}
.cid-rym5webdvf .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo .ino-iconfont {
  transition: font-size 0.25s;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rym5webdvf .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rym5webdvf .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rym5webdvf .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rym5webdvf .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a .ino-iconfont {
  font-size: 2.5rem !important;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rym5webdvf button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rym5webdvf button.navbar-toggler:focus {
  outline: none;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rym5webdvf .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rym5webdvf .collapsed .btn {
  display: -webkit-flex;
}
.cid-rym5webdvf .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing,
.cid-rym5webdvf .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rym5webdvf .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rym5webdvf .collapsed button.navbar-toggler {
  display: block;
}
.cid-rym5webdvf .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rym5webdvf .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rym5webdvf .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rym5webdvf.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rym5webdvf img {
    height: 3.8rem !important;
  }
  .cid-rym5webdvf .icon-wrap {
    margin-top: 1rem;
  }
  .cid-rym5webdvf .menu-wrap {
    flex-direction: column;
  }
  .cid-rym5webdvf .btn {
    display: -webkit-flex;
  }
  .cid-rym5webdvf button.navbar-toggler {
    display: block;
  }
  .cid-rym5webdvf .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-rym5webdvf .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rym5webdvf .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing,
  .cid-rym5webdvf .navbar-collapse.show {
    display: block !important;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-nav,
  .cid-rym5webdvf .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rym5webdvf .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-buttons,
  .cid-rym5webdvf .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rym5webdvf .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rym5webdvf .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rym5webdvf .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rym5webdvf .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rym5webdvf .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rym5webdvf .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-rym5webdvf .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-rym5webdvf .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-rym5webdvf .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rym5webdvf .nav-link:hover,
.cid-rym5webdvf .dropdown-item:hover {
  color: #cccccc !important;
}
.cid-t8ueC6mG4A {
  padding-top: 165px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/gord-landscapejohansenlakenorthernbc-1080x460.jpg");
}
.cid-t8ueC6mG4A h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-t8ueC6mG4A h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-t8ueC6mG4A h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
@media (max-width: 768px) {
  .cid-t8ueC6mG4A h3:before,
  .cid-t8ueC6mG4A h3:after {
    display: none;
  }
}
.cid-t8uenSHLrb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t8uenSHLrb .ino-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t8uenSHLrb .ino-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8uenSHLrb .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-t8uenSHLrb .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t8uenSHLrb .container-fluid {
    padding: 0 1.7rem;
  }
}
.cid-t8uenSHLrb .ino-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8uenSHLrb .ino-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-t8uenSHLrb .ino-gallery-item > div:hover .icon-focus {
  opacity: 0.8!important;
}
.cid-t8uenSHLrb .ino-gallery-item > div:hover .ino-gallery-title::before {
  background: transparent !important;
}
.cid-t8uenSHLrb .ino-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-t8uenSHLrb .ino-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-t8uenSHLrb .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-t8uenSHLrb .icon-focus:before {
  content: "\e970";
  font-size: 1.2rem;
  color: black;
}
.cid-t8uenSHLrb .ino-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t8uenSHLrb .ino-gallery-item > div {
  overflow: hidden;
}
.cid-t8uenSHLrb img {
  transition: all 2s!important;
}
.cid-t8uenSHLrb .ino-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t8uenSHLrb .ino-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-t8uenSHLrb .ino-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-t8tcUdPb44 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-t8tcUdPb44 .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 24rem;
}
@media (max-width: 991px) {
  .cid-t8tcUdPb44 .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t8tcUdPb44 .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-t8tcUdPb44 .ino-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-t8tcUdPb44 .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-t8tcUdPb44 .footer-top {
  border-bottom: 2px solid #f23801;
}
.cid-t8tcUdPb44 .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-t8tcUdPb44 .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-t8tcUdPb44 .footer-item-text {
  margin-bottom: 1.9375rem;
  color: #cccccc;
  text-align: left;
}
.cid-t8tcUdPb44 .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-t8tcUdPb44 .soc-item a {
  color: #fafafa;
}
.cid-t8tcUdPb44 .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fafafa;
  border: 1px solid #ffffff;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-t8tcUdPb44 .soc-item span:hover {
  border-color: #f23801;
  color: #f23801;
}
.cid-rym5webdvf .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-rym5webdvf .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rym5webdvf a {
  font-style: normal;
}
.cid-rym5webdvf .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-rym5webdvf .top-icon {
  font-size: 1rem;
  color: #000000;
  padding: 0.4rem;
}
.cid-rym5webdvf .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-rym5webdvf .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rym5webdvf .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rym5webdvf .nav-item:focus,
.cid-rym5webdvf .nav-link:focus {
  outline: none;
}
.cid-rym5webdvf .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rym5webdvf .btn .ino-iconfont {
  font-size: 1.6rem;
}
.cid-rym5webdvf .menu-logo {
  margin-right: auto;
}
.cid-rym5webdvf .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo .ino-iconfont {
  transition: font-size 0.25s;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rym5webdvf .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rym5webdvf .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rym5webdvf .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rym5webdvf .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a .ino-iconfont {
  font-size: 2.5rem !important;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rym5webdvf button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rym5webdvf button.navbar-toggler:focus {
  outline: none;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rym5webdvf .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rym5webdvf .collapsed .btn {
  display: -webkit-flex;
}
.cid-rym5webdvf .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing,
.cid-rym5webdvf .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rym5webdvf .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rym5webdvf .collapsed button.navbar-toggler {
  display: block;
}
.cid-rym5webdvf .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rym5webdvf .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rym5webdvf .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rym5webdvf.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rym5webdvf img {
    height: 3.8rem !important;
  }
  .cid-rym5webdvf .icon-wrap {
    margin-top: 1rem;
  }
  .cid-rym5webdvf .menu-wrap {
    flex-direction: column;
  }
  .cid-rym5webdvf .btn {
    display: -webkit-flex;
  }
  .cid-rym5webdvf button.navbar-toggler {
    display: block;
  }
  .cid-rym5webdvf .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-rym5webdvf .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rym5webdvf .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing,
  .cid-rym5webdvf .navbar-collapse.show {
    display: block !important;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-nav,
  .cid-rym5webdvf .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rym5webdvf .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-buttons,
  .cid-rym5webdvf .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rym5webdvf .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rym5webdvf .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rym5webdvf .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rym5webdvf .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rym5webdvf .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rym5webdvf .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-rym5webdvf .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-rym5webdvf .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-rym5webdvf .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rym5webdvf .nav-link:hover,
.cid-rym5webdvf .dropdown-item:hover {
  color: #cccccc !important;
}
.cid-t8CHOQzFR4 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/gord-landscapeboliviaflamingos-1080x718.jpg");
}
.cid-t8CHOQzFR4 .ino-overlay {
  background-color: #ffffff;
  opacity: 0.5;
}
.cid-t8CHOQzFR4 form .ino-section-btn .btn {
  display: inline-flex;
  border-radius: 2rem;
}
.cid-t8CHOQzFR4 input,
.cid-t8CHOQzFR4 textarea {
  border-radius: 0.5rem;
}
.cid-t8CHOQzFR4 textarea {
  min-height: 10rem;
}
.cid-t8CHOQzFR4 .ino-form {
  background: #879a9f;
  border-radius: 2rem;
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-t8CHOQzFR4 .ino-form {
    padding: 2rem 1rem;
  }
}
.cid-t8CHOQzFR4 .form-control:hover,
.cid-t8CHOQzFR4 .form-control:focus {
  border-color: transparent !important;
}
.cid-t8CHOQzFR4 .ino-section-title {
  color: #ffffff;
}
.cid-t8CHOQzFR4 .ino-section-subtitle {
  color: #ffffff;
}
.cid-t8CHOQzFR4 LABEL {
  color: #ffffff;
}
.cid-t8tcUdPb44 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-t8tcUdPb44 .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 24rem;
}
@media (max-width: 991px) {
  .cid-t8tcUdPb44 .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t8tcUdPb44 .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-t8tcUdPb44 .ino-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-t8tcUdPb44 .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-t8tcUdPb44 .footer-top {
  border-bottom: 2px solid #f23801;
}
.cid-t8tcUdPb44 .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-t8tcUdPb44 .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-t8tcUdPb44 .footer-item-text {
  margin-bottom: 1.9375rem;
  color: #cccccc;
  text-align: left;
}
.cid-t8tcUdPb44 .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-t8tcUdPb44 .soc-item a {
  color: #fafafa;
}
.cid-t8tcUdPb44 .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fafafa;
  border: 1px solid #ffffff;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-t8tcUdPb44 .soc-item span:hover {
  border-color: #f23801;
  color: #f23801;
}
.cid-rym5webdvf .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-rym5webdvf .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rym5webdvf a {
  font-style: normal;
}
.cid-rym5webdvf .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-rym5webdvf .top-icon {
  font-size: 1rem;
  color: #000000;
  padding: 0.4rem;
}
.cid-rym5webdvf .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-rym5webdvf .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rym5webdvf .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rym5webdvf .nav-item:focus,
.cid-rym5webdvf .nav-link:focus {
  outline: none;
}
.cid-rym5webdvf .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rym5webdvf .btn .ino-iconfont {
  font-size: 1.6rem;
}
.cid-rym5webdvf .menu-logo {
  margin-right: auto;
}
.cid-rym5webdvf .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo .ino-iconfont {
  transition: font-size 0.25s;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rym5webdvf .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rym5webdvf .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rym5webdvf .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rym5webdvf .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a .ino-iconfont {
  font-size: 2.5rem !important;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rym5webdvf button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rym5webdvf button.navbar-toggler:focus {
  outline: none;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rym5webdvf .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rym5webdvf .collapsed .btn {
  display: -webkit-flex;
}
.cid-rym5webdvf .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing,
.cid-rym5webdvf .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rym5webdvf .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rym5webdvf .collapsed button.navbar-toggler {
  display: block;
}
.cid-rym5webdvf .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rym5webdvf .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rym5webdvf .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rym5webdvf.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rym5webdvf img {
    height: 3.8rem !important;
  }
  .cid-rym5webdvf .icon-wrap {
    margin-top: 1rem;
  }
  .cid-rym5webdvf .menu-wrap {
    flex-direction: column;
  }
  .cid-rym5webdvf .btn {
    display: -webkit-flex;
  }
  .cid-rym5webdvf button.navbar-toggler {
    display: block;
  }
  .cid-rym5webdvf .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-rym5webdvf .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rym5webdvf .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing,
  .cid-rym5webdvf .navbar-collapse.show {
    display: block !important;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-nav,
  .cid-rym5webdvf .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rym5webdvf .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-buttons,
  .cid-rym5webdvf .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rym5webdvf .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rym5webdvf .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rym5webdvf .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rym5webdvf .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rym5webdvf .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rym5webdvf .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-rym5webdvf .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-rym5webdvf .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-rym5webdvf .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rym5webdvf .nav-link:hover,
.cid-rym5webdvf .dropdown-item:hover {
  color: #cccccc !important;
}
.cid-t8CQG5LczE {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-t8CQG5LczE .price-term {
  vertical-align: top;
}
.cid-t8CQG5LczE h4 {
  margin: 0;
}
.cid-t8CQG5LczE .card1 {
  background: #073b4c;
}
.cid-t8CQG5LczE .card2 {
  background: #4f4943;
}
.cid-t8CQG5LczE .card3 {
  background: #000000;
}
.cid-t8CQG5LczE .nav-tabs {
  border: none !important;
}
.cid-t8CQG5LczE .nav-tabs .nav-item {
  margin: 0;
}
.cid-t8CQG5LczE .nav-tabs .btn {
  white-space: nowrap;
}
.cid-t8CQG5LczE .nav-tabs .btn:after {
  display: none;
}
@media (min-width: 768px) {
  .cid-t8CQG5LczE .nav-tabs .btn {
    margin: 0px !important;
  }
  .cid-t8CQG5LczE .nav-tabs .nav-item:first-child .btn {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .cid-t8CQG5LczE .nav-tabs .nav-item:last-child .btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
}
.cid-t8CQG5LczE .plan-item .ino-iconfont {
  margin-right: 22px;
  font-size: 22px;
  position: relative;
  top: 18px;
}
.cid-t8CQG5LczE .plan-item p {
  letter-spacing: 0.4px;
  margin: 0;
  padding: 16px 0 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  max-width: 205px;
  width: 100%;
}
.cid-t8CQG5LczE .plan-body .ino-section-btn {
  padding: 44px 0 0;
}
.cid-t8CQG5LczE .plan-body .ino-section-btn .btn {
  margin-bottom: 14px;
}
.cid-t8CQG5LczE .plan-header {
  padding: 4rem 1rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.cid-t8CQG5LczE .plan-body {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fff;
  padding: 40px 1rem;
}
.cid-t8CQG5LczE .month {
  letter-spacing: 2px;
}
.cid-t8CQG5LczE .plan {
  word-break: break-word;
  position: relative;
  max-width: 400px;
  margin-bottom: 1rem;
  color: #767676;
}
.cid-t8CQG5LczE .row {
  justify-content: center;
}
.cid-t8CQG5LczE .price-value {
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-t8CQG5LczE .price-figure {
    font-size: 4.25rem;
  }
}
@media (max-width: 992px) {
  .cid-t8CQG5LczE .plan {
    margin-bottom: 2rem;
  }
}
.cid-t8CQG5LczE .plan-item p,
.cid-t8CQG5LczE .plan-item .ino-iconfont {
  color: #767676;
  text-align: center;
}
.cid-t8CWYO5aUy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #b3c4c7;
}
.cid-t8CWYO5aUy .menu-item {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-t8CWYO5aUy .ino-iconfont {
  font-size: 2.5rem;
  padding-right: 1rem;
  color: #000000;
}
.cid-t8CWYO5aUy .inline-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-t8CWYO5aUy .group-title {
  margin: 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.cid-t8CWYO5aUy .icon-wrap {
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}
.cid-t8CWYO5aUy .special-label {
  color: #fff;
}
.cid-t8CWYO5aUy .menu-box {
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 0.5rem;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-t8CWYO5aUy .menu-box .box-price {
  flex-shrink: 0;
}
.cid-t8CWYO5aUy .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-t8CWYO5aUy .menu-row {
  margin: 0;
}
.cid-t8CWYO5aUy .box-text {
  padding: 0;
  margin: 0;
  width: fit-content;
  color: #0f7699;
}
.cid-t8CWYO5aUy .line {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  background-image: radial-gradient(circle closest-side, #9a9a9a 99%, rgba(255, 255, 255, 0) 1%);
  background-size: 12px 2px;
  background-position: center;
  margin: 0.2em 0.5em;
  background-repeat: repeat;
  height: 2px;
}
.cid-t8CWYO5aUy .group-title,
.cid-t8CWYO5aUy .align-wrap {
  text-align: left;
}
.cid-t8tcUdPb44 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-t8tcUdPb44 .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 24rem;
}
@media (max-width: 991px) {
  .cid-t8tcUdPb44 .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t8tcUdPb44 .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-t8tcUdPb44 .ino-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-t8tcUdPb44 .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-t8tcUdPb44 .footer-top {
  border-bottom: 2px solid #f23801;
}
.cid-t8tcUdPb44 .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-t8tcUdPb44 .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-t8tcUdPb44 .footer-item-text {
  margin-bottom: 1.9375rem;
  color: #cccccc;
  text-align: left;
}
.cid-t8tcUdPb44 .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-t8tcUdPb44 .soc-item a {
  color: #fafafa;
}
.cid-t8tcUdPb44 .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fafafa;
  border: 1px solid #ffffff;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-t8tcUdPb44 .soc-item span:hover {
  border-color: #f23801;
  color: #f23801;
}
.cid-rym5webdvf .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-rym5webdvf .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rym5webdvf a {
  font-style: normal;
}
.cid-rym5webdvf .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-rym5webdvf .top-icon {
  font-size: 1rem;
  color: #000000;
  padding: 0.4rem;
}
.cid-rym5webdvf .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-rym5webdvf .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rym5webdvf .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rym5webdvf .nav-item:focus,
.cid-rym5webdvf .nav-link:focus {
  outline: none;
}
.cid-rym5webdvf .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rym5webdvf .btn .ino-iconfont {
  font-size: 1.6rem;
}
.cid-rym5webdvf .menu-logo {
  margin-right: auto;
}
.cid-rym5webdvf .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo .ino-iconfont {
  transition: font-size 0.25s;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rym5webdvf .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rym5webdvf .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rym5webdvf .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rym5webdvf .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a .ino-iconfont {
  font-size: 2.5rem !important;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rym5webdvf button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rym5webdvf button.navbar-toggler:focus {
  outline: none;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rym5webdvf .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rym5webdvf .collapsed .btn {
  display: -webkit-flex;
}
.cid-rym5webdvf .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing,
.cid-rym5webdvf .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rym5webdvf .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rym5webdvf .collapsed button.navbar-toggler {
  display: block;
}
.cid-rym5webdvf .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rym5webdvf .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rym5webdvf .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rym5webdvf.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rym5webdvf img {
    height: 3.8rem !important;
  }
  .cid-rym5webdvf .icon-wrap {
    margin-top: 1rem;
  }
  .cid-rym5webdvf .menu-wrap {
    flex-direction: column;
  }
  .cid-rym5webdvf .btn {
    display: -webkit-flex;
  }
  .cid-rym5webdvf button.navbar-toggler {
    display: block;
  }
  .cid-rym5webdvf .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-rym5webdvf .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rym5webdvf .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing,
  .cid-rym5webdvf .navbar-collapse.show {
    display: block !important;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-nav,
  .cid-rym5webdvf .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rym5webdvf .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-buttons,
  .cid-rym5webdvf .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rym5webdvf .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rym5webdvf .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rym5webdvf .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rym5webdvf .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rym5webdvf .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rym5webdvf .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-rym5webdvf .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-rym5webdvf .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-rym5webdvf .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rym5webdvf .nav-link:hover,
.cid-rym5webdvf .dropdown-item:hover {
  color: #cccccc !important;
}
.cid-t8CKm0Cqw0 {
  padding-top: 300px;
  padding-bottom: 285px;
  position: relative;
  background-image: url("../../../assets/images/gord-astrohalfmoon-1080x760.jpg");
}
.cid-t8CKm0Cqw0 .card-header {
  background: transparent;
}
.cid-t8CKm0Cqw0 .ino-iconfont {
  font-size: 1.4rem!important;
}
.cid-t8CKm0Cqw0 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-t8CKm0Cqw0 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-t8CKm0Cqw0 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-t8CKm0Cqw0 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-t8CKm0Cqw0 .card .card-header a.panel-title h5 .sign {
  padding-right: 1rem;
}
.cid-t8CKm0Cqw0 .card .panel-body {
  color: #767676;
  padding-top: 1rem;
}
.cid-t8CKm0Cqw0 h5 {
  flex-direction: row-reverse;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0rem;
  border-bottom: 1px solid #ffffff;
  padding: 1rem 1rem;
}
@media (max-width: 992px) {
  .cid-t8CKm0Cqw0 .md-pb {
    margin-bottom: 2rem;
  }
  .cid-t8CKm0Cqw0 .wrapper {
    padding: 3rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8CKm0Cqw0 .wrapper {
    padding: 2rem 1rem;
  }
  .cid-t8CKm0Cqw0 h5 {
    padding: 1rem 0rem;
  }
}
.cid-t8CKm0Cqw0 .ino-text,
.cid-t8CKm0Cqw0 .ino-section-btn {
  color: #ffffff;
}
.cid-t8CKm0Cqw0 .panel-text {
  color: #ffffff;
}
.cid-t8CKm0Cqw0 H4 {
  color: #ffffff;
}
.cid-t8CKm0Cqw0 H5 {
  color: #ffffff;
}
.cid-t8tcUdPb44 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-t8tcUdPb44 .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 24rem;
}
@media (max-width: 991px) {
  .cid-t8tcUdPb44 .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t8tcUdPb44 .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-t8tcUdPb44 .ino-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-t8tcUdPb44 .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-t8tcUdPb44 .footer-top {
  border-bottom: 2px solid #f23801;
}
.cid-t8tcUdPb44 .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-t8tcUdPb44 .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-t8tcUdPb44 .footer-item-text {
  margin-bottom: 1.9375rem;
  color: #cccccc;
  text-align: left;
}
.cid-t8tcUdPb44 .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-t8tcUdPb44 .soc-item a {
  color: #fafafa;
}
.cid-t8tcUdPb44 .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fafafa;
  border: 1px solid #ffffff;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-t8tcUdPb44 .soc-item span:hover {
  border-color: #f23801;
  color: #f23801;
}
.cid-rym5webdvf .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-rym5webdvf .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rym5webdvf a {
  font-style: normal;
}
.cid-rym5webdvf .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-rym5webdvf .top-icon {
  font-size: 1rem;
  color: #000000;
  padding: 0.4rem;
}
.cid-rym5webdvf .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-rym5webdvf .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rym5webdvf .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rym5webdvf .nav-item:focus,
.cid-rym5webdvf .nav-link:focus {
  outline: none;
}
.cid-rym5webdvf .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rym5webdvf .btn .ino-iconfont {
  font-size: 1.6rem;
}
.cid-rym5webdvf .menu-logo {
  margin-right: auto;
}
.cid-rym5webdvf .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
  margin-top:30px;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
  margin-top:30px;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo .ino-iconfont {
  transition: font-size 0.25s;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rym5webdvf .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rym5webdvf .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rym5webdvf .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rym5webdvf .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a .ino-iconfont {
  font-size: 2.5rem !important;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rym5webdvf button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rym5webdvf button.navbar-toggler:focus {
  outline: none;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rym5webdvf .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rym5webdvf .collapsed .btn {
  display: -webkit-flex;
}
.cid-rym5webdvf .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing,
.cid-rym5webdvf .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rym5webdvf .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rym5webdvf .collapsed button.navbar-toggler {
  display: block;
}
.cid-rym5webdvf .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rym5webdvf .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rym5webdvf .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rym5webdvf.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rym5webdvf img {
    height: 3.8rem !important;
  }
  .cid-rym5webdvf .icon-wrap {
    margin-top: 1rem;
  }
  .cid-rym5webdvf .menu-wrap {
    flex-direction: column;
  }
  .cid-rym5webdvf .btn {
    display: -webkit-flex;
  }
  .cid-rym5webdvf button.navbar-toggler {
    display: block;
  }
  .cid-rym5webdvf .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-rym5webdvf .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rym5webdvf .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing,
  .cid-rym5webdvf .navbar-collapse.show {
    display: block !important;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-nav,
  .cid-rym5webdvf .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rym5webdvf .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-buttons,
  .cid-rym5webdvf .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rym5webdvf .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rym5webdvf .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rym5webdvf .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rym5webdvf .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rym5webdvf .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  
  
  
  
    .cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo {
    margin-top:50px;
  }
  
  
  
  .cid-rym5webdvf .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
    margin-top:50px;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
}
@media (min-width: 767px) {
  .cid-rym5webdvf .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
  
  

  
}
@media (max-width: 767px) {
  .cid-rym5webdvf .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-rym5webdvf .navbar-brand {
    margin-top: -6rem !important;
  }
  
  
    .cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo {
    margin-top:90px;
  }
  
  
  
  .cid-rym5webdvf .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
    margin-top:90px;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
}
.cid-rym5webdvf .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rym5webdvf .nav-link:hover,
.cid-rym5webdvf .dropdown-item:hover {
  color: #cccccc !important;
}
.cid-t8DiRctmOS {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/gord-landscaapebrotherscreeknorthvancouver-1080x720.jpg");
}
.cid-t8DiRctmOS img {
  transition: all 0.3s;
}
.cid-t8DiRctmOS .image-wrapper {
  overflow: hidden;
  padding: 0;
}
.cid-t8DiRctmOS p {
  max-width: 500px;
}
.cid-t8DiRctmOS .card-wrapper {
  margin-bottom: 2rem;
  background: #82786e;
}
.cid-t8DiRctmOS .card-wrapper:hover .link:before {
  background: #82786e;
}
.cid-t8DiRctmOS .card-wrapper:hover img {
  transform: scale(1.1);
}
.cid-t8DiRctmOS .card-row,
.cid-t8DiRctmOS .img-col {
  margin: 0;
  padding: 0;
}
.cid-t8DiRctmOS .text-box {
  padding: 2rem 1rem;
}
.cid-t8DiRctmOS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t8DiRctmOS H5 {
  color: #3098f3;
}
.cid-t8DiRctmOS H2 {
  color: #c4bab0;
  text-align: center;
}
.cid-t8DiRctmOS H4 {
  color: #9fdbf8;
}
.cid-t8DiRctmOS .ino-text {
  color: #ffffff;
}
.cid-t8DkcMqTg8 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #c4bab0;
}
.cid-t8DkcMqTg8 .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-t8DkcMqTg8 .row {
    padding: 0 0.75rem;
  }
}
.cid-t8DkcMqTg8 .text-container {
  margin-bottom: 60px;
  padding: 0 !important;
}
.cid-t8DkcMqTg8 .ino-section-title {
  margin-bottom: 12px;
}
.cid-t8DkcMqTg8 .ino-text {
  color: #555555;
}
.cid-t8DkcMqTg8 .ino-text a {
  letter-spacing: inherit;
  color: #0057fc;
}
.cid-t8DkcMqTg8 .cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}
.cid-t8DkcMqTg8 .card {
  padding: 15px;
}
.cid-t8DkcMqTg8 .card-wrapper {
  display: flex;
  justify-content: flex-start;
  padding-right: 40px;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .cid-t8DkcMqTg8 .card-wrapper {
    flex-direction: column;
    padding-right: 0;
  }
}
.cid-t8DkcMqTg8 .card-title {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-t8DkcMqTg8 .card-title {
    text-align: center !important;
  }
}
.cid-t8DkcMqTg8 .card-text {
  color: #555555;
  letter-spacing: inherit;
}
@media (max-width: 767px) {
  .cid-t8DkcMqTg8 .card-text {
    text-align: center !important;
  }
}
.cid-t8DkcMqTg8 .ino-iconfont {
  font-size: 25px;
  color: #073b4c;
}
.cid-t8DkcMqTg8 .icon-box {
  margin-right: 12px;
  margin-top: 1px;
}
@media (max-width: 767px) {
  .cid-t8DkcMqTg8 .icon-box {
    display: flex;
    justify-content: center;
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-t8tcUdPb44 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-t8tcUdPb44 .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 24rem;
}
@media (max-width: 991px) {
  .cid-t8tcUdPb44 .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t8tcUdPb44 .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-t8tcUdPb44 .ino-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-t8tcUdPb44 .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-t8tcUdPb44 .footer-top {
  border-bottom: 2px solid #f23801;
}
.cid-t8tcUdPb44 .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-t8tcUdPb44 .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-t8tcUdPb44 .footer-item-text {
  margin-bottom: 1.9375rem;
  color: #cccccc;
  text-align: left;
}
.cid-t8tcUdPb44 .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-t8tcUdPb44 .soc-item a {
  color: #fafafa;
}
.cid-t8tcUdPb44 .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fafafa;
  border: 1px solid #ffffff;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-t8tcUdPb44 .soc-item span:hover {
  border-color: #f23801;
  color: #f23801;
}
.cid-rym5webdvf .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-rym5webdvf .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rym5webdvf a {
  font-style: normal;
}
.cid-rym5webdvf .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-rym5webdvf .top-icon {
  font-size: 1rem;
  color: #000000;
  padding: 0.4rem;
}
.cid-rym5webdvf .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-rym5webdvf .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rym5webdvf .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rym5webdvf .nav-item:focus,
.cid-rym5webdvf .nav-link:focus {
  outline: none;
}
.cid-rym5webdvf .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rym5webdvf .btn .ino-iconfont {
  font-size: 1.6rem;
}
.cid-rym5webdvf .menu-logo {
  margin-right: auto;
}
.cid-rym5webdvf .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo .ino-iconfont {
  transition: font-size 0.25s;
}
.cid-rym5webdvf .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rym5webdvf .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rym5webdvf .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rym5webdvf .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rym5webdvf .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rym5webdvf .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rym5webdvf .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a .ino-iconfont {
  font-size: 2.5rem !important;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rym5webdvf .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rym5webdvf button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rym5webdvf button.navbar-toggler:focus {
  outline: none;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rym5webdvf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rym5webdvf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rym5webdvf .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rym5webdvf .collapsed .btn {
  display: -webkit-flex;
}
.cid-rym5webdvf .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing,
.cid-rym5webdvf .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rym5webdvf .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rym5webdvf .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rym5webdvf .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rym5webdvf .collapsed button.navbar-toggler {
  display: block;
}
.cid-rym5webdvf .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rym5webdvf .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rym5webdvf .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rym5webdvf .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rym5webdvf.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rym5webdvf img {
    height: 3.8rem !important;
  }
  .cid-rym5webdvf .icon-wrap {
    margin-top: 1rem;
  }
  .cid-rym5webdvf .menu-wrap {
    flex-direction: column;
  }
  .cid-rym5webdvf .btn {
    display: -webkit-flex;
  }
  .cid-rym5webdvf button.navbar-toggler {
    display: block;
  }
  .cid-rym5webdvf .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-rym5webdvf .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rym5webdvf .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing,
  .cid-rym5webdvf .navbar-collapse.show {
    display: block !important;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-nav,
  .cid-rym5webdvf .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rym5webdvf .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-buttons,
  .cid-rym5webdvf .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rym5webdvf .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rym5webdvf .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rym5webdvf .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rym5webdvf .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rym5webdvf .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rym5webdvf .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rym5webdvf .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-rym5webdvf .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-rym5webdvf .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-rym5webdvf .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rym5webdvf .nav-link:hover,
.cid-rym5webdvf .dropdown-item:hover {
  color: #cccccc !important;
}
.cid-t8DuHPRSQy {
  padding-top: 180px;
  padding-bottom: 180px;
  background-image: url("../../../assets/images/gord-landscapefishingtemplelammaislandhongkong-1080x654.jpg");
}
.cid-t8DuHPRSQy .btn {
  margin: 0.2rem!important;
}
.cid-t8DuHPRSQy .row {
  justify-content: flex-end;
}
.cid-t8DuHPRSQy .ino-text,
.cid-t8DuHPRSQy .ino-section-btn {
  color: #cccccc;
}
.cid-t8DuHPRSQy H3 {
  color: #cccccc;
}
.cid-t8tcUdPb44 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-t8tcUdPb44 .logo-wrap {
  padding: 0;
  max-width: 100%;
  width: 24rem;
}
@media (max-width: 991px) {
  .cid-t8tcUdPb44 .logo-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t8tcUdPb44 .social-row {
  display: block;
  flex-wrap: wrap;
}
.cid-t8tcUdPb44 .ino-tag {
  color: #9e9e9e;
  margin-bottom: 0.3875rem;
}
.cid-t8tcUdPb44 .footer-item-top {
  padding-bottom: 1.875rem;
}
.cid-t8tcUdPb44 .footer-top {
  border-bottom: 2px solid #f23801;
}
.cid-t8tcUdPb44 .footer-item-bottom {
  padding-top: 3.375rem;
}
.cid-t8tcUdPb44 .footer-item-title {
  margin-bottom: 13px;
  text-align: left;
}
.cid-t8tcUdPb44 .footer-item-text {
  margin-bottom: 1.9375rem;
  color: #cccccc;
  text-align: left;
}
.cid-t8tcUdPb44 .soc-item {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.cid-t8tcUdPb44 .soc-item a {
  color: #fafafa;
}
.cid-t8tcUdPb44 .soc-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fafafa;
  border: 1px solid #ffffff;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-t8tcUdPb44 .soc-item span:hover {
  border-color: #f23801;
  color: #f23801;
}
/**  Horizontal scroller */

.cid-t8N6mKNySj {
  overflow-x: hidden !important;
}
.cid-t8N6mKNySj,
.cid-t8N6mKNySj .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 225px;
}
.cid-t8N6mKNySj .mbr-section-title {
  color: #ffffff;
  text-shadow: 1px 0px 2px rgba(0,0,0,0.5);
}
.cid-t8N6mKNySj .mbr-section-title span {
  color: #000000;
}
.cid-t8N6mKNySj .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-t8N6mKNySj .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 30s !important;
  animation-duration: 30s;
  background-image: url("../../../assets/images/gord-perspectivepolarization-1080x475.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-t8N6mKNySj .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-t8N6mKNySj .mbr-overlay {
  z-index: 1;
}
.cid-t8N6mKNySj .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

/** lower contact us page */

.cid-t9xxp2BfXL {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-t9xxp2BfXL .row {
  flex-direction: row-reverse;
}
.cid-t9xxp2BfXL p {
  margin: 0;
}
.cid-t9xxp2BfXL .mbr-section-head {
  margin-bottom: 2rem;
}
.cid-t9xxp2BfXL .mbr-section-title {
  text-align: center;
}
.cid-t9xxp2BfXL .mbr-section-subtitle {
  text-align: center;
}
.cid-t9xxp2BfXL .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-t9xxp2BfXL .card-container {
    margin-bottom: 2rem;
  }
}
.cid-t9xxp2BfXL .card-wrapper {
  width: 50%;
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 1rem 2rem 0;
  align-items: baseline;
}
@media (max-width: 991px) {
  .cid-t9xxp2BfXL .card-wrapper {
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-t9xxp2BfXL .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-t9xxp2BfXL .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #33d5ad;
}
.cid-t9xxp2BfXL .google-map {
  height: 100%;
  position: relative;
}
.cid-t9xxp2BfXL .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t9xxp2BfXL .google-map [data-state-details] {
  color: #1f1437;
  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-t9xxp2BfXL .google-map[data-state] {
  background: #f3edf7;
}
.cid-t9xxp2BfXL .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-t9xxp2BfXL .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-t9xxp2BfXL .card-title {
  color: #ffffff;
}
.cid-t9xxp2BfXL P {
  color: #ffffff;
}

/** Pricing Page */
.cid-t9xa4s2zRT {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/gord-landscapengwesaungmyanmar-1080x488.jpg");
}
.cid-t9xa4s2zRT .wrapper {
  background-image: url("../../../assets/images/gord-astrofortselkirkyukonriver-1080x717.jpeg");
  border-radius: 30px;
  background-size: cover;
  position: relative;
}
.cid-t9xa4s2zRT .wrapper img {
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-t9xa4s2zRT .wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-t9xa4s2zRT .wrapper {
    padding: 8rem 6rem;
  }
}
.cid-t9xa4s2zRT .mbr-overlay {
  border-radius: 30px;
  min-height: 100%;
}