body {
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.display-1 {
  font-family: 'Dancing Script', handwriting;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Dancing Script', handwriting;
  font-size: 3rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-3 {
  font-family: 'Dancing Script', handwriting;
  font-size: 2.2rem;
  line-height: 1.2;
}
.display-3 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Dancing Script', handwriting;
  font-size: 1.8rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 * {
  line-height: inherit;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((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 {
  border-width: 2px;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  border-radius: 2rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 0.8rem 3.5rem;
  border-radius: 8px;
}
/* colors */
:root {
  --primary-bg-color:#22a5e5; 
}
.bg-primary {
  background-color: var(--primary-bg-color) !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: #22a5e5 !important;
  border-color: #22a5e5 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e4f6ff !important;
  border-color: #e4f6ff !important;
  color: #0098e4 !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: #000000 !important;
  border-color: #22a5e5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #0098e4 !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
/*** TODO FIX COLORS AND FONTS HERE *****/
.btn-success,
.btn-success:active {
  background-color: #3586c893 !important;
  border-color: #4077bf !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: #0000007d !important;
  border-color: #1b8f8b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.selected {
  color: #ffffff !important;
  background-color: #1b468f !important;
  border-color: #788f1b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #22a5e5;
  color: #22a5e5;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #13709e !important;
  background-color: transparent !important;
  border-color: #13709e !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #e4f6ff;
  color: #e4f6ff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8dd9ff !important;
  background-color: transparent !important;
  border-color: #8dd9ff !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #0098e4 !important;
  background-color: #e4f6ff !important;
  border-color: #e4f6ff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: #148cca !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  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: #2a747e !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: #ffe161;
  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: #ffd10a !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: #ff9966;
  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: #ff5f0f !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: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #22a5e5 !important;
}
.text-secondary {
  color: #e4f6ff !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: #116690 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #e4f6ff !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;
}
.nav-tabs .nav-link.active {
  color:#22a5e5;
  box-shadow: 0 0 5px 5px black;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}

.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #22a5e5;
  border-color: #22a5e5;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #22a5e5;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d9effa;
}
.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: 'Plus Jakarta Sans', 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: #22a5e5 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Plus Jakarta Sans', 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: #22a5e5;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #22a5e5;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #22a5e5;
}
.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: #22a5e5;
  border-bottom-color: #22a5e5;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #22a5e5 !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: #e4f6ff !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='%2322a5e5' %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;
}

.ac-forms {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.ac-forms .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.ac-forms .btn {
  box-shadow: none;
  border-radius: 30px;
  padding: 1rem 3rem;
}
.ac-forms .jq-selectbox li {
  padding: 1em 1.5em;
}
.ac-forms .col-auto {
  width: 100%;
  justify-content: flex-end;
  display: flex;
}
.ac-forms .form-control,
.ac-forms .field-input {
  padding: 0rem;
  margin-bottom: 1rem;
  background-color: #ffffff;
  border-bottom: 1px solid #c1c1c1 !important;
  border-radius: 0;
  color: #353535;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.ac-forms .form-control::-webkit-input-placeholder,
.ac-forms .field-input::-webkit-input-placeholder,
.ac-forms .form-control::-webkit-input-placeholder,
.ac-forms .field-input::-webkit-input-placeholder {
  color: #bbbbbb;
}
.ac-forms .form-control:-moz-placeholder,
.ac-forms .field-input:-moz-placeholder,
.ac-forms .form-control:-moz-placeholder,
.ac-forms .field-input:-moz-placeholder {
  color: #bbbbbb;
}
.ac-forms .form-control:hover,
.ac-forms .field-input:hover,
.ac-forms .form-control:focus,
.ac-forms .field-input:focus {
  background-color: #ffffff;
  border-color: transparent!important;
  border-bottom: 1px solid #c1c1c1 !important;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.ac-forms .form-control:hover::-webkit-input-placeholder,
.ac-forms .field-input:hover::-webkit-input-placeholder,
.ac-forms .form-control:focus::-webkit-input-placeholder,
.ac-forms .field-input:focus::-webkit-input-placeholder,
.ac-forms .form-control:hover::-webkit-input-placeholder,
.ac-forms .field-input:hover::-webkit-input-placeholder,
.ac-forms .form-control:focus::-webkit-input-placeholder,
.ac-forms .field-input:focus::-webkit-input-placeholder {
  color: #bbbbbb;
}
.ac-forms .form-control:hover:-moz-placeholder,
.ac-forms .field-input:hover:-moz-placeholder,
.ac-forms .form-control:focus:-moz-placeholder,
.ac-forms .field-input:focus:-moz-placeholder,
.ac-forms .form-control:hover:-moz-placeholder,
.ac-forms .field-input:hover:-moz-placeholder,
.ac-forms .form-control:focus:-moz-placeholder,
.ac-forms .field-input:focus:-moz-placeholder {
  color: #bbbbbb;
}
.ac-forms .jq-number__spin:hover,
.ac-forms .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #c1c1c1;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.ac-forms .jq-number__spin {
  background-color: #ffffff;
  border-color: #c1c1c1;
  color: #353535;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.ac-forms .jq-selectbox li,
.ac-forms .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.ac-forms .jq-selectbox li:hover,
.ac-forms .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.ac-forms .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.ac-forms .jq-number__spin.minus:hover:after,
.ac-forms .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.ac-forms .jq-selectbox .jq-selectbox__trigger-arrow,
.ac-forms .jq-number__spin.minus:after,
.ac-forms .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.ac-forms input::-webkit-clear-button {
  display: none;
}
.ac-forms input::-webkit-inner-spin-button {
  display: none;
}
.ac-forms input::-webkit-outer-spin-button {
  display: none;
}
.ac-forms input::-webkit-calendar-picker-indicator {
  display: none;
}
.ac-forms .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: black!important;
}
.ac-forms .jq-selectbox__dropdown {
  border-radius: 0;
}

.cid-ac-features {
  padding-top: 9rem;
  padding-bottom: 3rem;
}

.writing {
  background-image: url("../assets/images/background1.jpg");
}

.music {
  background-image: url("../assets/images/lorenzo-spoleti-MlhJNEUQpBs-unsplash.jpg");
}

.cid-ac-features .mbr-fallback-image.disabled {
  display: none;
}
.cid-ac-features .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-ac-features .container {
    max-width: 1400px;
  }
}
.cid-ac-features .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #5d47e9;
  margin-bottom: 2rem;
}
.cid-ac-features .card-wrapper {
  margin-top: 3rem;
}
.cid-ac-features .row {
  justify-content: center;
}
.ac-school-levels {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #207eaf;/*#77bbdf;*/
}
.ac-school-levels img {
  border-radius: 1rem;
  height: 200px;
  object-fit: cover;
}
.ac-school-levels .item-wrapper {
  padding: 2rem;
  position: relative;
  border-radius: 2rem;
  background: #e4f6ff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .ac-school-levels .item-wrapper {
    padding: 1rem;
  }
}
.ac-school-levels .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ac-school-levels .d-flex {
  align-items: center;
}
.ac-school-levels .item-subtitle {
  background: #e4f6ff;
  border-radius: 16px;
  padding: 6px 16px;
  width: fit-content;
  color: #000000;
  margin: 0;
  margin-left: 10px;
}
.ac-school-levels .mbr-iconfont {
  font-size: 1.5rem;
  border: 1px solid black;
  border-radius: 50%;
  padding: 10px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ac-school-levels img,
.ac-school-levels .item-img {
  width: 100%;
}
.ac-school-levels .item:focus,
.ac-school-levels span:focus {
  outline: none;
}
.ac-school-levels .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.ac-school-levels .mbr-section-btn {
  margin-top: auto !important;
}
.ac-school-levels .mbr-section-title {
  color: #232323;
  text-align: center;
}
.ac-school-levels .mbr-text,
.ac-school-levels .mbr-section-btn {
  text-align: left;
}
.ac-school-levels .item-title {
  text-align: left;
}

.ac-pricing {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.ac-pricing .mbr-fallback-image.disabled {
  display: none;
}
.ac-pricing .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.ac-pricing .container {
  max-width: 1600px;
}
.ac-pricing .text-wrapper {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .ac-pricing .text-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .ac-pricing .text-wrapper {
    margin-bottom: 50px;
  }
}
.ac-pricing .mbr-section-title {
  color: #212132;
}
.ac-pricing .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.83rem;
}
@media (max-width: 991px) {
  .ac-pricing .content-wrapper {
    grid-template-columns: 1fr;
  }
}
.ac-pricing .card-bg-item {
  padding: 3px;
  background-color: #ffffff;
  border-radius: 2.3rem;
}
.ac-pricing .card-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 2.08rem;
  height: 100%;
}
@media (max-width: 767px) {
  .ac-pricing .card-item {
    padding-right: 6vw;
    padding-left: 6vw;
  }
}
.ac-pricing .text-container {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .ac-pricing .text-container {
    margin-bottom: 24px;
  }
}
.ac-pricing .card-title {
  color: #212132;
}
.ac-pricing .mbr-text {
  color: #212132;
  opacity: 0.6;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .ac-pricing .mbr-text {
    margin-top: 16px;
  }
}
.ac-pricing .price-text {
  color: #212132;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .ac-pricing .price-text {
    margin-bottom: 8px;
  }
}
.ac-pricing .mbr-section-btn {
  margin-top: 24px;
}
@media (max-width: 991px) {
  .ac-pricing .mbr-section-btn {
    margin-top: 16px;
  }
}
.ac-pricing .custom-section-btn {
  width: 100%;
  margin-left: 0;
}
.ac-pricing .custom-section-btn .btn {
  width: 100%;
  min-height: 85px;
}
.ac-pricing .list {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .ac-pricing .list {
    margin-top: 24px;
  }
}
.ac-pricing .list-title {
  color: #212132;
  opacity: 0.6;
  margin-bottom: 12px;
}
.ac-pricing .item-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px;
  border-radius: 0.625rem;
  background-color: #f1f5f7;
  margin-bottom: 0.125rem;
}
@media (max-width: 991px) {
  .ac-pricing .item-wrap {
    padding: 8px;
  }
}
.ac-pricing .list-text {
  color: #212132;
}
.ac-pricing .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  min-height: 32px;
  min-width: 32px;
  margin-left: 8px;
  background-color: #e6c63b;
}
.ac-pricing .iconfont-wrapper .mbr-iconfont {
  font-size: 15px;
  color: #212132;
}
.ac-pricing .card-bg-item:nth-child(2) {
  background-image: linear-gradient(180deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
}


.ac-cards {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #207eaf;/*#77bbdf;*/
}
.ac-cards .mbr-fallback-image.disabled {
  display: none;
}
.ac-cards .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.ac-cards .mbr-section-subtitle {
  background: black;
  width: fit-content;
  color: #ffffff;
  padding: 0.2rem 1rem;
  border-radius: 1rem;
}
.ac-cards .wrapper {
  background: #f4f4f4;
  padding: 3rem;
  border-radius: 2rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .ac-cards .wrapper {
    padding: 2rem 1rem;
  }
  .ac-cards .wrapper .mbr-section-subtitle {
    margin: auto;
  }
}
.ac-cards .card {
  background: #ffffff;
  border-radius: 2rem;
  padding: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .ac-cards .card {
    padding: 2rem 1rem;
  }
}
.ac-cards .mbr-section-title {
  color: #000000;
}
.ac-cards .mbr-text,
.ac-cards .mbr-section-btn {
  color: #000000;
}
.ac-cards .mbr-title {
  color: #000000;
  text-align: center;
}
.ac-search {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  align-items: center !important;
  justify-content: center !important;
}
.ac-search input {
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  margin-bottom: 0.5rem;
  height: 20px;
  margin-left: 10px !important; /* Adjust this value to increase or decrease the space */
}
.ac-search .input-group .input-group-text {
  border: none !important;
  background-color: transparent !important;
}


.ac-general-header {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-image: url("../assets/images/mbr-1920x1175.jpg");
  opacity: 0.8; 
  background-color: white;
}
.ac-general-header .mbr-overlay {
  opacity: 0.8; 
  background-color: white;
}
.ac-general-header .mbr-section-title {
  text-align: center;
}
.ac-general-header .mbr-text,
.ac-general-header .mbr-section-btn {
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .ac-general-header .mbr-section-title,
  .ac-general-header .mbr-section-btn,
  .ac-general-header .mbr-text {
    text-align: center;
  }
}

.ac-calendar-header {
  position: fixed;
  top: 0;
  left: 0;
  height: 220px;
  width: 100%;
  z-index: 990;
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../assets/images/mbr-1920x1175.jpg");
}
.ac-calendar-header .mbr-section-title,
.ac-calendar-header .mbr-section-btn,
.ac-calendar-header .mbr-text {
  text-align: center;
}
@media (min-width: 768px) {
  .ac-calendar-header {
    height: 220px;
  }
  .ac-calendar-header .mbr-section-title {
    margin-top: 50px !important;
  }
}
@media (max-width: 767px) {
  .ac-calendar-header {
    height: 186px;
  }
  .ac-calendar-header .mbr-section-title {
    margin-top: 10px !important;
  }
}

.weekly-tabs {
  margin-top: 220px;
  background-color: #ffffff;
}
.weekly-tabs .card-wrapper {
  background-color: #f2f2f2;
  background: #f2f2f2;
  transition: all 0.3s;
  position: relative;
  padding: 30px;
}
.weekly-tabs .btn {
  color: white !important;
  box-shadow: none !important;
  border-radius: 10px !important;
  width: 60%;
  margin: 0;
  margin-top: 8px;
}
.weekly-tabs .btn.selected {
  color: #ffffff !important;
}
.weekly-tabs .btn:disabled {
  color: #a8b1bc !important;
}
.weekly-tabs .btn:hover {
  background-color: #18293D !important;
  color: #fff !important;
}
@media (max-width: 991px) {
  .weekly-tabs .card-wrapper {
    padding: 3rem 1rem;
  }
}
@media (min-width: 991px) {
  .weekly-tabs .container {
    width: 980px;
  }
}
.weekly-tabs .mbr-text {
  text-align: center;
}
.weekly-tabs .time {
  text-align: left;
  font-size: 14px;
}
.weekly-tabs .duration {
  text-align: left;
  font-size: 14px;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  .weekly-tabs .display-1 {
    font-size: 70px;
  }
  .weekly-tabs .display-5 {
    font-size: 29px;
  }
  .weekly-tabs .display-7 {
    font-size: 22px;
  }
}
.weekly-tabs .mbr-section-title {
  text-align: center;
}
.weekly-tabs .mbr-section-subtitle {
  text-align: center;
}
.weekly-tabs .nav-tabs .nav-item.open .nav-link:focus,
.weekly-tabs .nav-tabs .nav-link.active:focus {
  outline: none;
}
.weekly-tabs .nav-tabs {
  width: 90%;
  flex-wrap: wrap;
  border-bottom: none;
}
.weekly-tabs ul.nav-tabs {
  flex-wrap: wrap;
  background: rgba(244, 244, 244, 0.9);
  border-radius: 1.5rem;
  padding: 0 1rem;
}

.weekly-tabs .nav-item {
  width: 12%;
}

/*
@media (min-width: 992px) {
  .weekly-tabs .nav-tabs {
    width: 750px;
  }
}
@media (max-width: 991px) {
  .weekly-tabs .nav-item {
    width: 11%;
  }
}*/
@media (max-width: 767px) {
  .weekly-tabs {
    width: 100%;
    margin-top: 188px;
  }
}
.weekly-tabs .nav-tabs .nav-link {
  transition: all .5s;
  border: 1px solid transparent;
  border-radius: 20px !important;
  min-width: 50px;
}

.weekly-tabs .nav-tabs .nav-link:not(.active) {
  color: #18293d;
}
/*
@media (min-width: 768px) {
  .weekly-tabs .nav-tabs .nav-item {
    margin-right: 1rem;
  }
}
@media (max-width: 767px) {
  .weekly-tabs .nav-tabs .nav-item {
    margin-bottom: 1.5rem;
  }
}*/
.weekly-tabs .nav-link,
.weekly-tabs .nav-link.active {
  padding: 10px 0;
  background-color: transparent;
}
.weekly-tabs .nav-link:hover span {
  transition: 200ms;
  font-size: 22px;
  color: #22a5e5 !important;
  text-decoration: underline;
}

.weekly-tabs .nav-tabs .nav-link.active .number {
  border: 1px solid #414141;
  background: #f4f4f4;
}
.weekly-tabs .nav-link span {
  font-size: 15px;
  white-space: nowrap;
}
.weekly-tabs .nav-link.active span {
  font-size: 15px;
  font-weight: bold;
}
.weekly-tabs .custom-tab-item {
  flex-grow: 1;
  text-align: center;
  padding: 0 20px;
}
.weekly-tabs .mbr-card-text {
  text-align: center;
}
.weekly-tabs .day {
  font-size: 16px;
}
.weekly-tabs .number {
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 10px;
}
.weekly-tabs .btn.btn-success.checked {
  background-color: blue;
  color: white;
}
.weekly-tabs .btn.btn-success {
  background-color: grey;
  color: white;
}
.ac-main-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 991;
background: red;/*transparent;*/
}
.ac-main-menu .navbar-nav {
  background: rgba(244, 244, 244, 0.9);
  border-radius: 1.5rem;
  padding: 0 1rem;
}
.ac-main-menu .container {
  max-width: 1150px;
  height: 50px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .ac-main-menu .container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 992px) {
  .ac-main-menu .container {
    height: 70px;
  }
}
@media (min-width: 992px) {
  .ac-main-menu .navbar {
    top: 20px;
    background: #f4f4f45a/* transparent */ !important;
  }
}
.ac-main-menu .nav-link {
  position: relative;
}
.ac-main-menu .nav-link:hover {
  color: #22a5e5 !important;
}
.ac-main-menu .navbar {
  min-height: 50px;
  background: #f4f4f4;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}
.ac-main-menu .navbar.opened {
  transition: all 0.3s;
}
.ac-main-menu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.ac-main-menu .navbar .navbar-logo img {
  width: auto;
}
.ac-main-menu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.ac-main-menu .navbar.collapsed {
  justify-content: center;
}
.ac-main-menu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.ac-main-menu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .ac-main-menu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.ac-main-menu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.ac-main-menu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.ac-main-menu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.ac-main-menu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.ac-main-menu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.ac-main-menu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .ac-main-menu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .ac-main-menu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .ac-main-menu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .ac-main-menu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .ac-main-menu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .ac-main-menu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .ac-main-menu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .ac-main-menu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .ac-main-menu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .ac-main-menu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .ac-main-menu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.ac-main-menu .dropdown-item:before {
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.ac-main-menu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.ac-main-menu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.ac-main-menu .dropdown-item:hover,
.ac-main-menu .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.ac-main-menu .dropdown-item:hover span {
  color: white;
}
.ac-main-menu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.ac-main-menu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.ac-main-menu .nav-dropdown .link {
  padding: 0 0.2em !important;
  margin: 0.667em 1em !important;
}
.ac-main-menu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.ac-main-menu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.ac-main-menu .dropdown-menu,
.ac-main-menu .navbar.opened {
  background: #f4f4f4 !important;
}
.ac-main-menu .nav-item:hover {
  transform: scale(1.1);
}
.ac-main-menu .nav-item:focus,
.ac-main-menu .nav-link:focus {
  outline: none;
}
.ac-main-menu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.ac-main-menu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.ac-main-menu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.ac-main-menu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.ac-main-menu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.ac-main-menu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.ac-main-menu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.ac-main-menu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.ac-main-menu .navbar-brand .navbar-logo a {
  outline: none;
}
.ac-main-menu .navbar-brand .navbar-logo span:hover {
  color : var(--primary-bg-color);
  font-size: 29px;
}

.ac-main-menu .dropdown-item.active,
.ac-main-menu .dropdown-item:active {
  background-color: transparent;
}
.ac-main-menu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.ac-main-menu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.ac-main-menu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.ac-main-menu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f4f4;
}
.ac-main-menu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.ac-main-menu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.ac-main-menu ul.navbar-nav {
  flex-wrap: wrap;
}
.ac-main-menu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.ac-main-menu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.ac-main-menu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.ac-main-menu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.ac-main-menu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.ac-main-menu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.ac-main-menu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.ac-main-menu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.ac-main-menu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.ac-main-menu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.ac-main-menu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.ac-main-menu .navbar-dropdown {
  padding: 0 1rem;
}
.ac-main-menu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1111px) {
  .ac-main-menu a.nav-link p {
    display: none;
  }
}
@media (max-width: 991px) {
  .ac-main-menu a.nav-link p {
    display: block;
  }
}
@media (min-width: 991px) {
  #navbarSupportedContent > ul > li:nth-child(4) > a > p,
  #navbarSupportedContent > ul > li:nth-child(5) > a > p {
    display: none;
  }
}

