﻿@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
@import url("../../assets/css/color_variables.css");
/*$primary-color: #2A83F4;*/
/*$primary-lite: #ECF4FF;*/
/*$primary-lite: lighten( var(--primary-color), 40%);*/
body {
  font-family: "Poppins", sans-serif;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 999999;
  overflow: visible;
  background: #fff url("../../assets/images/1.gif") no-repeat center center;
}

.select2-container {
  width: 100% !important;
}
.select2-container .select2-selection {
  border: 1px solid #dee2e6 !important;
  padding: 1px 5px;
  height: 33.5px;
  font-size: 14px;
}

.select2-search__field:focus-visible {
  outline: 1px solid #dee2e6 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 5px;
  right: 8px;
}

.select2-dropdown {
  max-height: 300px;
  overflow-y: auto;
}

.select2-results__option {
  font-size: 13px;
}

.hide {
  display: none;
}

.font-13 {
  font-size: 13px !important;
}

.btn-primary {
  /*  font-size: 13px;
  border-radius: 3px;*/
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.course-overview li {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  /*width: 50%;*/
  align-items: center;
}

.bg-gray-100 {
  background-color: #f3f6f9 !important;
}

.card-subheading {
  font-size: 1rem;
  position: relative;
  padding-left: 10px;
  color: var(--primary-color);
  border-left: 5px solid var(--primary-color);
  margin-bottom: 15px;
  margin-top: 15px;
}

#header-hero-fluid-section {
  position: relative;
  padding-top: 10px;
  background-color: var(--primary-color);
  height: 450px;
  background-image: url("images/hero-bg.png");
  transition: all 1s ease;
  /*.btn-sign-hover:hover i {
      transform: translateX(10px);
      transition: transform 0.2s ease-in-out;
  }*/
  /*.btn-sign-hover {
      position: relative;

      i {
          position: absolute;
      }
  }*/
}
#header-hero-fluid-section .btn-sign-hover {
  position: relative;
  display: inline-block;
  padding-right: 25px !important;
  transition: all 0.2s ease-in-out;
}
#header-hero-fluid-section .btn-sign-hover i {
  position: absolute;
  right: 8px;
  transition: transform 0.2s ease-in-out;
}
#header-hero-fluid-section .btn-sign-hover:hover {
  background-color: #007bff;
  color: #fff;
}
#header-hero-fluid-section .btn-sign-hover:hover i {
  transform: translateX(8px);
}
#header-hero-fluid-section .header-section-fixed {
  background: white;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: -5px;
  z-index: 11;
  transition: all 1s ease;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1019607843);
}
#header-hero-fluid-section .header-section-fixed .nav-links a {
  color: var(--primary-color) !important;
}
#header-hero-fluid-section .header-section-fixed .nav-header-img-outer {
  padding-top: 6px !important;
}
#header-hero-fluid-section #header-section {
  padding-bottom: 10px;
  border-bottom: 1px solid white;
  margin-top: 5px;
  transition: all 1s ease;
}
#header-hero-fluid-section #header-section .nav-header .nav-header-img-outer {
  height: 51px;
  background-color: #fff;
  padding: 0;
}
#header-hero-fluid-section #header-section .nav-header .nav-header-img-outer img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
#header-hero-fluid-section #header-section .nav-header .imgInstLogo {
  width: 100px;
}
#header-hero-fluid-section #header-section .nav-header .imgInstBanner {
  width: 300px;
}
#header-hero-fluid-section #header-section .nav-links a {
  position: relative;
  margin: 0 7px;
  text-decoration: none;
  color: white;
  z-index: 1;
  transition: all 1s ease;
  padding: 0 7px;
  font-family: "Roboto", sans-serif;
}
#header-hero-fluid-section #header-section .nav-links a:hover {
  color: var(--primary-color);
}
#header-hero-fluid-section #header-section .nav-links a::before {
  content: "";
  position: absolute;
  top: -42px;
  z-index: -1;
  transform: scaleX(1);
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  transform-origin: left;
  transition: all 0.5s ease;
}
#header-hero-fluid-section #header-section .nav-links a:hover::before {
  color: var(--primary-color);
  height: 80px;
}
#header-hero-fluid-section #header-section .nav-links a:last-child {
  background: white;
  color: var(--primary-color);
  padding: 6px 12px;
  border-radius: 3px;
  font-family: "Poppins", sans-serif !important;
}
#header-hero-fluid-section #header-section .nav-links a:last-child::before {
  display: none;
}
#header-hero-fluid-section .hero-section {
  margin-top: 95px;
}
#header-hero-fluid-section .hero-section h2 {
  font-size: 45px;
  font-weight: 800;
  color: white;
  margin-top: 40px;
}
#header-hero-fluid-section .hero-section p {
  color: white;
  margin-top: 20px;
}
#header-hero-fluid-section .hero-section img {
  position: absolute;
  top: -38px;
  right: 6px;
  transform: rotate(162deg) scaleX(-1) scaleY(-1);
}
#header-hero-fluid-section #hero-form-section {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1019607843);
  padding: 30px;
  border: none;
  margin-top: 3rem;
}
#header-hero-fluid-section #hero-form-section .card-body #hero-form-section-header {
  margin-bottom: 1rem;
}
#header-hero-fluid-section #hero-form-section .card-body #hero-form-section-header h5 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}
#header-hero-fluid-section #hero-form-section .card-body .form-group label {
  font-size: 14px;
}
#header-hero-fluid-section #hero-form-section .card-body .form-group ::placeholder, #header-hero-fluid-section #hero-form-section .card-body .form-group input, #header-hero-fluid-section #hero-form-section .card-body .form-group select {
  font-size: 13px;
  border-radius: 3px;
}
#header-hero-fluid-section #hero-form-section .card-body #configMobileNo .iti.iti--allow-dropdown {
  width: 100%;
}
#header-hero-fluid-section #hero-form-section .card-body .btn-sign {
  font-size: 13px;
  border-radius: 3px;
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}
#header-hero-fluid-section #hero-form-section .card-body .radio-container {
  padding: 4px 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}
