body {
  font-family: "Barlow", sans-serif;
  overflow-x: hidden;
}
.container {
  box-sizing: border-box;
  max-width: 1200px !important;
  margin-left: auto;
  margin-right: auto;
}
:root {
  --white: #ffffff;
  --black: #000000;
  --black2: #0f0f0f;
  --black3: #404040;
  --black4: #4a5565;
  --black6: #667085;
  --bg-gold: #a67f2d;
  --bg-grey: #3d3d3d;
  --bg-black-smoky: #0d0d0d;
  --bg-light-grey: #e6e6e6;
  --bg-black-russian: #101828;
  --bg-grey98: #fafafa;
  --greytext: #484848;
  --blue: #0050a1;
  --lightblue: #f3f7fe;
  --lightblue2: #eff5ff;
  --greybg: #f2f2f2;
  --greybg2: #f9f9f9;
  --greybg3: #e0e0e0;
  --text-45: 2.813rem;
  --text-40: 2.5rem;
  --text-34: 2.125rem;
  --text-32: 2rem;
  --text-30: 1.875rem;
  --text-26: 1.65rem;
  --text-24: 1.5rem;
  --text-22: 1.375rem;
  --text-20: 1.25rem;
  --text-18: 1.125rem;
  --text-16: 0.938rem;
  --text-14: 0.875rem;
}
/* Mobile first (<=767px) */
@media (max-width: 767px) {
  :root {
    --text-45: 2rem;
    --text-40: 1.875rem;
    --text-34: 1.5rem;
    --text-32: 1.375rem;
    --text-30: 1.25rem;
    --text-26: 1.165rem;
    --text-24: 1.25rem;
    --text-22: 1.125rem;
    --text-20: 1rem;
    --text-18: 0.95rem;
    --text-16: 0.85rem;
    --text-14: 0.75rem;
  }
}

/* Tablet (768pxâ€“991px) */
@media (min-width: 768px) and (max-width: 991px) {
  :root {
    --text-45: 2.375rem;
    --text-40: 2.125rem;
    --text-34: 1.75rem;
    --text-32: 1.625rem;
    --text-30: 1.5rem;
    --text-26: 1.4rem;
    --text-24: 1.375rem;
    --text-22: 1.25rem;
    --text-20: 1.125rem;
    --text-18: 1rem;
    --text-16: 0.85rem;
    --text-14: 0.65rem;
  }
}

