.bg_dark {
  background-color: #303030;
}

.bg_light {
  background-color: #F2F2F2;
}

.bg_primary {
  background-color: #2582EB;
}

.text_light {
  color: #F2F2F2;
}

.text_grad {
  background-image: linear-gradient(to left, #e71e24, #f68c1e);
  background-size: 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text_primary {
  color: #2582EB;
}

.text_secondary {
  color: #B3B3B3;
}

.border_primary {
  border: 1px solid #2582EB;
}

.btn_primary {
  background-color: #2582EB;
  color: white;
  border-radius: 10px;
  padding: 0.6rem 1rem;
}

.btn_grad {
  background: linear-gradient(to left, #e71e24, #f68c1e);
  color: white;
  border-radius: 50px;
  padding: 0.8rem 1.8rem;
  filter: brightness(1);
  transition: 0.4s ease-in-out;
}
.btn_grad:hover {
  filter: brightness(1.1);
  transition: 0.4s ease-in-out;
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 0.5rem 1.5rem;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.3137254902);
  z-index: 9;
  background-color: #fff;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav #hamburger {
  display: none;
}
header nav .toggle_btn {
  margin: 0;
  cursor: pointer;
}
header nav .toggle_btn .bi {
  font-size: 1.8rem;
}
header nav input#hamburger:checked ~ ul {
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}
header nav input#hamburger ~ ul {
  transform: translateX(-100);
  transition: transform 0.6s ease-in-out;
}
header nav .logo_wrapper {
  max-width: 120px;
  width: 100%;
}
header nav ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  margin: 0;
}
header nav ul li {
  padding: 0.7rem;
  position: relative;
}
header nav ul li a {
  font-size: 1.2rem;
  color: inherit;
  position: relative;
}
header nav ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #fff;
  transition: 0.4s ease-in-out;
}
header nav ul li a:hover:after {
  width: 100%;
  transition: 0.4s ease-in-out;
}
header nav ul li a:hover ~ .menu {
  display: block;
}
header nav ul li .menu {
  width: 200px;
  position: absolute;
  left: 0;
  top: 70%;
  background-color: white;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgb(241, 241, 241);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1882352941);
  display: none;
}
header nav ul li .menu div {
  padding: 0.5rem 0rem;
}
header nav ul li .menu div a {
  font-size: 1rem;
}
header nav ul li .menu:hover {
  display: block;
}
header nav ul .active_menu {
  color: #2582EB;
}

@media only screen and (max-width: 600px) {
  .btnHighlight {
    font-size: 14px !important;
}
  header nav .logo_wrapper {
    max-width: 80px;
  }
  header nav .toggle_btn {
    display: block;
  }
  header nav ul {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    flex-direction: column;
    background-color: #f37a21;
    padding: 2rem;
    overflow-y: scroll;
  }
  header nav ul li .menu {
    position: unset;
    box-shadow: unset;
    border: 0;
  }
}
@media only screen and (min-width: 600px) {
  header nav .logo_wrapper {
    max-width: 80px;
  }
  header nav .toggle_btn {
    display: block;
  }
  header nav ul {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    flex-direction: column;
    background-color: #f37a21;
    padding: 2rem;
    overflow-y: scroll;
  }
  header nav ul li .menu {
    position: unset;
    box-shadow: unset;
    border: 0;
  }
}
@media only screen and (min-width: 768px) {
  header nav .toggle_btn {
    display: block;
  }
  header nav ul {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    flex-direction: column;
    background-color: #f37a21;
    padding: 2rem;
    overflow-y: scroll;
  }
  header nav ul li .menu {
    position: unset;
    box-shadow: unset;
    border: 0;
  }
}
@media only screen and (min-width: 992px) {
  header nav .toggle_btn {
    display: block;
  }
  header nav ul {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    flex-direction: column;
    background-color:#f37a21;
    padding: 2rem;
    overflow-y: scroll;
  }
  header nav ul li .menu {
    position: unset;
    box-shadow: unset;
    border: 0;
  }
}
@media only screen and (min-width: 1200px) {
  header nav .toggle_btn {
    display: none;
  }
  header nav .logo_wrapper {
    max-width: 120px;
  }
  header nav ul {
    position: unset;
    width: unset;
    height: unset;
    flex-direction: row;
    background-color: #f37a21;
    transform: translateX(0);
    padding: 0rem;
    overflow-y: unset;
  }
  header nav ul li .menu {
    position: absolute;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgb(241, 241, 241);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1882352941);
    display: none;
  }
}
.bg_dark {
  background-color: #303030;
}