#header-hero-fluid-section #hero-form-section .card-body .radio-container input[type=radio] {
  display: none;
}
#header-hero-fluid-section #hero-form-section .card-body .radio-container .custom-radio {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  margin-right: 10px;
  cursor: pointer;
  background: #fff;
}
#header-hero-fluid-section #hero-form-section .card-body .radio-container input[type=radio]:checked + .custom-radio {
  border-color: var(--primary-color);
}
#header-hero-fluid-section #hero-form-section .card-body .radio-container input[type=radio]:checked + .custom-radio::before {
  content: "\f26d";
  display: block;
  color: var(--primary-color);
  text-align: center;
  font-size: 18px;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
}
#header-hero-fluid-section #hero-form-section .card-body .radio-container:has(input[type=radio]:checked) {
  border: 2px solid var(--primary-color);
  font-weight: 500;
  color: var(--primary-color);
}
#header-hero-fluid-section #hero-form-section .card-body .radio-container .custom-radio-desc {
  width: calc(100% - 28px);
  font-weight: 500;
  font-size: 14px;
}

.nav > #nav-check {
  display: none;
}

@media (max-width: 992px) {
  .header-section-fixed .nav > .nav-btn > label > span {
    border-color: var(--primary-color) !important;
  }
  .header-section-fixed .nav > .nav-btn > label:hover, .header-section-fixed .nav #nav-check:checked ~ .nav-btn > label {
    background-color: #fff;
  }
  #hero-form-section {
    padding: 10px 0px !important;
  }
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 13px;
    top: 5px;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  .nav > .nav-btn > label:hover,
  .nav #nav-check:checked ~ .nav-btn > label {
    background-color: var(--primary-color);
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid white;
  }
  .fixed-header .nav > .nav-btn > label > span {
    border-top: 2px solid var(--primary-color);
  }
  .nav > .nav-links {
    position: absolute;
    display: block;
    width: 95%;
    padding: 0 20px !important;
    background-color: #fff;
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 50px;
    left: 13px;
    z-index: 10;
    border-radius: 5px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1019607843);
    overflow-x: hidden;
  }
  .nav > .nav-links > a {
    display: block;
    width: 100%;
    color: var(--primary-color) !important;
    margin: 30px 0 30px 0 !important;
    border-left: 2px solid var(--primary-color);
  }
  .nav > .nav-links > a::before {
    display: none;
  }
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .nav > #nav-check:checked ~ .nav-links {
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav > #nav-check:checked ~ .nav-btn > label > span {
    border-top: 2px solid #fff;
    transition: all 1s ease;
  }
  .nav > #nav-check:checked ~ .nav-btn > label > span:last-child {
    display: none;
  }
  .nav > #nav-check:checked ~ .nav-btn > label > span:first-child {
    transform: rotate(50deg);
    position: relative;
    top: 15px;
  }
  .nav > #nav-check:checked ~ .nav-btn > label > span:nth-child(2) {
    transform: rotate(134deg);
  }
  .hero-section #hero-arrow {
    display: none;
  }
  .nav-links a {
    justify-content: center;
  }
  .nav-links a:last-child {
    border: 1px solid var(--primary-color) !important;
    width: 100%;
    margin-top: 0 !important;
  }
}
@media (max-width: 767px) {
  #header-hero-fluid-section {
    height: auto !important;
  }
  #header-hero-fluid-section .hero-section {
    margin-top: 0px;
  }
  #header-hero-fluid-section .hero-section h2 {
    font-size: 32px;
  }
  #header-hero-fluid-section #hero-form-section {
    padding: 10px 0px;
    margin-bottom: 1.5rem;
    margin-top: 0 !important;
  }
  #header-hero-fluid-section #header-section .nav-header .nav-header-img-outer {
    height: 50px;
    width: 60px;
  }
  #header-hero-fluid-section #header-section .nav-header .imgInstBanner {
    width: 270px !important;
  }
  #header-hero-fluid-section #header-section .nav-header .imgInstBanner img {
    object-fit: inherit;
  }
  #header-hero-fluid-section .header-section-fixed {
    padding-left: 6px !important;
  }
}
.iti--container {
  left: 0 !important;
  width: 100%;
  top: 58px !important;
}
.iti--container .iti__country-list {
  width: 100%;
}

