:root {
  /* --theme-color: #1cb098; */
  --theme-color: #39b34a;
  --theme-color2: #730218;
  --title-color: #1e1e1e;
  --body-color: #556377;
  --smoke-color: #f3f5f4;
  --white-color: #ffffff;
}

.bg-theme {
  background-color: var(--theme-color) !important;
}
.bg-theme2 {
  background-color: var(--theme-color2) !important;
}
.call-action-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}
.defult-action-btn,
.defult-call-btn,
.defult-tutor-btn {
  position: relative;
  z-index: 2;
  vertical-align: middle;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  text-align: center;
  background-color: #1e1e1e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 0.7;
  min-height: 56px;
  padding: 21px 40px;
  min-width: 170px;
  border-radius: 50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.defult-action-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--theme-color);
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-mask-image: url(../images/btn-mask.png);
  mask-image: url(../images/btn-mask.png);
  -webkit-mask-size: 3000% 100%;
  mask-size: 3000% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-animation: ani2 0.7s steps(29) forwards;
  animation: ani2 0.7s steps(29) forwards;
}
.defult-call-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: darkblue;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-mask-image: url(../images/btn-mask.png);
  mask-image: url(../images/btn-mask.png);
  -webkit-mask-size: 3000% 100%;
  mask-size: 3000% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-animation: ani2 0.7s steps(29) forwards;
  animation: ani2 0.7s steps(29) forwards;
}
.defult-tutor-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--theme-color2);
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-mask-image: url(../images/btn-mask.png);
  mask-image: url(../images/btn-mask.png);
  -webkit-mask-size: 3000% 100%;
  mask-size: 3000% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-animation: ani2 0.7s steps(29) forwards;
  animation: ani2 0.7s steps(29) forwards;
}
.defult-action-btn.explore-course-btn::after {
  background: var(--title-color);
}
.defult-action-btn:focus,
.defult-action-btn:hover,
.defult-action-btn:active,
.defult-call-btn:focus,
.defult-call-btn:hover,
.defult-call-btn:active,
.defult-tutor-btn:focus,
.defult-tutor-btn:hover,
.defult-tutor-btn:active {
  background: var(--title-color);
  color: var(--white-color);
}

.defult-action-btn:focus:after,
.defult-action-btn:hover:after,
.defult-action-btn:active:after,
.defult-call-btn:focus:after,
.defult-call-btn:hover:after,
.defult-call-btn:active:after,
.defult-tutor-btn:focus:after,
.defult-tutor-btn:hover:after,
.defult-tutor-btn:active:after {
  -webkit-animation: ani 0.7s steps(29) forwards !important;
  animation: ani 0.7s steps(29) forwards !important;
}

@-webkit-keyframes ani {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }

  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}

@keyframes ani {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }

  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}
@-webkit-keyframes ani2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }

  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}

@keyframes ani2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }

  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}
.defult-action-btn.style-border2 {
  border: 1px solid #ddd;
  color: var(--title-color);
  background: var(--theme-color);
  padding: 7px;
  min-width: 150px;
  min-height: 45px;
}
.defult-action-btn.style-border2:hover a {
  color: var(--white-color);
}
.defult-action-btn.style-border2:after {
  background: var(--white-color);
}
.background-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.space-top {
  padding-top: 75px;
}
.space-bottom {
  padding-bottom: 75px;
}
.title-area {
  margin-bottom: 40px;
}
.title-area span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--theme-color2);
  line-height: 24px;
  margin-top: -0.07em;
  position: relative;
}
.title-area h2 {
  font-size: 35px;
  line-height: 1.3;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--title-color);
}
.medi-services .row > div:nth-child(1),
.medi-services .row > div:nth-child(3) {
  background: #d6ffd1;
}
.medi-services .row > div:nth-child(1) .comon-quick h4,
.medi-services .row > div:nth-child(3) .comon-quick h4 {
  color: var(--theme-color);
}
.medi-services .row > div:nth-child(1) .comon-quick p,
.medi-services .row > div:nth-child(3) .comon-quick p {
  color: var(--theme-color);
}
.medi-services .row > div:nth-child(1) .comon-quick img,
.medi-services .row > div:nth-child(3) .comon-quick img {
  filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg)
    brightness(90%) contrast(90%);
}
.medi-services .row > div:nth-child(2) {
  background: #ffd1dc;
}
.medi-services .row > div:nth-child(2) .comon-quick h4 {
  color: var(--theme-color2);
}
.medi-services .row > div:nth-child(2) .comon-quick p {
  color: var(--theme-color2);
}
.medi-services .row > div:nth-child(2) .comon-quick img {
  filter: invert(57%) sepia(269%) saturate(600%) hue-rotate(345deg)
    brightness(55%) contrast(110%);
}
.course-card {
  border-radius: 24px;
  border: 1px solid var(--th-border-color3);
  padding: 24px;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: var(--white-color);
}
.course-card .box-img {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 32px;
}
.course-card .box-img img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.course-card .box-price {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--white-color);
  border-radius: 0 24px 0 0;
  color: var(--theme-color);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--title-font);
  letter-spacing: -0.02em;
  padding: 5px 23px 0 0;
  display: inline-block;
  margin-bottom: -0.3em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.course-card .box-price i {
  font-size: 14px;
}
.course-card .box-title {
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.417;
  color: var(--title-color);
}
.course-card .box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--smoke-color);
  border-radius: 8px;
  padding: 15px 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  margin-top: 16px;
}
.course-card .course-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.course-card .course-info .box-icon {
  font-size: 24px;
  color: var(--theme-color);
  display: -webkit-box;
  display: -ms-flexbox;
  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-item-align: center;
  align-self: center;
  height: 100%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.course-card .btn-wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 24px;
  display: flex;
}
.course-card .meta-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.course-card .meta-box .meta-thumb {
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  overflow: hidden;
  width: 45px;
}
.media-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.course-card .meta-box .box-name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: -0.1em;
  color: #000;
}
.course-card .meta-box .box-name a {
  color: var(--title-color);
}
.course-card .course-info .course-info-title {
  font-size: 14px;
  font-weight: 400;
  margin-top: -0.4em;
  display: block;
  color: #666;
}

