@font-face {
  font-family: "Roboto-Regular";
  src: url(../fonts/Roboto-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: "Roboto-Medium";
  src: url(../fonts/Roboto-Medium.ttf);
}

@font-face {
  font-family: "Roboto-Bold";
  src: url(../fonts/Roboto-Bold.ttf);
}

@font-face {
  font-family: "roboto-light";
  src: url(../fonts/Roboto-Light.ttf);
}

@font-face {
  font-family: "Roboto-Black";
  src: url(../fonts/Roboto-Black.ttf);
}

@font-face {
  font-family: "Intro";
  src: url(../fonts/Intro.otf);
}
@font-face {
  font-family: "Intro-Black-Regular";
  src: url("../fonts/Intro Black Regular.ttf");
}

@font-face {
  font-family: "montserrat-extra";
  src: url(../fonts/Montserrat-ExtraBold.otf);
}
:root {
  --common-black: #333;
  --violet: #6354a5;
  --white: #fff;
  --font-family: "Roboto", sans-serif;
  --logo-color: #064f91;
  --border: 0.1rem solid rgba(0, 0, 0, 0.1);
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --troppy-section: #e5e5e5;
  --input-border: 1px solid #ccc;
  --common-btn-bg: #ee8437;
  --common-btn-border: #ee8437 2px solid;
  --tab-bottom-color: #3ca05e;
  --basalt-color: rgba(0, 0, 0, 0.85);
  --footer-bg: #26252f;
  --h3-color: #656471;
  --why-learn-box-1: #47b9dd;
  --why-learn-box-2: #edc32a;
  --why-learn-box-3: #aa6ad0;
  --why-learn-box-4: #8cc754;
  --why-learn-box-5: #4d5fe0;
  --why-learn-box-6: #cb5367;
  --bar-div-bg-1: #32cf9f;
  --bar-div-bg-2: #da65a2;
  --bar-div-bg-3: #4eb0d2;
  --comparision-bg: #f9fafb;
  --highlight-box-header-bg: #1e599d;
  --speed-learning-app-bg: #151532;
  --call-back-section: #4fb07b;
  --call-back-h1: #bde5cf;
  --bg-plantain: #2c574d;
  --bg-evg-sunset: #edd16d;
  --bg-grayish-violet: #855d99;
  --bg-athens-gray: #f9fafb;

  --font-default: "Roboto-Regular";
  --font-regular: "Roboto-Regular";
  --font-medium: "Roboto-Medium";
  --font-bold: "Roboto-Bold";
  --font-light: "roboto-light";
  --font-back: "Roboto-Black";

  --font-intro: "Intro";
  --font-introBlackRegular: "Intro-Black-Regular";
  --font-montserratextra: "montserrat-extra";

  /* custom variables */
  --right: 0;
  --enquire-visibility: hidden;
}

/* scroll indicator */
.scroll-indicator-container {
  width: 100%;
  height: 5px !important;
}
.scroll-indicator-bar {
  background: #199fff !important;
  width: 0%;
  height: 100% !important;
  box-shadow: 0 1px 2px #199fff;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  /* text-transform: capitalize; */
  /* transition: all 0.2s linear; */
}
.SmoothScroll {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
}
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 65.5% !important;
  overflow-x: hidden;
  scroll-padding-top: 7rem;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  -webkit-overflow-scrolling: auto;
}

ul {
  list-style: none;
}

li {
  padding-top: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none !important;
  color: var(--common-black);
  cursor: pointer;
}

h1 {
  font-size: 28px;
  font-family: var(--font-bold);
}

h3 {
  font-size: 15px;
  color: var(--h3-color);
  font-family: var(--font-medium);
}

.display-block {
  padding-top: 70px;
}

.banner-top {
  padding-top: 95px;
}

.banner-top.active {
  /* padding-top: 60px; */
  padding-top: 28px;
}

/* container */
.container-common {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
}