.sign_upform_height {
  max-height: 45vh;
  overflow-y: auto;
  overflow-x: hidden;
}

/*.notice-card {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1019607843);
    padding: 20px;
    border: none;
    background: #fff;
    border-radius: 0.375rem;
    margin-bottom: 30px;
    font-size: 14px;

    .notice-card-icon {
        width: auto;
        height: 45px;
        display: flex;
        min-width: 45px;
        max-width: 58px;
        align-items: center;
        padding: 5px;
        justify-content: center;
        border-radius: 4px;
        background-color: $primary-lite;
        font-weight: 500;
        line-height: 1.2;
        font-size: 1.5rem;
        color: $primary-color;

        h4 {
            margin-bottom: 0;
        }
    }
}
*/
.owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  background-color: #ccc !important;
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
}

.owl-dots .owl-dot.active {
  background-color: var(--primary-color) !important; /* Active dot color */
}

.owl-dots {
  text-align: center !important;
}

.carousel-wrap .owl-nav .owl-prev {
  position: absolute;
  left: -15px;
  top: 32%;
  font-size: 18px !important;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-color, #fff) !important;
  box-shadow: 0px 3px 16px rgba(46, 46, 46, 0.16);
  border-radius: 2px;
}

.carousel-wrap .owl-nav .owl-next {
  position: absolute;
  right: -15px;
  top: 32%;
  font-size: 18px !important;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-color, #fff) !important;
  box-shadow: 0px 3px 16px rgba(46, 46, 46, 0.16);
  border-radius: 2px;
}

.h-40 {
  height: 40px !important;
}