.ac-main-menu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ac-main-menu .navbar {
    height: 70px;
  }
  .ac-main-menu .navbar.opened {
    height: auto;
  }
  .ac-main-menu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}

.ac-general-footer {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.ac-general-footer .d-flex {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .ac-general-footer .d-flex {
    flex-direction: column;
  }
}
.ac-general-footer .line {
  width: 100%;
  height: 1px;
  background: gray;
  margin-bottom: 2rem;
}

.ac-video-about {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f4f4f4;
}
.ac-video-about .mbr-media {
  position: relative;
}
.ac-video-about .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
}
.ac-video-about .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.ac-video-about .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.ac-video-about .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.ac-video-about .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.ac-video-about .modalWindow .modalWindow-video {
  height: 100vh;
  width: 100vw;
  margin: 0;
  opacity: 0.95;
}
.ac-video-about .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.ac-video-about .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.rounded-img {
  overflow: hidden;
  border: 5px solid black;
  transform: scale(1);
  border-radius: 2rem;
  padding: 0;
  margin-bottom: 2rem;
  max-width: 300px;
  max-height: auto;
}

.rounded-img-2 {
  overflow: hidden;
  border: 5px solid black;
  transform: scale(1);
  border-radius: 2rem;
  padding: 0;
  margin-bottom: 2rem;
}
.expandable-paragraph {
  display: none; /* Initially hide the paragraph */
  /*align-self: flex-end; /* Align the button at the bottom of the container */
  text-align: left !important;
  }

  .courselist {
  height: 34rem;    
  overflow-y: auto; /* Add this line to make the content scrollable */
}

  .expand-button .fas {
  transition: transform 0.3s ease-in-out; /* Add transition effect for the icon rotation */
  align-self: flex-end; /* Align the button at the bottom of the container */
  }

  .expand-button.expanded .fas {
  transform: rotate(180deg); /* Rotate the icon when expanded */
  }
  .expand-button.expanded i:before {
    content: "\f068"; /* Minus icon from Font Awesome */
  }
  @keyframes typing {
  from { width: 0; }
  to { width: 100%; }
  }

  .typewriter {
  overflow: hidden; /* Ensures the text is not displayed outside the box */
  /* border-right: .1em solid black; /* Creates the blinking cursor effect */
  white-space: nowrap; /* Keeps the text on a single line */
  animation: typing 3s steps(40, end);
  /*width: 0;
  /*cursor: url(assets/images/awlogoxx-96x96.png), auto;*/
  font-size: xx-large;
  }
  .faq-bubble {
    position: fixed !important;
    display: flex; /* Use flexbox */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    border-radius: 25px;
    left: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    text-align: center;
    z-index: 999;
    font-size: 22px;
}
  .counter-bubble {
    position: fixed;
    display: block;
    border-radius: 25px;
    right: 0;
    width: 100px;
    height: 50px;
    text-align: center;
    line-height: 10px;
    z-index: 998;
    font-size: 18px;
    transition: transform 0.2s, font-size 0.2s;
}
@media (min-width: 991px) {
  .counter-bubble {
    top: 80px;
    width: 124px;
    right: 36px;
  }
}