.custom-containor {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.btn-common {
  padding: 0.8rem 2rem;
  background-color: transparent;
  border: var(--violet) 2px solid;
  border-radius: 0.6rem;
  font-size: 1.7rem;
}

.btn-common:hover {
  background: var(--violet);
  color: var(--white);
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

#menu-btn {
  font-size: 24px;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  display: none;
}

/* btn */
.header-btn {
  padding: 0.7rem 2rem;
  font-size: 1.7rem;
  background: transparent;
  border: var(--violet) 2px solid;
  border-radius: 0.7rem;
}

.header-btn:hover {
  background: var(--violet);
  color: var(--white);
}

label {
  display: block;
  font-size: 12px;
}

.heading {
  text-align: center;
}

p span,
h1 span {
  display: block;
}

.heading h2 {
  font-size: 36px;
  line-height: 1.2;
  font-family: var(--font-bold);
}

.heading p {
  font-family: var(--font-regular);
  font-size: 20px;
  line-height: 1.5;
  margin-top: 12px;
}

.common-div {
  display: flex;
  gap: 1%;
  justify-content: center;
}

.all-common-div {
  padding: 80px 0;
}

/*  SECTIONS  */
.section {
  clear: both;
  padding: 0px;
  margin: 0px;
}

.strong {
  font-family: var(--font-bold);
  font-size: 16px;
  letter-spacing: -0.5px;
}

.btn {
  outline: none !important;
  /* border: none !important; */
}

/* section {
  transition: all 0.5s;
} */

.copywrite-footer-left p {
  cursor: pointer;
}
.copywrite-footer-left p:hover {
  color: #32cf9f;
}

/* sweet alert */
.swal2-popup {
  display: none;
  position: relative;
  box-sizing: border-box;
  grid-template-columns: minmax(0, 100%);
  width: 500px !important;
  max-width: 100%;
  padding: 0 0 1.25em;
  border: none;
  border-radius: 5px;
  background: #fff;
  color: #545454;
  font-family: inherit;
  font-size: 1rem;
}
.swal2-title {
  font-size: 30px !important;
}
.swal2-html-container {
  font-size: 2rem !important;
}
.swal2-styled.swal2-confirm {
  width: 250px;
  height: 50px;
  font-size: 18px !important;
  display: flex;
  align-items: center;
  outline: none !important;
  border: none !important;
}

/* after js corrections */
.form-container {
  padding-top: 50px;
}
.form-container label {
  font-family: var(--font-medium);
  font-size: 13px;
  letter-spacing: -0.375px;
}
input {
  font-size: 14px;
  line-height: 20px;
  border: 1px solid #ccc;
  width: 100%;
  height: 45px;
  border-radius: 4px;
  padding: 0 10px !important;
  font-family: var(--font-regular);
  letter-spacing: -0.46875px;
  color: #26252f;
  margin: 5px 0;
}
.form-group {
  margin-bottom: 15px;
  width: 70%;
  margin: auto;
  text-align: start;
  padding: 10px 0;
}
.payment-main .form-group {
  width: 75%;
}
input,
.chosen-search input,
.form-group input {
  color: #26252f;
  font-family: var(--font-regular);
}
textarea,
input::placeholder {
  color: #757575 !important;
}
.feedcont {
  width: 70%;
  margin: auto;
  text-align: start;
  padding-bottom: 40px;
}
textarea {
  height: 170px !important;
  line-height: inherit;
  width: 100%;
  border: 1px solid #ccc !important;
  padding: 10px !important;
  resize: none;
}
.feedbtn {
  width: 70%;
  height: 50px;
  border-radius: 4px;
  outline: none;
  border: none;
  background: var(--common-btn-bg);
  color: var(--white);
  font-family: var(--font-bold);
  font-size: 16px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

/* bug */
.email-small {
  text-transform: lowercase;
}
.address-box-div p .span-straight,
.address-div p .span-straight {
  display: contents;
  font-size: 14px;
  font-family: var(--font-regular);
  letter-spacing: -0.4375px;
}
.chosen-container-single .chosen-single {
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  padding: 0 10px !important;
}
.chosen-container-single .chosen-single span {
  font-size: 15px !important;
  line-height: 20px;
  padding: 10px 0;
  font-family: var(--font-regular) !important;
  letter-spacing: -0.46875px !important;
  color: #b1b1b1;
}
.chosen-container-single .chosen-drop {
  position: absolute !important;
}

.email-input {
  text-transform: lowercase;
}

/* page loader */
.speed-page-loader {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
}
.speed-loader--logo {
  width: 100%;
  max-width: 200px;
}
.speed-page-loader.load-completed {
  transition: 0.2s;
  display: none;
}

/* course section common */

.step-1:hover {
  transform: scale(1.05);
  background: #e4b333;
  color: white;
  border: navajowhite;
  transition: all 0.1s ease;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.step-1:hover h3 {
  color: #3c4586;
}
.step-1:hover span {
  transition: none !important;
}
/* .step-1:hover.arrow{
	filter: opacity(1) drop-shadow(0 0 0 white);
} */

.th-button button {
  width: 70% !important;
}
.month-3 p {
  padding: 15px 0;
  text-align: start;
  font-weight: 800;
  margin-left: 24px;
}
.th-d li {
  text-align: center;
  list-style-type: none;
  text-align: start;
  list-style-type: none;
  padding-left: 23px;
  font-family: var(--font-regular);
  font-size: 15px;
  line-height: 19px;
  letter-spacing: -0.444444px;
  padding-top: 0px;
}
.th-d li::before {
  content: ".";
  margin-right: 12px;
  font-size: 41px;
  font-weight: 800;
  padding: 0;
  position: relative;
  top: -3px;
}
.new-1 {
  width: 100%;
}
.new-1 h3 {
  text-align: start;
  padding-top: 31px;
  margin-left: 25px;
}
.m-3-t {
  display: block !important;
  text-align: center !important;
}

.mt-100 {
  margin-top: 100px;
}
.nevitha-text-1 p {
  padding: 10px 0;
}

.cource_list {
  cursor: pointer;
}

.subjects-set {
  overflow: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  max-height: 109px;
  min-height: 154px;
}

.subjects-set::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(105, 105, 105, 0.2);
  border-radius: 10px;
  background-color: #ffffff;
}

.subjects-set::-webkit-scrollbar {
  width: 6px;
  background-color: #ffffff;
  overflow: visible;
}

.subjects-set::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(117, 117, 117, 0.2);
  background-color: #c6c6c6;
}

button.npfWidgetButton {
  /* transform: rotate(270deg); */
  /* position: fixed !important; */
  /* top: 45%; */
  /* z-index: 999; */
  cursor: pointer;
  background-color: #fff;
  border-color: #fff;
  border-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.33;
  padding: 8px 12px;
  font-weight: bold;
  cursor: pointer;
  border: 0;
}
/* button.npfWidgetButton.widget-btn--right {
  transform: translateX(37%) rotate(270deg);
  right: 0;
}
button.npfWidgetButton.widget-btn--left {
  left: 0;
  transform: translateX(-40%) rotate(270deg);
} */
button.npfWidgetButton {
  background-color: var(--common-btn-bg) !important;
  border: none;
  padding: 6px 15px;
  color: #fff;
  border-radius: 4px;
  position: relative;
  z-index: 11;
  cursor: pointer;
  min-width: 201px;
}
.npfPopup .npfTitle {
  text-align: center;
  padding: 12px;
  padding-left: 50px;
  border-radius: 8px;
  background-color: #fff;
}
/* sticky container */
.sticky-container {
  position: fixed;
  top: 45%;
  right: var(--right);
  visibility: var(--enquire-visibility);
  z-index: 9999;
  /* transform: rotate(-90deg); */
}
.sticky-container:hover {
  right: 0;
  transition: 0.5s;
}
button.callout-btn {
  transform: rotate(-90deg);
  transform-origin: left bottom;
  width: 142px;
  top: 141px;
  position: relative;
  background-color: #3bd3ff;
  padding: 6px 15px;
  border-radius: 4px 4px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.slideout {
  padding: 24px;
  background-color: rgba(170, 170, 170, 0.5);
  /* transform: rotate(90deg); */
  transform-origin: center;
  /* aspect-ratio: 1; */

  display: flex;
  align-items: center;
}
.slideout__container {
  height: calc(142px - 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slideout__container > p {
  align-self: center;
  width: 100%;
}
div.npfPopup [id^="popup-in"] {
  background: #dddddd42 !important;
}

.w-100 {
  width: 100%;
}
.feedback-popup-body iframe {
  width: 100%;
}
.close {
  font-size: 33px;
  opacity: 1;
  margin: 10px 15px 0 0;
}
.left-second-1 li {
  font-size: 15px;
  font-family: var(--font-regular);
  list-style-type: none;
  padding: 9px 14px;
  cursor: pointer;
  border-right: 3px solid transparent;
}

.left-second-1 .left-second-1-active {
  background: #efefef;
  border-right: 3px solid var(--bar-div-bg-1);
  color: #333;
}
/* skeleton */
.loading-skeleton {
  appearance: none;
  -webkit-appearance: none;
  background-color: #eee;
  border-color: #eee;
  animation: loading-skeleton 1s infinite alternate;
}
@keyframes loading-skeleton {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 1440px) {
  .msg_toper_infrom::before {
    /* left: -4rem !important; */
    top: -10rem !important;
    transform: scale(0.3) !important;
  }
}
@media screen and (max-width: 1200px) {
  .banner-top {
    padding-top: 80px;
  }
}

@media screen and (max-width: 1024px) {
  .heading h2 > br,
  .heading p > br {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .heading h2 {
    font-size: 30px;
  }
  .heading p {
    font-size: 18px;
  }
}
@media screen and (max-width: 512px) {
  .th-d li {
    text-align: start;
    list-style-type: none;
    padding-left: 23px;
    font-family: var(--font-regular);
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0px;
  }
  li {
    padding-top: 0px;
  }
}
@media screen and (max-width: 420px) {
  .banner-top {
    padding-top: 70px;
  }
}
@media screen and (max-width: 420px) {
}
@media screen and (max-width: 320px) {
  .th-d li {
    font-size: 13px !important;
    padding-left: 17px;
  }
  .subjects-set {
    width: 270px;
  }
}