/* Small desktop (992pxâ€“1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  :root {
    --text-45: 2.625rem;
    --text-40: 2.375rem;
    --text-34: 2rem;
    --text-32: 1.875rem;
    --text-30: 1.625rem;
    --text-26: 1.575rem;
    --text-24: 1.5rem;
    --text-22: 1.375rem;
    --text-20: 1.25rem;
    --text-18: 1.125rem;
    --text-16: 1rem;
    --text-14: 0.85rem;
  }
}

.white {
  color: var(--white);
}
.black {
  color: var(--black);
}
.gold {
  color: var(--bg-gold);
}
.grey98 {
  color: var(--bg-grey98);
}
.greytext {
  color: var(--greytext);
}
.black-smoky {
  color: var(--bg-black-smoky);
}
.bg-blue {
  background: var(--blue);
}
.badge {
  font-size: var(--text-14);
  font-weight: 600;
  border-radius: 4px;
}

/*font sizes*/
.text-45 {
  font-size: var(--text-45);
}
.text-40 {
  font-size: var(--text-40);
}
.text-34 {
  font-size: var(--text-34);
}
.text-32 {
  font-size: var(--text-32);
}
.text-30 {
  font-size: var(--text-30);
}
.text-26 {
  font-size: var(--text-26);
}
.text-24 {
  font-size: var(--text-24);
}
.text-22 {
  font-size: var(--text-22);
}
.text-20 {
  font-size: var(--text-20);
}
.text-16 {
  font-size: var(--text-16);
}
.text-14 {
  font-size: var(--text-14);
}
.text-18 {
  font-size: var(--text-18);
}
.fw-bold {
  font-weight: 700 !important;
}
.fw-normal {
  font-weight: 400 !important;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-semibold {
  font-weight: 600 !important;
}
.italic {
  font-style: italic;
}
.leading-140 {
  line-height: 140% !important;
}
.leading-120 {
  line-height: 120% !important;
}
.leading-100 {
  line-height: 100% !important;
}
/*colors*/
.blue {
  color: var(--blue);
}
.black {
  color: var(--black);
}
.black2 {
  color: var(--black2);
}
.black3 {
  color: var(--black3);
}
.black4 {
  color: var(--black4);
}
.black5 {
  color: var(--bg-black-russian);
}
.black6 {
  color: var(--black6);
}
.blue2 {
  color: var(--blue2);
}
.opacity-60 {
  opacity: 0.6;
}
.bg-light-blue {
  background: linear-gradient(106.55deg, #d9e7ff 0%, #eff5ff 100%);
}
.bg-lightblue {
  background: var(--lightblue);
}
.bg-lightblue2 {
  background: var(--lightblue2);
}
.wrap-balance {
  text-wrap: balance;
}
.radius-8 {
  border-radius: 8px;
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}
.form-container select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* SVG arrow as background */
  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E")
    no-repeat right 12px center;
  background-size: 16px; /* adjust size */ /* Adjust size of your arrow */
  padding-right: 40px; /* Give space for arrow */
}

/* For IE 10/11 hide default arrow */
select.form-control::-ms-expand {
  display: none;
}

/*btn*/
.downloadbrchure {
  width: 50%;
  margin: 0 auto;
  margin-top: 15px;
  text-decoration: none;
}
.downloadbrchure-btn {
  background: var(--blue);
  color: var(--white);
  font-size: var(--text-16);
  font-weight: 700;
  padding: 14px 25px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  font-size: var(--text-16);
  font-weight: 700;
  padding: 14px 25px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: none;
}

/*spacinng*/
.m-0 {
  margin: 0px !important;
}
.p-0 {
  padding: 0px;
}
.space-y-2 > :not(:last-child) {
  margin: 0px !important;
  margin-bottom: 10px !important;
}
.space-y-3 > :not(:last-child) {
  margin: 0px !important;
  margin-bottom: 15px !important;
}
.space-y-4 > :not(:last-child) {
  margin: 0px !important;
  margin-bottom: 2rem !important;
}
.mb-32 {
  margin-bottom: 32px;
}
/*event schedule*/
.event-schedule {
  border-bottom: 1px solid #cccccc;
  background: var(--greybg2);
  padding: 20px 0;
  transition: all 0.3s ease;
  @media (max-width: 767px) {
    &.sticky{
      .row{
        > *:not(:last-child){
          display: none;
        }
      }
    }
    
  }
}


.event-schedule.sticky {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.downloadbrchure-btn {
  transition: opacity 0.3s ease;
}

.downloadbrchure-btn.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.event-schedule.sticky .downloadbrchure-btn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.event-schedule .downloadbrchure-box {
  display: none;
}
.event-schedule.sticky .downloadbrchure-box {
  display: block;
  margin-top: var(--bs-gutter-y) !important;
  .downloadbrchure{
    margin-top: 0 !important;
  }
}

.event-schedule .eveneschudelbox {
  padding: 15px 15px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  p{
    flex-grow: 1;
  }
  > p:first-child{
    flex-grow: 1;
    align-items: center !important;
  }
}
.event-schedule .row > *:not(:last-child) .eveneschudelbox:after {
  content: "";
  background: var(--greybg3);
  position: absolute;
  right: 0;
  height: 85%;
  width: 1px;
  top: 50%;
  transform: translate(0, -50%);
}

/*courses certificate*/
.spacing-top-40 {
  padding-top: 40px;
}
.spacing-bottom-40 {
  padding-bottom: 40px;
}
.spacing-top-55 {
  padding-top: 65px;
}
.spacing-bottom-55 {
  padding-bottom: 65px;
}

.courses-certificatebox {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 6.5% 4%;
  position: relative;
}
.registernowhover {
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  -webkit-transform: translate(0px, 20px);
  transform: translate(0px, 20px);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 0 35px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(2, 0, 36, 0)),
    color-stop(0%, rgba(9, 9, 121, 0)),
    color-stop(0%, rgba(2 23 57 / 94%))
  );
  background-image: linear-gradient(
    0deg,
    rgba(2, 0, 36, 0) 0%,
    rgba(9, 9, 121, 0) 0%,
    rgb(2 23 57 / 94%) 0%
  );
}
.registernowhover .btn {
  width: 40%;
  margin: 0 auto;
  padding: 10px 12px;
}
.courses-certificatebox.toggleHover .registernowhover {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}
.offerboxstyled {
  backdrop-filter: blur(27.299999237060547px);
  border: 2px solid var(--blue);
  background: #0049931a;
  border-style: dashed !important;
  border-radius: 8px;
  padding: 10px 30px;
}
.singlepay {
  background: var(--blue);
  color: white;
  font-size: var(--text-14);
  font-weight: 500;
  line-height: 1;
  left: 0;
  top: 15px;
  padding: 4px 8px 6px 8px;
}
/*eric*/
/*listitems*/
.listitems {
  width: 42%;
  margin: 0 auto;
  text-align: left;
}
.list-learning {
  width: 70%;
  margin: 0 auto;
  text-align: left;
}
.listitems li {
  position: relative;
  padding-left: 40px; /* space for icon */
}