.notices-section .carousel-wrap.carousel-wrap .owl-stage-outer .owl-stage {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
}
.notices-section .carousel-wrap.carousel-wrap .owl-stage-outer .owl-stage .owl-item {
  display: flex !important;
  flex: 0 1 auto !important;
  /*min-width: 220px !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin-right: 10px !important;*/
}
.notices-section .carousel-wrap.carousel-wrap .owl-stage-outer .owl-stage .owl-item .item {
  display: flex !important;
  flex: 1 1 auto !important;
  width: 100% !important;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1019607843);
  padding: 20px;
  border: none;
  background: #fff;
  border-radius: 0.375rem;
  margin-bottom: 30px;
  font-size: 14px;
  max-height: 420px !important;
}
.notices-section .carousel-wrap.carousel-wrap .owl-stage-outer .owl-stage .owl-item .item .notice-card-icon {
  width: auto;
  height: 45px;
  display: flex;
  min-width: 45px;
  max-width: 58px;
  align-items: center;
  padding: 5px;
  justify-content: center;
  border-radius: 4px;
  background-color: var(--primary-light-color);
  font-weight: 500;
  line-height: 1.2;
  font-size: 1.5rem;
  color: var(--primary-color);
}
.notices-section .carousel-wrap.carousel-wrap .owl-stage-outer .owl-stage .owl-item .item .notice-card-icon h4 {
  margin-bottom: 0;
}
.notices-section .carousel-wrap.carousel-wrap .owl-stage-outer .owl-stage .owl-item .item .notice-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
  margin-bottom: 14px !important;
  /*padding: 16px !important;*/
  /*max-height: 300px !important;
  overflow-y: auto !important;*/
}
.notices-section .carousel-wrap.carousel-wrap .owl-stage-outer .owl-stage .owl-item .item .notice-card p, .notices-section .carousel-wrap.carousel-wrap .owl-stage-outer .owl-stage .owl-item .item .notice-card h1, .notices-section .carousel-wrap.carousel-wrap .owl-stage-outer .owl-stage .owl-item .item .notice-card h2, .notices-section .carousel-wrap.carousel-wrap .owl-stage-outer .owl-stage .owl-item .item .notice-card h3, .notices-section .carousel-wrap.carousel-wrap .owl-stage-outer .owl-stage .owl-item .item .notice-card h4, .notices-section .carousel-wrap.carousel-wrap .owl-stage-outer .owl-stage .owl-item .item .notice-card h5, .notices-section .carousel-wrap.carousel-wrap .owl-stage-outer .owl-stage .owl-item .item .notice-card h6, .notices-section .carousel-wrap.carousel-wrap .owl-stage-outer .owl-stage .owl-item .item .notice-card ul, .notices-section .carousel-wrap.carousel-wrap .owl-stage-outer .owl-stage .owl-item .item .notice-card li, .notices-section .carousel-wrap.carousel-wrap .owl-stage-outer .owl-stage .owl-item .item .notice-card a {
  white-space: normal !important;
  word-break: break-word !important;
}
.notices-section .carousel-wrap.carousel-wrap .owl-stage-outer .owl-stage .owl-item .item p {
  margin-top: auto !important;
  margin-bottom: 0 !important;
}
.notices-section .carousel-wrap.carousel-wrap .owl-stage-outer .owl-stage .owl-item .item p .read-more-application a {
  color: var(--primary-color) !important;
}