.course-card .course-info .course-info-text {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: -0.3em;
  display: block;
}
.course-card:hover {
  border-color: var(--white-color);
  -webkit-box-shadow: 0px 4px 40px rgba(0, 17, 43, 0.08);
  box-shadow: 0px 4px 40px rgba(0, 17, 43, 0.08);
}

.course-card:hover .box-img img {
  -webkit-transform: scale(1.12) rotate(-2deg);
  transform: scale(1.12) rotate(-2deg);
}
.need-part-sec-1 {
  background-color: var(--theme-color) !important;
}
.experience-wrap {
  padding-top: 25px;
}
.experience-wrap .row .experience-border-wrap {
  border-right: 1px solid #ddd;
}
.experience-wrap .row .experience-border-wrap:last-child {
  border-right: none;
}
.experience-wrap .years-experience-card {
  text-align: center;
}
.experience-wrap .years-experience-card .counter-number-wrapper {
  color: green;
  font-weight: 600;
  font-size: 45px;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
}
.experience-wrap .years-experience-card .counter-title {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  margin-bottom: 0px;
}

.testimonial-card {
  position: relative;
  padding: 0 20px 20px;
  margin: 10px 10px;
}
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 30px 0 0 0;
  border-radius: 16px;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 70, 59, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 70, 59, 0.1);
  background: var(--white-color);
  z-index: -1;
}
.testimonial-card .box-icon {
  margin-bottom: 30px;
}
.testimonial-card .box-icon img {
  width: auto !important;
  filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg)
    brightness(90%) contrast(90%);
}
.testimonial-card .box-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  text-align: left;
  color: var(--title-color);
}
.testimonial-img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  border: 2px solid var(--theme-color);
  object-fit: cover;
}

.quote-icon {
  position: absolute;
  top: -15px;
  /* right: 0; */
  font-size: 40px;
  color: #000000;
  left: 0;
  margin-left: 76px;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  color: #000;
}

.testimonial-role {
  font-size: 13px;
  color: #777;
}

.testimonial-text {
  margin: 10px 0 15px;
  font-size: 15px;
  text-align: left;
  padding-left: 0px;
  letter-spacing: -0.02em;
  color: #556377;
  font-weight: 400;
}