@media (max-width: 990px) {
  .counter-bubble {
    top: 80px;
  }
}
@media (max-width: 767px) {
  .counter-bubble {
    top: 80px;
    width: 76px;
    height: 40px;
    font-size: 12px;
  }
}
.counter-bubble:hover {
  font-size: 22px;
}
.counter-bubble.ampup {
  font-size: 24px;
}

/* Define the CSS spinner */
.spinner {
  border: 16px solid #f3f3f3; /* Light gray border */
  border-top: 16px solid #3498db; /* Blue border on top */
  border-radius: 50%; /* Circular shape */
  width: 100px;
  height: 100px;
  animation: spin 2s linear infinite; /* Add a CSS animation */
  display: none; /* Hide the spinner initially */
}

/* Define the CSS animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.sticky-heading {
  position: fixed;
  background-color: #f9f9f9;
  z-index: 98;
}

.modal-content {
  display: flex;
  flex-direction: column;
  height: 100%;/*100vh; /* Set the height of the modal to full viewport height */
}
.modal-body {
  height: 100%;
  flex-grow: 1; /* Make the modal-body expand to fill the available space */
  overflow: auto; /* Enable scrolling if content exceeds the height */
}
.modal-footer {
  padding: 5px;
  background-color: #f5f5f5;
  text-align: right;
}