.bg_light {
  background-color: #F2F2F2;
}

.bg_primary {
  background-color: #2582EB;
}

.text_light {
  color: #F2F2F2;
}

.text_grad {
  background-image: linear-gradient(to left, #e71e24, #f68c1e);
  background-size: 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text_primary {
  color: #2582EB;
}

.text_secondary {
  color: #B3B3B3;
}

.border_primary {
  border: 1px solid #2582EB;
}

.btn_primary {
  background-color: #2582EB;
  color: white;
  border-radius: 10px;
  padding: 0.6rem 1rem;
}

.btn_grad {
  background: linear-gradient(to left, #e71e24, #f68c1e);
  color: white;
  border-radius: 50px;
  padding: 0.8rem 1.8rem;
  filter: brightness(1);
  transition: 0.4s ease-in-out;
}
.btn_grad:hover {
  filter: brightness(1.1);
  transition: 0.4s ease-in-out;
}

@font-face {
  font-family: "League Spartan Bold";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/LeagueSpartan-Bold.woff") format("woff");
}
body {
  font-family: "Lato", sans-serif;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "League Spartan Bold";
  font-weight: normal;
}

body {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: inherit;
}

.bi {
  font-size: 1.4rem;
}

.alert_anim {
  opacity: 1;
  -webkit-animation: opacity 1s infinite forwards;
          animation: opacity 1s infinite forwards;
}

@-webkit-keyframes opacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes opacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.spinner {
  position: relative;
}
.spinner::after {
  content: "\f1ce";
  position: absolute;
  font-family: fontawesome;
  right: 10px;
  -webkit-animation: rotate 1s infinite forwards;
          animation: rotate 1s infinite forwards;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
main {
  width: 100%;
  display: flex;
}
main article {
  width: 100%;
}
main aside {
  width: 400px;
  padding: 1.5rem;
  height: calc(100% - 90px);
  overflow-y: scroll;
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
main aside::-webkit-scrollbar {
  display: none;
}

.nav-tabs {
  border-bottom: 0;
}
.nav-tabs li .nav-link {
  color: #000;
  border: 0;
}
.nav-tabs li .active {
  color: #2582EB !important;
  position: relative;
}
.nav-tabs li .active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2582EB;
}

.wrapper {
  padding: 1rem 0rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3137254902);
}

.heading {
  text-align: center;
}
.heading h2 {
  display: inline-block;
  position: relative;
}
.heading h2::after {
  position: absolute;
  content: "";
  width: calc(100% - 100px);
  height: 2px;
  background-color: #2582EB;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.content_wrapper {
  background-color: white;
  overflow: hidden;
  box-shadow: -1px 2px 16px 0px rgba(212,212,212,1);
  border-radius: 0;
}
.content_wrapper figure {
  width: 100%;
  text-align: center;
}
.content_wrapper figure img {
  width: 180px;
  height: 180px;
  overflow: hidden;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1882352941);
  border: 8px solid #fa7a23;
}
.content_wrapper figcaption {
  text-align: center;
  font-weight: bolder;
}

.circle {
  width: 45px;
  height: 45px;
  overflow: hidden;
  border-radius: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.circle img {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50px;
}

.youtube {
  background-color: #FF0000;
}
.youtube:hover {
  filter: brightness(0.8);
}

.facebook {
  background-color: #4267B2;
}
.facebook:hover {
  filter: brightness(0.8);
}

.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.instagram:hover {
  filter: brightness(0.8);
}

.twitter {
  background-color: #1DA1F2;
}
.twitter:hover {
  filter: brightness(0.8);
}

.pattern {
  background: url("../images/pattern.svg");
}

.custom_spinner {
  display: inline-block;
  position: relative;
  border-radius: 50%;
  padding: 3rem;
  background-color: white;
}
.custom_spinner::after {
  content: "";
  position: absolute;
  display: inline-block;
  border-radius: 50%;
  width: 105%;
  height: 105%;
  top: -5px;
  left: -5px;
  background: linear-gradient(to left, #e71e24, #f68c1e);
  z-index: -1;
  -webkit-animation: spin 3s linear infinite;
          animation: spin 3s linear infinite;
}

.iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}
.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.questionCountList {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(30px, 1fr));
}
.questionCountList .box {
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  border: 0;
}
.questionCountList .box:hover {
  background-color: #2582EB;
  color: #fff;
}
.questionCountList .active {
  position: relative;
}
.questionCountList .active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #2582EB;
  bottom: -7px;
  left: 0;
}

.btn_light {
  background-color: #F2F2F2;
}
.btn_light:hover {
  background-color: #2582EB;
  color: #fff;
}

.form-check-label {
  font-size: 0.9rem;
}

.responsive-grid-my-score {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 30px;
  grid-gap: 8px;
  -webkit-line-clamp: 2;
}

.text_clamp {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.navWrapper {
  position: relative;
}

.navWrapper::after {
  content: "\f105";
  font-family: FontAwesome;
  font-size: 1.2rem;
  position: absolute;
  top: 0;
  right: -10px;
  width: 20px;
  height: 100%;
  background: #fff;
  display: grid;
  place-items: center;
}

.nav::-webkit-scrollbar {
  height: 0;
}

.nav::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.nav::-webkit-scrollbar-thumb {
  background: #888;
}

.nav::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.nav .nav-item {
  min-width: 170px;
  text-align: center;
}

.coming_soon {
  position: relative;
}
.coming_soon::before {
  content: "Coming Soon...";
  position: absolute;
  top: 0;
  left: 0;
  color: #cc0000;
  background-color: rgba(255, 255, 255, 0.5019607843);
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  z-index: 8;
}

.img-hover-overlay {
  transition: 0.4s ease-in-out;
}
.img-hover-overlay:hover {
  filter: brightness(0.7);
  transition: 0.4s ease-in-out;
}

@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rightSidebar {
  position: fixed;
  width: 300px;
  height: 100vh;
  border: 1px solid #dedede;
  background-color: #fff;
  z-index: 8;
  right: 0;
  transform: translateX(120%);
  transition: transform 0.4s ease-in-out;
}

.disabled-watermark[data-text] {
  position: relative;
  pointer-events: none;
}
.disabled-watermark[data-text]::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: #cc0000;
  background-color: rgba(255, 255, 255, 0.5019607843);
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  z-index: 8;
  font-size: larger;
}

.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media only screen and (max-width: 600px) {
  main {
    display: unset;
  }
  main aside {
    width: 100%;
    position: unset;
  }

  .responsive-grid-my-score {
    grid-template-columns: 1fr 30px;
  }
}
@media only screen and (min-width: 600px) {
  main {
    display: unset;
  }
  main aside {
    width: 100%;
    position: unset;
  }

  .responsive-grid-my-score {
    grid-template-columns: 1fr 30px;
  }
}
@media only screen and (min-width: 768px) {
  main {
    display: unset;
  }
  main aside {
    width: 100%;
    position: unset;
  }

  .responsive-grid-my-score {
    grid-template-columns: 1fr 1fr 1fr 30px;
  }
}
@media only screen and (min-width: 992px) {
  main {
    display: unset;
  }
  main aside {
    width: 100%;
    position: unset;
  }

  .responsive-grid-my-score {
    grid-template-columns: 1fr 1fr 1fr 30px;
  }
}
@media only screen and (min-width: 1200px) {
  main {
    display: flex;
  }
  main aside {
    width: 400px;
    position: -webkit-sticky;
    position: sticky;
  }

  .responsive-grid-my-score {
    grid-template-columns: 1fr 1fr 1fr 30px;
  }
}

/************************ redesgin home page **************************/
@media screen and (min-width: 1230px) {
  header nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 1200px;
      margin: 0px auto;
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
      max-width: 1200px !important;
  }
}