.testimonial-card .testimonial-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.testimonial-card .testimonial-top .details {
  text-align: left;
}
.testimonial-card .testimonial-top .details .star {
  font-size: 14px;
  color: #556377 !important;
}
.testimonial-card .testi-review-wrap {
  color: #f4b400;
  margin-top: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 15px;
  text-align: left;
}
.testimonial-card .testi-review-wrap .rating-title {
  color: #556377 !important;
}
.process-card-wrap {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.process-card-wrap .process-card {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.process-card .box-number {
  font-size: 84px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1e1e1e;
  opacity: 0.08;
  line-height: 0.8;
}
.process-card .process-card-content {
  border-radius: 20px;
  background: #ffffff;
  -webkit-box-shadow: 10px 25px 100px rgba(30, 30, 30, 0.15);
  box-shadow: 10px 25px 100px rgb(207 206 206 / 29%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 35px 20px 20px;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fill-available;
}
.process-card .process-card-content .box-icon {
  width: 56px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #ebffe7;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.box-icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.process-card .box-title {
  letter-spacing: -0.02em;
  margin-bottom: 2px;
  font-weight: 400;
  font-size: 20px;
  color: #000;
}
.box-title {
  font-size: 24px;
  line-height: 1.417;
  font-weight: 600;
  margin-top: -0.32em;
}
.info-box .box-title {
  color: #fff;
}
.box-text {
  margin-bottom: -0.5em;
  font-size: 14px;
  font-weight: 300;
  color: #222;
}
.process-card:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.process-card:not(:last-child) {
  margin-bottom: 40px;
}
.process-wrap h2,
.testimonial-wrap h2 {
  font-size: 38px;
  font-weight: 700;
  font-family: "Exo", sans-serif;
  line-height: 1.2;
  margin-bottom: 25px;
}
.process-img-box {
  position: relative;
  margin-left: -50px;
  margin-top: -120px;
  margin-bottom: -75px;
}
.process-img-box:before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: var(--theme-color);
  opacity: 0.5;
  -webkit-filter: blur(125px);
  filter: blur(125px);
  z-index: -2;
  top: 58px;
  left: 92px;
}
.process-img-box:after {
  content: "";
  position: absolute;
  width: 548px;
  height: 548px;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
  top: 0;
  left: 33px;
}
.process-wrap {
  padding-left: 36px;
}
.team-card {
  text-align: center;
  padding: 0 20px 0;
  position: relative;
}
.team-card .box-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 34px;
  z-index: 1;
}
.team-card .box-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(35.03%, rgba(0, 17, 43, 0)),
    to(#00112b)
  );
  background: linear-gradient(180deg, rgba(0, 17, 43, 0) 35.03%, #00112b 100%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
}
.team-card .box-img img {
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.box-img canvas {
  position: absolute;
  top: 0;
  left: 0;
}
.team-card:hover .box-img:after {
  opacity: 1;
  visibility: visible;
}
.team-card .box-content {
  padding-bottom: 30px;
}
.team-card .box-title {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-top: -0.6em;
  margin-bottom: 0;
  z-index: 1;
  position: relative;
  color: #000;
}
.team-card .box-text {
  font-size: 16px;
  letter-spacing: -0.02em;
  z-index: 1;
  position: relative;
}
.team-card:after {
  content: "";
  position: absolute;
  inset: 146px 0 0;
  background: var(--white-color);
  border-radius: 16px;
  z-index: 0;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 70, 59, 0.1);
  box-shadow: 0px 10px 20px rgba(0, 70, 59, 0.1);
}
.cta-card2 {
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 0 75px 30px;
  overflow: hidden;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.cta-card2 .title-area {
  -ms-flex-item-align: center;
  align-self: center;
}
.cta-card2 .sec-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.357;
  white-space: nowrap;
}
.cta-card2 .box-thumb {
  position: relative;
  bottom: -75px;
  margin-top: -148px;
  margin-left: -10px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -ms-flex-item-align: self-end;
  align-self: self-end;
}
.cta-card2 .title-area .sub-title {
  font-weight: 400;
  font-size: 19px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.faq-img-box1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  width: 90%;
}
.faq-img-box1 .img1 {
  display: inline-block;
  overflow: hidden;
  border-radius: 24px;
  -ms-flex-item-align: self-start;
  align-self: self-start;
}
.th--hover-img {
  display: inline-block;
  position: relative;
}
.faq-img-box1 .img2 {
  display: inline-block;
  border-radius: 24px;
  overflow: hidden;
}
.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.faq-img-box1 .faq-counter-wrap {
  position: absolute;
  background: var(--white-color);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px;
  bottom: 20px;
  left: 0;
  gap: 16px;
  -webkit-box-shadow: 0px 10px 50px rgba(0, 70, 59, 0.1);
  box-shadow: 0px 10px 50px rgba(0, 70, 59, 0.1);
}
.jump {
  -webkit-animation: jumpAni 7s linear infinite;
  animation: jumpAni 7s linear infinite;
}
@keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.faq-img-box1 .faq-counter-wrap .box-title {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--theme-color2);
  margin-bottom: 0;
}
.faq-img-box1 .faq-counter-wrap .box-text {
  font-size: 14px;
  color: var(--theme-color);
}
.faq-wrapper .accordion-item {
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--white-color);
  text-align: left;
  position: relative;
  z-index: 1;
}
.faq-wrapper .accordion-item:not(:last-child) {
  margin-bottom: 24px;
}
.faq-wrapper .accordion-item .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}