.application-section {
  margin: 300px 0 80px 0;
}
.application-section #application-section-heading {
  position: relative;
}
.application-section #application-section-heading h4 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.application-section #application-section-heading p {
  font-size: 12px;
  margin-bottom: 25px;
}
.application-section #application-section-heading button {
  background-color: var(--primary-color);
  color: white;
}
.application-section #application-section-heading img {
  position: absolute;
  right: 20px;
}
.application-section .application-section-card {
  border: none;
  background-color: var(--primary-light-color);
  box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.0705882353);
}
.application-section .application-section-card img {
  margin-bottom: 1rem;
}
.application-section .application-section-card p {
  font-size: 14px;
  /*height: 148px;
  overflow-y: auto;*/
}
.application-section .application-section-card span {
  color: var(--primary-color) !important;
  font-size: 12px;
}
.application-section .application-section-card .read-more a {
  color: var(--primary-color) !important;
}
.application-section .application-section-card p.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 992px) {
  .application-section #application-section-heading #applications-arrow {
    display: none;
  }
  .application-section .col-lg-3 {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .application-section {
    margin: 20px 0;
  }
  .application-section .application-section-card p {
    max-height: 148px !important;
    height: auto !important;
  }
}
#steps-section {
  background-color: #fff;
  height: 600px;
}
#steps-section #steps-section-left {
  height: 600px;
  width: 100%;
  padding-left: 0;
  background-color: var(--primary-color);
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  background-image: url("images/steps-bg.png");
  display: flex;
  align-items: center;
  justify-content: center;
}
#steps-section #steps-section-left h4 {
  font-size: 48px;
  font-weight: 800;
  color: white;
}
#steps-section #steps-section-left p {
  font-size: 12px;
  color: white;
  width: 70%;
}
#steps-section #steps-section-arrows {
  position: relative;
}
#steps-section #steps-section-arrows img {
  position: absolute;
}
#steps-section #steps-section-arrows img:nth-child(1) {
  top: 62px;
  left: -50px;
}
#steps-section #steps-section-arrows img:nth-child(2) {
  top: 175px;
}
#steps-section #steps-section-arrows img:nth-child(3) {
  bottom: 175px;
}
#steps-section #steps-section-arrows img:nth-child(4) {
  bottom: 62px;
  left: -50px;
}
#steps-section #steps-section-right {
  position: relative;
  height: 580px;
  overflow-y: auto;
  /* .steps-section-card:nth-child(1) {
      top: 16px;
      left: -140px;
  }

  .steps-section-card:nth-child(2) {
      top: 170px;
      left: -60px;
  }

  .steps-section-card:nth-child(3) {
      bottom: 170px;
      left: -60px;
  }

  .steps-section-card:nth-child(4) {
      bottom: 16px;
      left: -140px;
  }*/
}
#steps-section #steps-section-right .steps-section-card {
  /*position: absolute;*/
  border: none;
  box-shadow: 0px 4px 32px rgba(51, 51, 51, 0.1019607843);
  margin-bottom: 12px;
  /*width: 400px;*/
}
#steps-section #steps-section-right .steps-section-card .steps-section-img-div {
  background: var(--primary-color);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  margin-left: 20px;
  margin-top: 10px;
  position: relative;
}
#steps-section #steps-section-right .steps-section-card .steps-section-img-div img {
  position: absolute;
  top: -16px;
  left: -23px;
  height: 64px;
  width: auto;
}
#steps-section #steps-section-right .steps-section-card .steps-section-img-div-3 img {
  height: 50px !important;
  top: -3px !important;
  left: -30px !important;
}
#steps-section #steps-section-right .steps-section-card .steps-section-content-div {
  height: 84px;
  overflow-y: auto;
}
#steps-section #steps-section-right .steps-section-card .steps-section-content-div steps-section-content-div h5 {
  font-size: 16px;
  font-weight: bold;
}
#steps-section #steps-section-right .steps-section-card .steps-section-content-div p {
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 992px) {
  #steps-section {
    height: auto;
  }
  #steps-section-left {
    border-top-right-radius: 0% !important;
    border-bottom-right-radius: 0% !important;
    justify-content: center !important;
    align-items: start !important;
    height: unset !important;
  }
  #steps-section-left h4 {
    margin-top: 20px;
  }
  #steps-section-left p {
    width: 100% !important;
  }
  #steps-section-arrows {
    display: none;
  }
  #steps-section-right .steps-section-card {
    position: unset !important;
    width: 100% !important;
    margin: 10px 0 !important;
  }
}
@media (max-width: 767px) {
  #steps-section-left h4#stepsheading {
    font-size: 32px;
  }
  #steps-section-right .steps-section-card .card-body .row {
    flex-direction: column !important;
  }
  #steps-section-right .steps-section-card .card-body .row .steps-section-img-div {
    margin-bottom: 10px !important;
  }
  #steps-section-right .steps-section-card .card-body .row .steps-section-content-div {
    height: auto !important;
    overflow-y: hidden !important;
  }
}
#announcements-section {
  margin: 50px 0;
}
#announcements-section #announcements-section-heading {
  margin-bottom: 70px;
  position: relative;
}
#announcements-section #announcements-section-heading img {
  position: absolute;
  left: 147px;
  top: -30px;
}
#announcements-section #announcements-section-heading h4 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
}
#announcements-section #announcements-section-heading p {
  font-size: 12px;
}
#announcements-section #announcements-bottom-section .announcements-section-card {
  position: relative;
  border: none;
}
#announcements-section #announcements-bottom-section .announcements-section-card .div-card-bg {
  background: linear-gradient(var(--primary-light-color), var(--primary-light-color), #FFFFFF);
  height: 400px;
  width: 85%;
  position: absolute;
  z-index: 0;
  border-radius: 5px;
  top: -5px;
  left: -5px;
}
#announcements-section #announcements-bottom-section .announcements-section-card .card-body {
  z-index: 1;
}
#announcements-section #announcements-bottom-section .announcements-section-card .card-body img {
  height: 280px;
  width: 100%;
}
#announcements-section #announcements-bottom-section .announcements-section-card .card-body h5 {
  font-size: 14px;
  margin-top: 20px;
}
#announcements-section #announcements-bottom-section .announcements-section-card .card-body p {
  font-size: 12px;
  color: #8A8888;
  margin-top: 14px;
}