header {
  position: sticky;
  top: 0;
  padding: 0.7rem 1.5rem !important;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3137254902) !important;
  z-index: 9;
  background-color: #f37a21 !important;
}

@media only screen and (min-width: 1200px) {
  header nav ul {
      position: unset;
      width: unset;
      height: unset;
      flex-direction: row;
      background-color: #f37a21 !important;
      transform: translateX(0);
      padding: 0rem;
      overflow-y: unset;
      align-items: center;
  }
}

header nav ul .active_menu {
  color: #fff !important;
  text-transform: uppercase;
}

header nav ul li {
  padding: 0.7rem;
  position: relative;
  color: #fff;
  text-transform: uppercase;
}

.btnHighlight {
  background-image: none !important;
  animation: gradient .7s ease infinite;
  color: #fff;
  background-size: 400% 400%;
  border: 2px solid !important;
  border-radius: 10px !important;
  padding: 5px 10px !important;
}
.courser_top_text{
font-size: 20px;
color: #a8a8aa;
text-transform: uppercase;
letter-spacing: 4px;
margin-bottom: 0;
}
.top_course_sec {
  margin-top: 80px;
}

.post-slide {
  background: #fff;
  margin: 20px 15px 20px;
  border-radius: 15px;
  padding-top: 1px;
}