.faq-wrapper .accordion-item .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}
.faq-wrapper .accordion-item .accordion-button {
  font-size: 18px;
  font-weight: 500;
  border: 0;
  color: var(--title-color);
  background-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 10px 50px rgba(0, 70, 59, 0.1);
  box-shadow: 0px 10px 50px rgba(0, 70, 59, 0.1);
  border-radius: 0;
  padding: 17px 24px 17px 24px;
  min-height: 56px;
  gap: 10px;
  margin-bottom: 0;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  letter-spacing: -0.02em;
}
.faq-wrapper .accordion-item .accordion-body {
  border: none;
  padding: 0 0 24px;
  margin: 0 24px;
}
.registration-form-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 0 15px 15px #f3f3f3;
  padding: 20px;
}
.registration-form-main .form .comment-respond {
  background-color: #e0e8f6;
  padding: 30px 30px;
  box-shadow: 0 0 10px 3px #e5e5e5;
  border-radius: 6px;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: -5px;
  font-weight: 500;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.registration-form-main .flat-contact-form.style2 input[type="text"],
.registration-form-main .flat-contact-form.style2 input[type="email"] {
  padding-left: 15px;
  position: static;
}
.errMsg {
  position: absolute;
  font-size: 12px;
  bottom: -17px;
}
.form-control {
  display: block;
  width: 100%;
  height: 44px;
  padding-left: 1rem;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  /* background: #fff; */
  /* background-image: none; */
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition:
    border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition:
    border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  transition:
    border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
}
.registration-form-main input[type="file"] {
  padding: 11px 12px;
}
.psa-btn {
  background-color: #730218;
  background-color: #730218;
  display: inline-flex;
  color: #fff;
  font-weight: 500;
  margin-top: 20px;
  border-radius: 4px;
  font-size: 15px;
  padding: 8px 20px;
  text-transform: uppercase;
  border: 2px solid #730218;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  outline: none;
  align-items: center;
  justify-content: center;
}
.form-group {
  margin-bottom: 15px;
  position: relative;
}
.gender-btn {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}
.registration-form-main .form .comment-respond h3 {
  font-size: 16px;
  color: #646464;
  margin-bottom: 12px;
}
.our-courses-all .course-card {
  background: #f7f7f7;
  margin-bottom: 20px;
}
.banner-image-color img {
  width: 100%;
  min-height: 766px;
  object-fit: cover;
}
.banner-text-cus h1 span.d-block {
  color: darkblue;
}
.banner-part:after {
  background-color: #ffffff6c !important;
}
.banner-text-cus p {
  font-size: 18px;
  letter-spacing: 1.2px;
  color: #000000;
}
.why-wrap2 .left-text-div h5 {
  color: #000;
  margin-bottom: 2px;
  font-weight: 600;
}
.why-wrap2 .left-text-div p {
  color: #000000;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.4;
}
.comon-div-list h2 {
  background: #ffe9eb;
}
.discount-for-students-wrapper {
  position: relative;
  overflow: hidden;
}
.discount-for-students-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  mix-blend-mode: hue;
  background-color: var(--theme-color);
}
.bg-mask {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.cta-img3-1 {
  max-width: 400px;
  bottom: 0;
  position: absolute;
  z-index: 1;
  right: 180px;
}
.cta-img3-1 .cta-bg-shape3-1 {
  position: absolute;
  background: #ffbf00;
  inset: 134px -169px 0 -56px;
  z-index: -1;
}
.cta-img3-1 .cta-bg-shape3-2 {
  position: absolute;
  background: var(--theme-color);
  inset: 152px -151px 0 -42px;
  z-index: -1;
}
.cta-content-wrap {
  position: relative;
  z-index: 1;
}
.cta-content-wrap .title-area .sec-title {
  color: #fff;
  font-size: 41px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 45px;
}
.cta-content-wrap .title-area .sec-title span {
  display: inline;
  color: #ffbf00;
  font-size: 41px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 45px;
}
.cta-content-wrap .title-area p {
  margin-top: 30px;
  font-weight: 600;
  margin-bottom: 0 !important;
  font-size: 16px;
  color: #fff;
}
.cta-content-wrap .title-area p span {
  display: inline;
  color: var(--theme-color);
}
.footer-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.footer-layout1 {
  background: rgba(0, 0, 0, 0);
}
.footer-layout1 .subscribe-box {
  margin-bottom: -150px;
  position: relative;
  z-index: 2;
  border-radius: 40px;
  text-align: center;
  padding: 60px;
  overflow: hidden;
  background-color: var(--theme-color);
}
.subscribe-box {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
}
.shape-mockup {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.shape-mockup {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.footer-layout1 .widget-area {
  padding-bottom: 70px;
  padding-top: calc(120px + 150px);
  position: relative;
  z-index: 1;
}
.footer-layout1 .widget-area:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 6, 5, 0.7);
  z-index: -1;
}
.footer-layout1 .widget-area:after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--theme-color);
  mix-blend-mode: hue;
  z-index: -2;
}
.footer-widget,
.footer-widget .widget {
  padding: 0;
  border: none;
  padding-bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.th-widget-about.style2 {
  max-width: 387px;
}
.th-widget-about .about-logo {
  margin-bottom: 32px;
  width: 275px;
  background: #ffffff;
  padding: 4px;
  border-radius: 5px;
}

.th-widget-about .about-text {
  margin-bottom: 25px;
  margin-top: -0.5em;
  letter-spacing: -0.02em;
  font-size: 17px;
  width: 85%;
  font-weight: 300;
}

.footer-widget .widget_title {
  max-width: 270px;
  color: var(--white-color);
  font-weight: 400;
  text-transform: capitalize;
  margin: -0.12em 0 40px 0;
  padding: 0;
  border: 0;
  font-size: 22px;
}
.footer-widget.widget_nav_menu .menu {
  margin-bottom: -4px;
  margin-top: -4px;
  margin: 0 0 -20px 0;
  list-style: none;
  padding: 0;
}
.widget_nav_menu li {
  display: block;
  position: relative;
}
.footer-widget.widget_nav_menu a {
  font-size: 15px;
  font-weight: 400;
  padding: 0 0 0 20px;
  margin-bottom: 25px;
  display: block;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  position: relative;
  color: #ffffff;
}
.footer-widget.widget_nav_menu a:before {
  content: "";
  position: absolute;
  background-image: url(../images/footer-arrow-right.png);
  width: 18px;
  height: 14px;
  left: 0;
  top: 4px;
  opacity: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-size: 14px 14px;
  background-repeat: no-repeat;
}
.footer-widget.widget_nav_menu a:hover {
  color: var(--theme-color);
}

.th-widget-about.style2 {
  max-width: 387px;
}
.copyright-wrap {
  padding: 15px 0;
  background-size: 100% auto;
  background-color: var(--theme-color);
}
.copyright-wrap .copyright-text a {
  font-size: 16px;
  color: #000;
}
.copyright-wrap .copyright-text {
  font-size: 16px;
  margin: 0px;
}
.footer-links ul {
  padding: 0;
  margin: 0;
  list-style-type: disc;
}
.footer-links li:after {
  content: "";
  height: 1px;
  width: 10px;
  background-color: #fff;
  position: relative;
  display: inline-block;
  margin: 0;
}
.footer-links li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 12px;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.footer-links li:last-child::after {
  content: none;
}
.footer-links a {
  font-family: inherit;
  color: var(--white-color);
}
.info-box.style2 .box-text {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0px;
  color: #d3dbe2;
}
.info-box.style2 .box-link {
  color: var(--white-color);
  font-size: 15px;
  font-weight: 300;
  display: block;
  margin-top: 0px;
}
.th-widget-contact.style2 .box-title {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 20px;
}
.footer-layout1 .subscribe-box .subscribe-box_title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.footer-layout1 .subscribe-box .subscribe-box_text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 5px;
}
.footer-layout1 .subscribe-box .newsletter-form {
  max-width: 584px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 34px;
  background: var(--white-color);
  border-radius: 50px;
  padding: 4px;
  display: flex;
  gap: 20px 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.newsletter-form .form-group {
  margin-bottom: 0;
  width: 100%;
}
.footer-layout1 .subscribe-box .newsletter-form .th-btn {
  height: 56px;
  background: var(--theme-color2);
  color: var(--white-color);
  flex: none;
  padding: 24px 40px;
  min-width: auto;
  -webkit-box-flex: 0;
  position: relative;
  z-index: 2;
  vertical-align: middle;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 0.7;
  min-height: 56px;
  border-radius: 50px;
  -webkit-box-pack: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.footer-layout1 .subscribe-box .newsletter-form .form-group input {
  height: 56px;
  border: 0;
  color: var(--title-color);
  padding-right: 0;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}
footer .row > div:nth-child(2) {
  display: inline;
}
.th-social.style2 a {
  border: 1px solid #d3dbe2;
  font-size: 14px;
  box-shadow: 0px 2px 14px rgba(4, 6, 66, 0.1);
  display: inline-flex;
  text-align: center;
  margin-right: 15px;
  border-radius: 50%;
  padding: 7px;
  color: #fff;
}
.why-img-box2 .img1 img {
  border-radius: 10px;
}
.service-more-btn a {
  background-color: var(--theme-color);
  color: var(--white-color);
}
footer p {
  margin-top: 0px;
}
.info-box .box-details {
  margin-bottom: 25px;
}
/*about page*/
.img-box1 {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 101px 164px 63px 145px;
}
.img-box1 .img1 .thumb {
  display: block;
}
.img-box1 .img1 img {
  -o-object-fit: cover;
  object-fit: cover;
}
.img-box1 .img2 {
  border: 6px solid var(--white-color);
  border-radius: 30px;
  overflow: hidden;
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
}
.img-box1 .img3 {
  position: absolute;
  left: 0;
  top: 0;
  border: 6px solid var(--white-color);
  border-radius: 30px;
  overflow: hidden;
}
.img-box1 .about-shape1-1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.counter-wrap4 {
  display: -webkit-box;
  display: -ms-flexbox;
  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;
  border-radius: 20px;
  padding: 0 80px;
  background: var(--white-color);
  -webkit-box-shadow: 0px 10px 50px rgba(0, 30, 66, 0.08);
  box-shadow: 0px 10px 50px rgba(0, 30, 66, 0.08);
  z-index: 1;
  position: relative;
}
.counter-card {
  text-align: center;
}
.media-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.counter-card .box-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 0px;
  margin-top: -0.2em;
  letter-spacing: -0.02em;
}
.counter-card .box-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 0px;
  margin-top: -0.2em;
  letter-spacing: -0.02em;
}
.text-theme {
  color: var(--theme-color) !important;
}
.counter-card .box-text {
  font-weight: 600;
  font-size: 18px;
  color: #556377;
  letter-spacing: -0.02em;
  margin-top: 5px;
  margin-bottom: -0.4em;
}
.counter-wrap4 .divider {
  width: 2px;
  height: 230px;
  background: rgba(211, 219, 226, 0.3);
}
.feature-card {
  background: var(--white-color);
  border: 1px solid #d3dbe2;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.feature-card .box-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--theme-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.feature-card .box-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.feature-card .box-text {
  letter-spacing: -0.02em;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.title-area h2.sec-title span {
  font-weight: 400 !important;
  font-size: 35px;
  line-height: 1.3;
  display: inline;
  color: #fff;
}
.bg-repeat {
  background-size: auto;
  background-repeat: repeat;
}
.whychooseus-wrapper {
  background-color: #f0fbf4;
}
.whychooseus-wrapper ul {
  display: inline-block;
}
.whychooseus-wrapper ul li {
  float: inline-end;
  width: 50%;
}
.about-tag {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    background: var(--white-color);
    width: 260px;
    height: 260px;
}
.img-box1 .about-tag {
  position: absolute;
  right: 0;
  top: 0;
}
.about-tag:before {
    content: "";
    position: absolute;
    inset: 50px;
    border-radius: 50%;
    background: #f0fbf2;
    z-index: 1;
}
.about-experience-tag {
    display: inline-block;
    height: 208px;
    width: 208px;
    border-radius: 50%;
    z-index: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-color2);
    line-height: normal;
    text-align: center;
    -webkit-animation: spin 20s linear infinite;
    animation: spin 20s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -104px;
    margin-top: -104px;
}
.about-experience-tag span {
    --rotate-letter: 7.8deg;
    height: 108px;
    position: absolute;
    width: 20px;
    left: 42%;
    top: -3px;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: rotate(var(--rotate-letter));
    transform: rotate(var(--rotate-letter));
}
.about-experience-tag span.char2 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 2));
    transform: rotate(calc(var(--rotate-letter) * 2))
}