@media (max-width: 992px) {
  #announcements-section {
    margin: 20px 0;
  }
  #announcements-section #announcements-section-heading #announcement-arrow {
    display: none;
  }
}
/*@media (max-width:767px) {

}*/
#faq-fluid-section {
  background-color: var(--primary-light-color);
  padding: 40px 0;
  background-image: url("images/faq-bg.png");
  background-repeat: no-repeat;
}
#faq-fluid-section #faq-section {
  position: relative;
}
#faq-fluid-section #faq-section #faq-heading-section h4 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
}
#faq-fluid-section #faq-section #faq-heading-section p {
  font-size: 12px;
}
#faq-fluid-section #faq-section #faq-heading-section img {
  position: absolute;
  top: 0;
  right: 178px;
}
#faq-fluid-section #faq-section .faqs .accordion-item {
  background-color: transparent !important;
}
#faq-fluid-section #faq-section .faqs .accordion-item .accordion-button {
  background-color: transparent !important;
}
#faq-fluid-section #faq-section .faqs .accordion-item .accordion-button:focus {
  box-shadow: none !important;
}

@media (max-width: 992px) {
  #faq-fluid-section #faq-heading-section #faq-arrow {
    display: none;
  }
}
#contact-section {
  padding: 50px 0;
  position: relative;
}
#contact-section #contact-heading-section {
  margin-bottom: 60px;
}
#contact-section #contact-heading-section h4 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
}
#contact-section #contact-heading-section p {
  font-size: 12px;
  width: 400px;
}
#contact-section #contact-heading-section img {
  position: absolute;
  top: 47px;
  left: 411px;
}
#contact-section #contact-cards-section .single-contact-card {
  background-color: var(--primary-light-color);
  border: none;
  position: relative;
  padding-top: 20px;
  /*height: 120px;*/
  /*p {
      overflow-y: auto;
      height: 75px;
  }*/
}
#contact-section #contact-cards-section .single-contact-card .icon-div {
  height: 58px;
  width: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(var(--primary-light-color), #ffffff);
  border-radius: 11px;
  position: absolute;
  top: -30px;
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.0705882353);
}
#contact-section #contact-cards-section .single-contact-card .icon-div i {
  font-size: 31px;
  color: var(--primary-color);
}
#contact-section #map-div {
  margin-top: 20px;
}

@media (max-width: 992px) {
  #contact-section #contact-heading-section p {
    width: 100%;
  }
  #contact-section #contact-heading-section #contact-arrow {
    display: none;
  }
  #contact-section #contact-cards-section .single-contact-card {
    margin: 25px 0;
  }
}
#footer-section {
  background-color: var(--primary-color);
  padding: 23px 0;
  font-family: "Roboto", sans-serif;
}
#footer-section #footer-container-section {
  display: flex;
  justify-content: space-between;
}
#footer-section span {
  font-size: 12px;
  color: white;
}