.post-slide .post-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.post-slide .post-img img {
  width: 100%;
  height: auto;
  transform: scale(1, 1);
  transition: transform 0.2s linear;
}

.post-slide:hover .post-img img {
  transform: scale(1.1, 1.1);
}

.post-slide .over-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.50s linear;
}

.post-slide:hover .over-layer {
  opacity: 1;
  text-decoration: none;
}

.post-slide .over-layer i {
  position: relative;
  top: 45%;
  text-align: center;
  display: block;
  color: #fff;
  font-size: 25px;
}
.post-slide .post-title a {
  font-size: 17px;
  font-weight: 600;
  color: #e96824 !important;
  display: inline-block;
  text-transform: capitalize;
  transition: all 0.3s ease 0s;
  padding-top: 15px;
  padding-bottom: 15px;
}

.post-slide .post-title a:hover {
  text-decoration: none;
  color: #3498db;
}

.owl-controls .owl-buttons {
  text-align: center;
  margin-top: 20px;
}

.owl-controls .owl-buttons .owl-prev {
  background: #fff;
  position: absolute;
  top: -13%;
  left: 15px;
  padding: 0 18px 0 15px;
  border-radius: 50px;
  box-shadow: 3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-next {
  background: #fff;
  position: absolute;
  top: -13%;
  right: 15px;
  padding: 0 15px 0 18px;
  border-radius: 50px;
  box-shadow: -3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #333;
  font-size: 30px;
}

.owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
}

@media only screen and (max-width:1280px) {
  .post-slide .post-content {
      padding: 0px 15px 25px 15px;
  }
}

.owl-nav{
  display: block !important;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -50px;
  margin-right: 33px;
}
.btn_light {
background-color: #fff !important;
color: #000 !important;
}
span.top_couser_heading {
font-family: "League Spartan Bold";
font-size: 40px;
color: #313131;
}
.top_couser span {
font-size: 40px;
}

