body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-vcyfYSzVH3 {
  min-height: 100vh;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 6rem;
  overflow: hidden;
}
.cid-vcyfYSzVH3 .apb-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-size: cover;
  background-position: center center;
}
.cid-vcyfYSzVH3 .apb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}
.cid-vcyfYSzVH3 .apb-container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.cid-vcyfYSzVH3 .apb-inner {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vcyfYSzVH3.layout-left .apb-inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.cid-vcyfYSzVH3.layout-right .apb-inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-vcyfYSzVH3.layout-center .apb-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cid-vcyfYSzVH3.layout-top .apb-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cid-vcyfYSzVH3.layout-top .apb-text-center {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.cid-vcyfYSzVH3 .apb-text-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 240px;
  max-width: 460px;
  padding: 1rem 2rem;
}
.cid-vcyfYSzVH3 .apb-text-center {
  text-align: center;
  max-width: 580px;
  padding: 1rem;
}
.cid-vcyfYSzVH3 .apb-title {
  color: #ffffff;
  margin-bottom: 1rem;
}
.cid-vcyfYSzVH3 .apb-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}
.cid-vcyfYSzVH3 .apb-phone-col {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.cid-vcyfYSzVH3 .apb-phone-wrap {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  margin-bottom: calc((620px * 130 / 100) - 620px);
}
.cid-vcyfYSzVH3 .apb-phone {
  position: relative;
  width: 300px;
  height: 620px;
  border-radius: 46px;
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 0 3px rgba(0, 0, 0, 0.4), 20px 40px 80px rgba(0, 0, 0, 0.65);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 0 3px rgba(0, 0, 0, 0.4), 20px 40px 80px rgba(0, 0, 0, 0.65);
  padding: 13px;
}
.cid-vcyfYSzVH3 .apb-btn-vol-up,
.cid-vcyfYSzVH3 .apb-btn-vol-dn,
.cid-vcyfYSzVH3 .apb-btn-power {
  position: absolute;
  width: 3px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.5);
}
.cid-vcyfYSzVH3 .apb-btn-vol-up {
  left: -3px;
  top: 120px;
  height: 30px;
}
.cid-vcyfYSzVH3 .apb-btn-vol-dn {
  left: -3px;
  top: 162px;
  height: 30px;
}
.cid-vcyfYSzVH3 .apb-btn-power {
  right: -3px;
  top: 142px;
  height: 46px;
}
.cid-vcyfYSzVH3 .apb-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-size: cover !important;
  background-position: center center !important;
}
.cid-vcyfYSzVH3 .apb-statusbar {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 18px 2px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  position: relative;
  z-index: 5;
}
.cid-vcyfYSzVH3 .apb-status-icons {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cid-vcyfYSzVH3 .apb-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 11px;
  height: 11px;
  background: #000000;
  border-radius: 50%;
  z-index: 10;
}
.cid-vcyfYSzVH3 .apb-app-grid {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: repeat(4, 1fr);
  padding: 14px 8px 8px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  align-content: start;
}
.cid-vcyfYSzVH3 .apb-icon-wrap {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 62px;
  margin: 4px auto;
  position: relative;
  opacity: 1;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cid-vcyfYSzVH3 .apb-icon-link {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  text-decoration: none !important;
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.cid-vcyfYSzVH3 .apb-icon-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.22), transparent);
  border-radius: 14px 14px 0 0;
  pointer-events: none;
}
.cid-vcyfYSzVH3 .apb-i1 .apb-icon-link {
  background: linear-gradient(135deg, #4285f4 cc, #4285f4 88);
  -webkit-box-shadow: 0 4px 12px #4285f455;
  box-shadow: 0 4px 12px #4285f455;
}
.cid-vcyfYSzVH3 .apb-i2 .apb-icon-link {
  background: linear-gradient(135deg, #34a853 cc, #34a853 88);
  -webkit-box-shadow: 0 4px 12px #34a85355;
  box-shadow: 0 4px 12px #34a85355;
}
.cid-vcyfYSzVH3 .apb-i3 .apb-icon-link {
  background: linear-gradient(135deg, #ea4335 cc, #ea4335 88);
  -webkit-box-shadow: 0 4px 12px #ea433555;
  box-shadow: 0 4px 12px #ea433555;
}
.cid-vcyfYSzVH3 .apb-i4 .apb-icon-link {
  background: linear-gradient(135deg, #fbbc05 cc, #fbbc05 88);
  -webkit-box-shadow: 0 4px 12px #fbbc0555;
  box-shadow: 0 4px 12px #fbbc0555;
}
.cid-vcyfYSzVH3 .apb-i5 .apb-icon-link {
  background: linear-gradient(135deg, #00bcd4 cc, #00bcd4 88);
  -webkit-box-shadow: 0 4px 12px #00bcd455;
  box-shadow: 0 4px 12px #00bcd455;
}
.cid-vcyfYSzVH3 .apb-i6 .apb-icon-link {
  background: linear-gradient(135deg, #ff5722 cc, #ff5722 88);
  -webkit-box-shadow: 0 4px 12px #ff572255;
  box-shadow: 0 4px 12px #ff572255;
}
.cid-vcyfYSzVH3 .apb-i7 .apb-icon-link {
  background: linear-gradient(135deg, #9c27b0 cc, #9c27b0 88);
  -webkit-box-shadow: 0 4px 12px #9c27b055;
  box-shadow: 0 4px 12px #9c27b055;
}
.cid-vcyfYSzVH3 .apb-i8 .apb-icon-link {
  background: linear-gradient(135deg, #607d8b cc, #607d8b 88);
  -webkit-box-shadow: 0 4px 12px #607d8b55;
  box-shadow: 0 4px 12px #607d8b55;
}
.cid-vcyfYSzVH3 .apb-i9 .apb-icon-link {
  background: linear-gradient(135deg, #e91e63 cc, #e91e63 88);
  -webkit-box-shadow: 0 4px 12px #e91e6355;
  box-shadow: 0 4px 12px #e91e6355;
}
.cid-vcyfYSzVH3 .apb-i10 .apb-icon-link {
  background: linear-gradient(135deg, #ff9800 cc, #ff9800 88);
  -webkit-box-shadow: 0 4px 12px #ff980055;
  box-shadow: 0 4px 12px #ff980055;
}
.cid-vcyfYSzVH3 .apb-i11 .apb-icon-link {
  background: linear-gradient(135deg, #03a9f4 cc, #03a9f4 88);
  -webkit-box-shadow: 0 4px 12px #03a9f455;
  box-shadow: 0 4px 12px #03a9f455;
}
.cid-vcyfYSzVH3 .apb-i12 .apb-icon-link {
  background: linear-gradient(135deg, #4caf50 cc, #4caf50 88);
  -webkit-box-shadow: 0 4px 12px #4caf5055;
  box-shadow: 0 4px 12px #4caf5055;
}
.cid-vcyfYSzVH3 .apb-i13 .apb-icon-link {
  background: linear-gradient(135deg, #f44336 cc, #f44336 88);
  -webkit-box-shadow: 0 4px 12px #f4433655;
  box-shadow: 0 4px 12px #f4433655;
}
.cid-vcyfYSzVH3 .apb-i14 .apb-icon-link {
  background: linear-gradient(135deg, #2196f3 cc, #2196f3 88);
  -webkit-box-shadow: 0 4px 12px #2196f355;
  box-shadow: 0 4px 12px #2196f355;
}
.cid-vcyfYSzVH3 .apb-i15 .apb-icon-link {
  background: linear-gradient(135deg, #795548 cc, #795548 88);
  -webkit-box-shadow: 0 4px 12px #79554855;
  box-shadow: 0 4px 12px #79554855;
}
.cid-vcyfYSzVH3 .apb-i16 .apb-icon-link {
  background: linear-gradient(135deg, #009688 cc, #009688 88);
  -webkit-box-shadow: 0 4px 12px #00968855;
  box-shadow: 0 4px 12px #00968855;
}
.cid-vcyfYSzVH3.icons-12 .apb-i13,
.cid-vcyfYSzVH3.icons-12 .apb-i14,
.cid-vcyfYSzVH3.icons-12 .apb-i15,
.cid-vcyfYSzVH3.icons-12 .apb-i16 {
  display: none;
}
.cid-vcyfYSzVH3.icons-8 .apb-i9,
.cid-vcyfYSzVH3.icons-8 .apb-i10,
.cid-vcyfYSzVH3.icons-8 .apb-i11,
.cid-vcyfYSzVH3.icons-8 .apb-i12,
.cid-vcyfYSzVH3.icons-8 .apb-i13,
.cid-vcyfYSzVH3.icons-8 .apb-i14,
.cid-vcyfYSzVH3.icons-8 .apb-i15,
.cid-vcyfYSzVH3.icons-8 .apb-i16 {
  display: none;
}
.cid-vcyfYSzVH3.icons-6 .apb-i7,
.cid-vcyfYSzVH3.icons-6 .apb-i8,
.cid-vcyfYSzVH3.icons-6 .apb-i9,
.cid-vcyfYSzVH3.icons-6 .apb-i10,
.cid-vcyfYSzVH3.icons-6 .apb-i11,
.cid-vcyfYSzVH3.icons-6 .apb-i12,
.cid-vcyfYSzVH3.icons-6 .apb-i13,
.cid-vcyfYSzVH3.icons-6 .apb-i14,
.cid-vcyfYSzVH3.icons-6 .apb-i15,
.cid-vcyfYSzVH3.icons-6 .apb-i16 {
  display: none;
}
.cid-vcyfYSzVH3.icons-4 .apb-i5,
.cid-vcyfYSzVH3.icons-4 .apb-i6,
.cid-vcyfYSzVH3.icons-4 .apb-i7,
.cid-vcyfYSzVH3.icons-4 .apb-i8,
.cid-vcyfYSzVH3.icons-4 .apb-i9,
.cid-vcyfYSzVH3.icons-4 .apb-i10,
.cid-vcyfYSzVH3.icons-4 .apb-i11,
.cid-vcyfYSzVH3.icons-4 .apb-i12,
.cid-vcyfYSzVH3.icons-4 .apb-i13,
.cid-vcyfYSzVH3.icons-4 .apb-i14,
.cid-vcyfYSzVH3.icons-4 .apb-i15,
.cid-vcyfYSzVH3.icons-4 .apb-i16 {
  display: none;
}
.cid-vcyfYSzVH3 .apb-icon-wrap.apb-anim-ready {
  opacity: 0;
  -webkit-transform: scale(0.6) translateY(16px);
  transform: scale(0.6) translateY(16px);
}
.cid-vcyfYSzVH3 .apb-icon-wrap.apb-visible {
  opacity: 1;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.cid-vcyfYSzVH3 .apb-icon-link:hover {
  -webkit-transform: scale(1.12) translateY(-2px);
  transform: scale(1.12) translateY(-2px);
}
.cid-vcyfYSzVH3 .apb-icon-link:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.cid-vcyfYSzVH3 .apb-icon-wrap:nth-child(1) {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}
.cid-vcyfYSzVH3 .apb-icon-wrap:nth-child(2) {
  -webkit-transition-delay: 0.10s;
  transition-delay: 0.10s;
}
.cid-vcyfYSzVH3 .apb-icon-wrap:nth-child(3) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.cid-vcyfYSzVH3 .apb-icon-wrap:nth-child(4) {
  -webkit-transition-delay: 0.20s;
  transition-delay: 0.20s;
}
.cid-vcyfYSzVH3 .apb-icon-wrap:nth-child(5) {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.cid-vcyfYSzVH3 .apb-icon-wrap:nth-child(6) {
  -webkit-transition-delay: 0.30s;
  transition-delay: 0.30s;
}
.cid-vcyfYSzVH3 .apb-icon-wrap:nth-child(7) {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}
.cid-vcyfYSzVH3 .apb-icon-wrap:nth-child(8) {
  -webkit-transition-delay: 0.40s;
  transition-delay: 0.40s;
}
.cid-vcyfYSzVH3 .apb-icon-wrap:nth-child(9) {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}
.cid-vcyfYSzVH3 .apb-icon-wrap:nth-child(10) {
  -webkit-transition-delay: 0.50s;
  transition-delay: 0.50s;
}
.cid-vcyfYSzVH3 .apb-icon-wrap:nth-child(11) {
  -webkit-transition-delay: 0.55s;
  transition-delay: 0.55s;
}
.cid-vcyfYSzVH3 .apb-icon-wrap:nth-child(12) {
  -webkit-transition-delay: 0.60s;
  transition-delay: 0.60s;
}
.cid-vcyfYSzVH3 .apb-icon-wrap:nth-child(13) {
  -webkit-transition-delay: 0.65s;
  transition-delay: 0.65s;
}
.cid-vcyfYSzVH3 .apb-icon-wrap:nth-child(14) {
  -webkit-transition-delay: 0.70s;
  transition-delay: 0.70s;
}
.cid-vcyfYSzVH3 .apb-icon-wrap:nth-child(15) {
  -webkit-transition-delay: 0.75s;
  transition-delay: 0.75s;
}
.cid-vcyfYSzVH3 .apb-icon-wrap:nth-child(16) {
  -webkit-transition-delay: 0.80s;
  transition-delay: 0.80s;
}
.cid-vcyfYSzVH3 .apb-icon-mbr {
  font-size: 22px;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}
.cid-vcyfYSzVH3 .apb-icon-label {
  color: #e6c63b;
  font-size: 9px;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  overflow: hidden;
  max-width: 62px;
  text-align: center;
  margin: 3px 0 0 0;
  padding: 0;
  line-height: 1.2;
}
.cid-vcyfYSzVH3.no-labels .apb-icon-label {
  display: none;
}
.cid-vcyfYSzVH3 .apb-home-bar {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 90px;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  margin: 8px auto;
  position: relative;
  z-index: 2;
}
.cid-vcyfYSzVH3 .apb-i1 .apb-icon-label {
  color: #ffffff;
}
.cid-vcyfYSzVH3 .apb-i12 .apb-icon-label {
  color: #ffffff;
}
.cid-vcyfYSzVH3 .apb-i16 .apb-icon-label {
  color: #e43f3f;
}
.cid-vcyfYSzVH3 .apb-i11 .apb-icon-label {
  color: #22a5e5;
}
.cid-vcypzcNbzg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