/* Increase the size of radio and checkbox inputs */
.form-check-input[type="radio"],
.form-check-input[type="checkbox"] {
    width: 23px;
    height: 23px;
    border: 1px solid black;
    padding: 2px;;
}

.card-wrapper a {
  color: black;
}

.box-container {
  display: flex;
  flex-direction: row;
  height: auto; /* Set a height for the container */
  }

  .box {
    flex: 1;
    /*border: 1px solid #df0b0b;*/
    padding: 10px;
  }

  .marquee-banner {
/*    position: fixed;
    top: auto;
    bottom: 172px;*/
  left: 0;
  width: 100%;
  height: 50px;
  /*background-color:  #f2f2f27c;/**/
  background-color: transparent;/* #f2f2f27c;*/
  padding: 10px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 99;
  display: flex;
  align-items: center; /* Vertically center the items */
  }
  #banner-message {
    white-space: pre;
    display: inline-block;
    animation: marquee 10s linear infinite;
    width: 100%; /* Set a fixed width to prevent reducing the width */
    /*margin-left: calc(100%-20px); /* Start from the right */
  }
  .trial-button {
  position: fixed;
  transform: translateX(-20%);
  right: 20px; 
  background-color: transparent;/* #f2f2f2dd;*/
  }
  .trial-button:hover span {
      transition: 200ms;
      font-size: 20px;
      font-weight: bolder;
  }

  @keyframes marquee {
      0% {
          transform: translateX(100%);
      }
      5% {
          transform: translateX(15%); /* Pause for 10% of the animation duration */
      }
      20% {
          transform: translateX(15%); /* Pause for 10% of the animation duration */
      }
      95% {
          transform: translateX(-80%);
      }
      100% {
          transform: translateX(-100%);
      }
  }

  .grow { 
    animation: grow-shrink 0.4s ease-in-out;
}
@keyframes grow-shrink {
    0% { transform: scale(1); }
    50% { transform: scale(2); }
    100% { transform: scale(1); }
}