.post-slide .post-description {
  line-height: 24px;
  color: #212529;
  margin-bottom: 25px;
  font-size: 20px;
}
.post-img {
  background: #c4c4c4;
}
p.post-title {
  margin-bottom: 0;
}
img.iconarrowsec {
  width: 40px;
}.model_popupsec .modal-body {
  padding: 5px;
  padding-bottom:0px;
}
@media only screen and (min-width:1200px) {
  header nav ul li a {
    font-size: 1.2rem;
    color: inherit;
    position: relative;
    font-size: 17px !important;
  }
  
  img.benefit_img {
    margin-top: 30px;
    margin-bottom: 30px;
}
.modal-dialog {
  max-width: 680px;
  margin: 0px auto;
}}

.bg_primary_sec .text-center {
  color: #5f5f5f;
  font-family: 'League Spartan Bold';
}.bg_primary_sec {
  border-top: 3px solid #fa9e5b;
  border-bottom: 3px solid #fa9e5b;
}
@media only screen and (max-width:767px) {
  form#detail_form {
    width: 250px;
}
form#detail_form_register {
  width: 250px;
}
  .border_right {
    border-bottom: 2px solid #fa9e5b;
  } 
}
@media only screen and (min-width:768px) {
  form#detail_form {
    width: 350px;
}
form#detail_form_register {
  width: 350px;
}
.border_right {
  border-right: 2px solid #fa9e5b;
}}
hr.border_benfit_sec {
  border: 2px solid #fa9e5b;
  width: 5%;
  float: left;
  margin: 0;
}
section.home_bk_sec {
  background: #f7f7f7;
}
figcaption {
  font-family: 'League Spartan Bold';
  font-size: 14px;
  text-transform: uppercase;
}
address.text-muted.text-center {
  color: #ee771b !important;
  font-size: 13px;
  font-weight: 600;
}
p.student_title {
  font-size: 22px;
  font-weight: bold;
}.paidexam_sec {
  background: #f1f1f3;
  padding: 20px !important;
}.padiexam_title {
  color: #212529;
  font-size: 25px;
  text-align: left;
  font-weight: bold;
}.padiexam_view {
  font-size: 15px;
  color: #ee771b !important;
  text-align: left;
  font-weight: bold;
}
.scholarship_home {
  background: #a7a6ab;
  padding: 20px;
  border-radius: 15px;
}

.scholarship_home {
  background: #a7a6ab;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 3px 1px 30px -4px rgba(10,122,105,1);
}
.rounded-pillenroll_btn {
  border-radius: 5px;
  text-transform: uppercase;
}

.top_couser_blog span {
  font-size: 30px;
}
hr.border_benfit_sec_blog {
  border: 2px solid #e85b23;
  width: 20%;
  float: left;
  margin: 0;
}
.border_primary_notify strong {
  padding-top:10px;
  width: 100%;
  float: left;
  font-size: 40px;
  font-family: 'League Spartan Bold';
  color: #323232;
  text-align: center;
  line-height: 35px;
}.border_primary_notify {
  border: 4px solid #ef5f20;
  border-radius: 10px;
}
.border_primary_notify small {
  color: #808082;
  font-size: 14px;
  font-weight: 600;
}
.wrapper_sec {
  padding: 0.5rem 0rem;
}
.border_primary_blog {
  border: 2px solid #999;
  border-radius: 10px;
}
a.view_blog_btn {
  color: #000;
  font-weight: bold;
  font-size: 16px;
}hr.blog_nofity_sec {
  border-top: 1px solid #c9c9c9;
}
.footer_locationsec {
  border: 6px solid #fff;
  padding: 10px;
}
.footer_location_text p {
  font-size: 18px;
  margin-left: 20px;
  margin-right: 20px;
}
hr.bordersec_footer {
  border: 1px solid #e8e8e8;
  width: 100%;
  float: left;
  margin: 0;
}
.bottom_footer {
  text-align: center;
}