.listitems ul,
.list-learning ul,
.whowants ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.whowants ul {
  gap: 18px;
}
.list-learning ul {
  gap: 5px;
}
.whowants ul li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.whowants ul li img {
  width: 24px;
  height: 24px;
}
.listitems ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  background-image: url("../images/tick.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.list-learning ul li {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.list-learning ul li .learningbox-count {
  background: var(--lightblue2);
  color: var(--blue);
  border-radius: 50%;
  padding: 4px 8px;
  font-weight: 600;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.who-should-enroll {
  width: 75%;
}
.who-should-enroll .whowants {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 8%;
}
.who-should-enroll .row > *:first-of-type .whowants {
  border-width: 2px 0px 2px 2px;
  border-style: solid;
  border-color: #eff5ff;
  border-radius: 8px 0px 0px 8px;
}
.who-should-enroll .row > *:last-of-type .whowants {
  background: #f3f7fe;
  border-radius: 0px 8px 8px 0px;
}
.who-should-enroll .row > *:last-of-type .whowants ul {
  gap: 13px;
}
.mark-global-recognition-img {
  background: var(--greybg);
  border-radius: 8px;
  padding: 6% 13%;
}
.mark-global-recognition-img {
  text-align: center;
}
.mark-global-recognition-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/*expert box*/
.expert-box {
  padding: 8%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.expert-box img {
  width: 140px;
  margin: auto;
  margin-bottom: 20px;
}
.expert-box p {
  flex-grow: 1;
}
.form-container {
  width: 60%;
  margin: auto;
}
.form-container .form-group {
  position: relative;
}

.form-container .form-control {
  border-radius: 4px;
  border: 1px solid #e6e6e6;
  background: var(--greybg2, #f8f8f8);
  padding: 12px 10px;
  padding-bottom: 10px;
  font-size: var(--text-16);
  color: var(--black, #000);
  transition: all 0.2s ease;
}
.form-container .form-control.is-invalid {
  border-color: #ff0000;
}

.form-container .form-control,
.iti__flag-container {
  height: 48px;
}
.invalid-feedback {
  display: none !important;
}

/* Floating Label */
.form-container .form-label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background: var(--greybg2, #f8f8f8);
  padding: 0 6px;
  color: #757575;
  font-size: var(--text-16);
  pointer-events: none;
  transition: all 0.2s ease;
  margin-bottom: 0px;
}

/* When focused or filled */
.form-container .form-control:focus + .form-label,
.form-container .form-control:not(:placeholder-shown) + .form-label,
.form-container .form-control.is-valid ~ .form-label,
.form-container .form-control.is-invalid ~ .form-label {
  top: 0px;
  left: 6px;
  font-size: var(--text-12, 12px);
}

/* Custom checkbox */
.custom-checkbox {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #4f4f4f;
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 10px;
  cursor: pointer;
  background-color: #ffffff;
  flex-shrink: 0;
}
.custom-checkbox input {
  opacity: 0;
  position: absolute;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox span {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: transparent;
}
/* .custom-checkbox input:checked ~ span {
    background-color: #d4af37;
    border-radius: 4px;
  } */
.custom-checkbox span:after {
  content: "";
  position: absolute;
  display: none;
}
.custom-checkbox input:checked ~ span:after {
  display: block;
}
.custom-checkbox span:after {
  left: 5px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: solid var(--blue);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/*bannerbg*/
.bannerbg {
  background-image: url("../images/bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  padding: 30px 0 90px 0;
}
.banner-content-section {
  padding-top: 30px;
}
.banner-content-section-title {
  background: #3c7af533;
  padding: 8px 16px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.banner-section-form {
  width: 100%;
  border-radius: 4px;
  background: var(--white);
  padding: 20px;
}
.banner-section-form .col-md-6 {
  flex: 0 0 100%;
  max-width: 100%;
}
.banner-section-form .g-4 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}
.banner-content-section .col-md-7 {
  flex: 0 0 auto;
  width: 62%;
}
.banner-content-section .col-md-5 {
  flex: 0 0 auto;
  width: 38%;
}
.bannerbg .slick-dots {
  bottom: -41%;
  text-align: start;
}
.bannerbg .slick-dots li {
  width: auto;
  height: auto;
}
.bannerbg .slick-dots li button {
  background: #bdbdbd;
  height: 5px;
  border-radius: 100px;
  width: 16px;
  transition: all 0.3s ease;
}
.bannerbg .slick-dots li.slick-active button {
  background: var(--blue);
  width: 80px;
}
.bannerbg .slick-dots li button:before {
  display: none;
}

/*testimonial slider*/
.testimonial-arrows {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.testimonial-arrows button {
  padding: 0;
  border: none;
  background: transparent;
  outline: none;
  border: none;
}
.testimonial-arrows .slick-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.testimonial-arrows button:first-child {
  transform: rotate(180deg);
}
.register-button .btn-primary {
  padding: 14px 4.5rem;
}
@media (min-width: 992px) {
  .testimonial-slider {
    margin-top: 60px;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .event-schedule .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  /* .event-schedule .row > * {
    flex: 0 0 38%;
    width: 38%;
  } */
  .eric-banner .ps-lg-5 {
    padding-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .spacing-bottom-40 {
    padding-bottom: 35px;
  }
  .spacing-top-40 {
    padding-top: 35px;
  }
  .spacing-bottom-55 {
    padding-bottom: 35px;
  }
  .spacing-top-55 {
    padding-top: 35px;
  }
  .event-schedule {
    padding: 10px 0;
  }
  .event-schedule .eveneschudelbox {
    padding: 10px 15px;
  }
  .event-schedule .row > *:not(:last-child) .eveneschudelbox:after {
    height: 80%;
  }
  .event-schedule .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  /* .event-schedule .row > * {
    flex: 0 0 70%;
    width: 70%;
  } */
  .listitems,
  .list-learning,
  .who-should-enroll,
  .form-container {
    width: 100%;
  }
  .list-learning ul li {
    padding: 15px;
  }
  .list-learning ul li .learningbox-count {
    width: 30px;
    height: 30px;
  }
  .days {
    flex: 0 0 auto;
  }
  .form-container .form-control,
  .iti__flag-container {
    height: 45px;
  }
  .eric-banner {
    padding-bottom: 30px;
  }
  .offerboxstyled {
    padding: 10px 12px;
  }
  .banner-content-section .col-md-7 {
    flex: 0 0 auto;
    width: 100%;
  }
  .banner-content-section .col-md-5 {
    flex: 0 0 auto;
    width: 100%;
  }
  .bannerbg {
    padding: 30px 0 50px 0;
  }
  .bannerbg .logo img {
    width: 80px;
  }
  .bannerbg .slick-dots {
    text-align: start;
    position: static;
    margin-top: 20px;
  }
  .bannerbg .slick-dots li button {
    height: 4px;
    width: 12px;
  }
  .bannerbg .slick-dots li.slick-active button {
    width: 40px;
  }
  .quoteicon svg {
    width: 60px;
    height: 50px;
  }
  .testimonial-arrows button svg {
    width: 40px;
    height: 40px;
  }
  .bannerbg {
    background-position: left;
  }
}
@media (max-width: 767px) {
  .col-md-4.slick-slide {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
    height: 100%;
}
.expert-box p {
  flex-grow: 1;
  height: 8vw;
}
  .eric-banner {
    padding-bottom: 0;
  }
  .testimonial-slider .testimg img {
    width: auto;
  }
  .testimg,
  .quoteicon {
    display: flex;
    justify-content: center;
  }
  .testimonial-arrows {
    justify-content: center;
  }
  .testcontent-wrapper {
    text-align: center;
  }
  .downloadbrchure {
    width: 60%;
  }
  .event-schedule {
    z-index: 9;
  }
  .event-schedule {
    position: static;
  }
  .event-schedule .row {
    flex-wrap: wrap;
  }
  .event-schedule .row > *:nth-child(even) .eveneschudelbox:after {
    display: none;
  }
  .eveneschudelbox:after {
    display: none;
  }
  .eveneschudelbox .d-flex {
    display: block !important;
    min-height: 2.3rem;
  }
  .event-schedule .eveneschudelbox {
    padding: 5px 5px;
  }
  .event-schedule .row.text-center {
    align-items: unset !important;
  }
}
.slick-arrow.slick-disabled {
  pointer-events: none;
  cursor: unset;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 1031;
}
.preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.preloader-icon {
  width: 100px;
} 
/* itl input na us number only */
.iti__selected-flag{
  pointer-events: none;
}