.about-experience-tag span.char3 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 3));
    transform: rotate(calc(var(--rotate-letter) * 3))
}

.about-experience-tag span.char4 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 4));
    transform: rotate(calc(var(--rotate-letter) * 4))
}

.about-experience-tag span.char5 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 5));
    transform: rotate(calc(var(--rotate-letter) * 5))
}

.about-experience-tag span.char6 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 6));
    transform: rotate(calc(var(--rotate-letter) * 6))
}

.about-experience-tag span.char7 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 7));
    transform: rotate(calc(var(--rotate-letter) * 7))
}

.about-experience-tag span.char8 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 8));
    transform: rotate(calc(var(--rotate-letter) * 8))
}

.about-experience-tag span.char9 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 9));
    transform: rotate(calc(var(--rotate-letter) * 9))
}

.about-experience-tag span.char10 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 10));
    transform: rotate(calc(var(--rotate-letter) * 10))
}

.about-experience-tag span.char11 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 11));
    transform: rotate(calc(var(--rotate-letter) * 11))
}

.about-experience-tag span.char12 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 12));
    transform: rotate(calc(var(--rotate-letter) * 12))
}

.about-experience-tag span.char13 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 13));
    transform: rotate(calc(var(--rotate-letter) * 13))
}

.about-experience-tag span.char14 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 14));
    transform: rotate(calc(var(--rotate-letter) * 14))
}