.bottom_footer svg {
  width: 150px;
}
section.footer_mainsec {
  padding-top: 20px;
  padding-bottom: 153px;
}img.footergirl_sec {
  margin-top: -20%;
}.bottom_footer {
  margin-top: -50px;
}
form#detail_form_footer input#mobileno {
  width: 59%;
  float: left;
  height: 58px;
  font-size: 18px;
  font-weight: 600;
  background: #f0f0f0;
  border: 0;
}button#detail_form_footer_btn {
  width: 40% !important;
  border-radius: 0;
  font-size: 20px;
}
form#detail_form_footer {
  margin-top: 22%;
}

@media only screen and (max-width:767px) {
  .courser_top_text {
    font-size: 15px;
    color: #a8a8aa;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
    margin-top: 3px;
}.top_course_sec {
  margin-top: 30px;
}.owl-nav {
  display: block !important;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -30px;
  margin-right: 33px;
}
.top_couser span {
  font-size: 22px;
}
img.iconarrowsec {
  width: 30px;
}
p.coaching_content_text {
  font-size: 25px !important;
  line-height: 35px !important;
}.row.percentag_sec {
  margin: 20px;
}
.display-4 {
  font-size: 2.5rem !important;
}img.benefit_img {
  margin-top: 20px;
  margin-bottom: 20px;
}p.student_title {
  font-size: 22px;
  font-weight: bold;
}
.padiexam_title {
  color: #212529;
  font-size: 18px;
  text-align: left;
  font-weight: bold;
}.padiexam_view {
  font-size: 14px;
  color: #ee771b !important;
  text-align: left;
  font-weight: bold;
  padding-top: 10px !important;
}.top_couser_blog span {
  font-size: 22px;
}.border_primary_notify strong {
  padding-top: 6px;
  width: 100%;
  float: left;
  font-size: 30px;
  font-family: 'League Spartan Bold';
  color: #323232;
  text-align: center;
  line-height: 30px;
}.footer_mainsec h1 {
  font-size: 25px;
}
.footer_location_text p {
  font-size: 15px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 0;
  line-height: 19px;
}img.footer_img_sec {
  visibility: hidden;
}section.footer_mainsec {
  padding-top: 20px;
  padding-bottom: 100px;
}
.bottom_footer {
  margin-top: -50%;
}form#detail_form_footer input#mobileno {
  width: 100%;
  float: left;
  height: 58px;
  font-size: 18px;
  font-weight: 600;
  background: #f0f0f0;
  border: 0;
}button#detail_form_footer_btn {
  width: 100% !important;
  border-radius: 0;
  font-size: 20px;
}
img.footergirl_sec {
  margin-top: 0;
}.contact_haveany_query {
  padding-top: 10px;
  margin-bottom: 30px;
}
.contactus_homesec {
  margin-top: 20px;
}
}

.contact_haveany_query {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) { 
form#detail_form_footer input#mobileno {
  width: 55%;
  float: left;
  height: 58px;
  font-size: 15px;
  font-weight: 600;
  background: #f0f0f0;
  border: 0;
}
button#detail_form_footer_btn {
  width: 45% !important;
  border-radius: 0;
  font-size: 12px;
  height: 58px;
}}

@media screen and (min-width: 1024px) and (max-width: 1199px) { 
  form#detail_form_footer input#mobileno {
    width: 55%;
    float: left;
    height: 58px;
    font-size: 18px;
    font-weight: 600;
    background: #f0f0f0;
    border: 0;
  }
  button#detail_form_footer_btn {
    width: 45% !important;
    border-radius: 0;
    font-size: 15px;
    height: 58px;
  }}

  .bi-list::before {
    color: #fff !important;
}
.carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 10px !important;
  height: 10px !important;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #a2a1a6 !important;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity .6s ease;
  border-radius: 100% !important;
}
@media only screen and (max-width:767px) {
    img.iconarrow {
    width: 40px !important;
}
    ol.carousel-indicators {
    display: none;
}
.post-content {
  margin-bottom: 0px !important;
}p.post-description {
  margin-bottom: 0px !important;
}}
img.iconarrow {
    width: 60px;
}