.cursor {
  cursor: pointer;
}

@media (max-width: 512px) {
  #footer-container-section {
    display: grid !important;
    justify-content: center !important;
  }
  #footer-container-section span {
    margin: 3px 0;
  }
}
.admission-requirement-section .custom-tabs {
  font-size: 14px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1019607843);
}
.admission-requirement-section .custom-tabs .nav-link {
  color: #212529;
  position: relative;
  border-bottom: 1px solid #eee;
  border-radius: 0;
}
.admission-requirement-section .custom-tabs .nav-link.active {
  background-color: transparent;
  color: var(--primary-color);
}
.admission-requirement-section .custom-tabs .nav-link.active:before {
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  height: calc(79% - 10px);
  width: 2px;
  background-color: var(--primary-color);
}
.admission-requirement-section .admission-requirement-content {
  font-size: 14px;
}
.admission-requirement-section .admission-requirement-content .admission-requirement-header {
  position: relative;
  padding-left: 10px;
  color: var(--primary-color);
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid #eee;
}
.admission-requirement-section .admission-requirement-content .admission-requirement-header h5 {
  margin: 0;
}
.admission-requirement-section .admission-requirement-content .admission-requirement-body {
  padding: 20px 15px;
  height: calc(100vh - 160px);
  overflow-y: auto;
}
.admission-requirement-section .admission-requirement-content .admission-requirement-body .accordion-button:focus {
  box-shadow: none;
}
.admission-requirement-section .admission-requirement-content .admission-requirement-body .accordion-item:not(:first-of-type) {
  border-top: 1px solid #ddd;
}
.admission-requirement-section .admission-requirement-content .admission-requirement-body .accordion-item {
  border-radius: 5px;
}
.admission-requirement-section .admission-requirement-content .admission-requirement-body .accordion-item .accordion-button {
  border-radius: 5px;
}
.admission-requirement-section .admission-requirement-content .admission-requirement-body .accordion-item .accordion-button:not(.collapsed) {
  background-color: var(--primary-light-color);
}
.admission-requirement-section .tabcontent {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1019607843);
}

#importantDatesSection {
  margin: 50px 0;
}
#importantDatesSection #importantDatesSectionHeading {
  margin-bottom: 70px;
  position: relative;
}
#importantDatesSection #importantDatesSectionHeading img {
  position: absolute;
  left: 147px;
  top: -30px;
}
#importantDatesSection #importantDatesSectionHeading h4 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
}
#importantDatesSection #importantDatesSectionHeading p {
  font-size: 12px;
}
#importantDatesSection #importantDatesSectionHeading #importantDatesArrow {
  filter: invert(46%) sepia(74%) saturate(3216%) hue-rotate(217deg) brightness(100%) contrast(87%);
}
#importantDatesSection .subCard {
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  margin-bottom: 24px;
}
#importantDatesSection .subCard .subCard-header {
  background-color: var(--primary-light-color);
  border-radius: 3px 3px 0px 0px;
  padding: 7px 16px;
  color: var(--primary-color);
}
#importantDatesSection .subCard .subCard-body {
  padding: 13px;
}
#importantDatesSection .subCard .subCard-body p img {
  max-width: 100%;
  height: auto;
}
#importantDatesSection .subCard .subCard-body.collapsible {
  display: none;
}
#importantDatesSection .subCard-details .sub-detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
#importantDatesSection .subCard-details .sub-detail span:last-child {
  font-weight: 700;
}
#importantDatesSection .subCard.skills .subCard-body {
  overflow: scroll;
  height: 242px;
}
#importantDatesSection #important-dates-bottom-section .table {
  border-collapse: collapse;
  margin-bottom: 0;
}
#importantDatesSection #important-dates-bottom-section .table th, #importantDatesSection #important-dates-bottom-section .table td {
  border: 1px solid #dee2e6;
  padding: 0.75rem;
  vertical-align: middle;
  font-size: 14px;
}

@media (max-width: 992px) {
  #importantDatesSection {
    margin: 20px 0;
  }
  #importantDatesSection #importantDatesSectionHeading #importantDatesArrow {
    display: none;
  }
}