.about-experience-tag span.char15 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 15));
    transform: rotate(calc(var(--rotate-letter) * 15))
}

.about-experience-tag span.char16 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 16));
    transform: rotate(calc(var(--rotate-letter) * 16))
}

.about-experience-tag span.char17 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 17));
    transform: rotate(calc(var(--rotate-letter) * 17))
}

.about-experience-tag span.char18 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 18));
    transform: rotate(calc(var(--rotate-letter) * 18))
}

.about-experience-tag span.char19 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 19));
    transform: rotate(calc(var(--rotate-letter) * 19))
}

.about-experience-tag span.char20 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 20));
    transform: rotate(calc(var(--rotate-letter) * 20))
}

.about-experience-tag span.char21 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 21));
    transform: rotate(calc(var(--rotate-letter) * 21))
}

.about-experience-tag span.char22 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 22));
    transform: rotate(calc(var(--rotate-letter) * 22))
}

.about-experience-tag span.char23 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 23));
    transform: rotate(calc(var(--rotate-letter) * 23))
}

.about-experience-tag span.char24 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 24));
    transform: rotate(calc(var(--rotate-letter) * 24))
}

.about-experience-tag span.char25 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 25));
    transform: rotate(calc(var(--rotate-letter) * 25))
}

.about-experience-tag span.char26 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 26));
    transform: rotate(calc(var(--rotate-letter) * 26))
}

.about-experience-tag span.char27 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 27));
    transform: rotate(calc(var(--rotate-letter) * 27))
}

.about-experience-tag span.char28 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 28));
    transform: rotate(calc(var(--rotate-letter) * 28))
}

.about-experience-tag span.char29 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 29));
    transform: rotate(calc(var(--rotate-letter) * 29))
}

.about-experience-tag span.char30 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 30));
    transform: rotate(calc(var(--rotate-letter) * 30))
}

.about-experience-tag span.char31 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 31));
    transform: rotate(calc(var(--rotate-letter) * 31))
}

.about-experience-tag span.char32 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 32));
    transform: rotate(calc(var(--rotate-letter) * 32))
}