.grow-on-hover {
transition: transform 0.3s ease;
}

.grow-on-hover:hover {
transform: scale(1.2);
}

.my-button {
  font-size: 18px;
  cursor: pointer;
  border: none;
  background-color: var(--primary-bg-color);
  color: white;
  border-radius: 5px;
}
.my-button:hover {
  background-color: black;
  font-size: 18px;
}

.bordered-span {
  border-top: 2px solid black; /* Add border at the top */
  border-bottom: 2px solid black; /* Add border at the bottom */
  white-space: nowrap;
}


@media (min-width: 992px) {
  .ac-only-narrow {
      display: block;
      background-color: transparent !important;
      color: transparent !important;
      border-width: 0;
      padding: 0.6rem 1.2rem;
      box-shadow: 0 2px 5px 0 transparent !important;
  }
}

.center-items {
  display: flex;
  justify-content: center;
  align-items: center;
  /*height: 10vh; /* Adjust the height as needed */
  }

  .alert-custom {
    color: black;
    background-color: orange;
  }


.courselist ul {
  list-style-type: none;
  padding-left: 0.2rem !important; /* Reduce the indentation space */
}

.courselist ul li {
  line-height: 1.5; /* Add line spacing */
  margin-top: 0.75rem;
}

.courselist ul li::before {
	content: "\f0a4";
  font-family: 'FontAwesome';
  margin-right: 5px; /* Add some space between the icon and the text */
}