.about-experience-tag span.char33 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 33));
    transform: rotate(calc(var(--rotate-letter) * 33))
}

.about-experience-tag span.char34 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 34));
    transform: rotate(calc(var(--rotate-letter) * 34))
}

.about-experience-tag span.char35 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 35));
    transform: rotate(calc(var(--rotate-letter) * 35))
}

.about-experience-tag span.char36 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 36));
    transform: rotate(calc(var(--rotate-letter) * 36))
}

.about-experience-tag span.char37 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 37));
    transform: rotate(calc(var(--rotate-letter) * 37))
}

.about-experience-tag span.char38 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 38));
    transform: rotate(calc(var(--rotate-letter) * 38))
}

.about-experience-tag span.char39 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 39));
    transform: rotate(calc(var(--rotate-letter) * 39))
}

.about-experience-tag span.char40 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 40));
    transform: rotate(calc(var(--rotate-letter) * 40))
}

.about-experience-tag span.char41 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 41));
    transform: rotate(calc(var(--rotate-letter) * 41))
}

.about-experience-tag span.char42 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 42));
    transform: rotate(calc(var(--rotate-letter) * 42))
}

.about-experience-tag span.char43 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 43));
    transform: rotate(calc(var(--rotate-letter) * 43))
}

.about-experience-tag span.char44 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 44));
    transform: rotate(calc(var(--rotate-letter) * 44))
}

.about-experience-tag span.char45 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 45));
    transform: rotate(calc(var(--rotate-letter) * 45))
}

.about-experience-tag span.char46 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 46));
    transform: rotate(calc(var(--rotate-letter) * 46))
}

.about-experience-tag span.char47 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 47));
    transform: rotate(calc(var(--rotate-letter) * 47))
}

.about-experience-tag span.char48 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 48));
    transform: rotate(calc(var(--rotate-letter) * 48))
}

.about-experience-tag span.char49 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 49));
    transform: rotate(calc(var(--rotate-letter) * 49))
}

.about-experience-tag span.char50 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 50));
    transform: rotate(calc(var(--rotate-letter) * 50))
}

.about-experience-tag span.char51 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 51));
    transform: rotate(calc(var(--rotate-letter) * 51))
}

.about-experience-tag span.char52 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 52));
    transform: rotate(calc(var(--rotate-letter) * 52))
}

.about-experience-tag span.char53 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 53));
    transform: rotate(calc(var(--rotate-letter) * 53))
}

.about-experience-tag span.char54 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 54));
    transform: rotate(calc(var(--rotate-letter) * 54))
}

.about-experience-tag span.char55 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 55));
    transform: rotate(calc(var(--rotate-letter) * 55))
}

.about-experience-tag span.char56 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 56));
    transform: rotate(calc(var(--rotate-letter) * 56))
}

.about-experience-tag span.char57 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 57));
    transform: rotate(calc(var(--rotate-letter) * 57))
}

.about-experience-tag span.char58 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 58));
    transform: rotate(calc(var(--rotate-letter) * 58))
}

.about-experience-tag span.char59 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 59));
    transform: rotate(calc(var(--rotate-letter) * 59))
}

.about-experience-tag span.char60 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 60));
    transform: rotate(calc(var(--rotate-letter) * 60))
}

.about-experience-tag span.char61 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 61));
    transform: rotate(calc(var(--rotate-letter) * 61))
}

.about-experience-tag span.char62 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 62));
    transform: rotate(calc(var(--rotate-letter) * 62))
}

.about-experience-tag span.char63 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 63));
    transform: rotate(calc(var(--rotate-letter) * 63))
}

.about-experience-tag span.char64 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 64));
    transform: rotate(calc(var(--rotate-letter) * 64))
}

.about-experience-tag span.char65 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 65));
    transform: rotate(calc(var(--rotate-letter) * 65))
}

.about-experience-tag span.char66 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 66));
    transform: rotate(calc(var(--rotate-letter) * 66))
}

.about-experience-tag span.char67 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 67));
    transform: rotate(calc(var(--rotate-letter) * 67))
}

.about-experience-tag span.char68 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 68));
    transform: rotate(calc(var(--rotate-letter) * 68))
}

.about-experience-tag span.char69 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 69));
    transform: rotate(calc(var(--rotate-letter) * 69))
}

.about-experience-tag span.char70 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 70));
    transform: rotate(calc(var(--rotate-letter) * 70))
}

.about-experience-tag span.char71 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 71));
    transform: rotate(calc(var(--rotate-letter) * 71))
}

.about-experience-tag span.char72 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 72));
    transform: rotate(calc(var(--rotate-letter) * 72))
}

.about-experience-tag span.char73 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 73));
    transform: rotate(calc(var(--rotate-letter) * 73))
}

.about-experience-tag span.char74 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 74));
    transform: rotate(calc(var(--rotate-letter) * 74))
}

.about-experience-tag span.char75 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 75));
    transform: rotate(calc(var(--rotate-letter) * 75))
}

.about-experience-tag span.char76 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 76));
    transform: rotate(calc(var(--rotate-letter) * 76))
}

.about-experience-tag span.char75 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 75));
    transform: rotate(calc(var(--rotate-letter) * 75))
}

.about-experience-tag span.char76 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 76));
    transform: rotate(calc(var(--rotate-letter) * 76))
}

.about-experience-tag span.char77 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 77));
    transform: rotate(calc(var(--rotate-letter) * 77))
}

.about-experience-tag span.char78 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 78));
    transform: rotate(calc(var(--rotate-letter) * 78))
}

.about-experience-tag span.char79 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 79));
    transform: rotate(calc(var(--rotate-letter) * 79))
}

.about-experience-tag span.char80 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 80));
    transform: rotate(calc(var(--rotate-letter) * 80))
}

.about-experience-tag span.char81 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 81));
    transform: rotate(calc(var(--rotate-letter) * 81))
}

.about-experience-tag span.char82 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 82));
    transform: rotate(calc(var(--rotate-letter) * 82))
}

.about-experience-tag span.char83 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 83));
    transform: rotate(calc(var(--rotate-letter) * 83))
}

.about-experience-tag span.char84 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 84));
    transform: rotate(calc(var(--rotate-letter) * 84))
}

.about-experience-tag span.char85 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 85));
    transform: rotate(calc(var(--rotate-letter) * 85))
}

.about-experience-tag span.char86 {
    -webkit-transform: rotate(calc(var(--rotate-letter) * 86));
    transform: rotate(calc(var(--rotate-letter) * 86))
}
.img-box1 .about-tag .year-counter {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
}
.img-box1 .about-tag .year-counter .box-title
 {
    font-size: 40px;
    font-weight: 700;
    color: var(--theme-color);
    letter-spacing: -0.02em;
}
.img-box1 .about-tag .year-counter .box-title {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--title-font);
    color: var(--theme-color);
    letter-spacing: -0.02em;
}
.img-box1 .about-tag .year-counter .box-text {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--title-font);
    color: var(--title-color);
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: -0.4em;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-top: -0.3em;
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@media only screen and (max-width: 912px) {
  header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9;
  }
  .top-head .top-menu {
    display: none;
  }
  .mn-head .navbar-light .navbar-toggler {
    color: rgb(115 2 24);
    border-color: rgba(0, 0, 0, 0.1);
  }
  .m-logo-cus {
    padding: 0;
  }
  .top-head img {
    margin: inherit !important;
    width: 85px;
  }
  .fixed-menu .header-fixed-logo-cus {
    display: none;
  }
  .sub-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: absolute;
    bottom: 0;
  }
  .banner-part {
    height: 250px;
    margin-top: 100px;
  }
  .top-head .header-btns-cus {
    justify-content: flex-start;
  }
}
@media (max-width: 820px) {
  .sub-banner {
    top: 50% !important;
  }
}
@media only screen and (max-width: 767px) {
  .sub-page-banner {
    height: 180px;
    margin-top: 53px;
    padding: 0px !important;
  }
  .sub-banner {
    width: 100% !important;
  }
  .banner-part:after {
    background-color: #ffffffab !important;
  }
  .xs-order-cus-main {
    display: flex;
    flex-direction: column-reverse;
  }
  .top-head {
    position: relative;
    padding-bottom: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
  }
  .call-action-btn {
    display: none;
  }
  .experience-wrap .years-experience-card {
    padding-bottom: 20px;
  }
  .banner-part {
    height: 250px;
    margin-top: 61px;
  }
  .course-card {
    margin-bottom: 20px;
  }
  .process-img-box {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .process-img-box:after {
    width: 310px;
    height: 310px;
  }
  .process-img-box:before {
    width: 230px;
    height: 230px;
  }
  .process-card .process-card-content {
    padding: 10px 10px 10px 10px;
    gap: 5px;
  }
  .process-card .process-card-content .box-icon {
    width: 40px;
    height: 40px;
  }
  .process-wrap {
    padding-left: 0px;
    padding-top: 20px;
  }
  .process-card-wrap .process-card {
    gap: 10px;
  }
  .process-card:not(:last-child) {
    margin-bottom: 30px;
  }
  .process-card .box-title {
    font-size: 16px;
  }
  .box-text {
    font-size: 12px;
  }
  .process-card .box-number {
    font-size: 50px;
    line-height: 0.8;
  }
  .team-card {
    margin-bottom: 25px;
  }
  .process-img-box {
    margin-bottom: 30px;
  }
  .cta-card2 {
    margin-bottom: 25px;
    position: relative;
  }
  .cta-card2 .title-area {
    z-index: 2;
  }
  .cta-card2 .box-thumb {
    position: absolute;
  }
  .medi-services {
    margin-bottom: 49px;
  }
  .process-wrap h2,
  .testimonial-wrap h2 {
    font-size: 30px;
  }
  .space-top {
    padding-top: 40px;
  }
  .space-bottom {
    padding-bottom: 40px;
  }
  .why-wrap2 {
    padding-top: 20px;
  }
  .cta-img3-1 {
    display: none;
  }
}
