

:root{
  --primary-font: "Poppins", sans-serif;
  --primary-color: #0c2a68;
  --grey-color: #979797;
  --white-color: #fff;
  --black-color: #000;
  --font-weight-300:300;
  --font-weight-400:400;
  --font-weight-500:500;
  --font-weight-600:600;
  --font-weight-Bold:700;
  --font-size-12: 12px;
  --font-size-13: 13px;
  --font-size-14: 14px;
  --font-size-15: 15px;
  --font-size-16: 16px;
  --font-size-17: 17px;
  --font-size-18: 18px;
  --font-size-21: 21px;
  --font-size-24: 24px;
  --font-size-26: 26px;
  --font-size-45: 45px;
  --font-size-31: 31px;
  --font-size-32: 32px;
}
:root.red {
  --primary-color: #d31f25;
  --text-color: #ffa500;
}

:root.blue {
  --primary-color: #3365ff;
  --text-color: #45ADFE;
}

:root.pink {
  --primary-color: #cb0065;
  --text-color: #fff;
}

body {
  margin: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--primary-font);
  position: relative;  
  -webkit-font-smoothing: antialiased;
}
.counter-box {
    text-align: center;
}
.banner-section .carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    width: 20px;
    height: 6px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    border: 0;
    background-color: #fff;
    opacity: 1;
    transition: opacity .6s ease;
    border-radius: 100px;
}
.banner-section .carousel-indicators button.active{
    background: #E9AC28;
    opacity: 1;
}
.banner-section .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex
;
    justify-content: flex-start;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 4rem;
    margin-left: 6%;
    list-style: none;
}
.nav-up {
    top: -140px;
}
header {
    position: fixed;
    transition: top 0.6s ease-in-out;
    width: 100%;
    z-index: 999;
}
.mini-header a.navbar-brand {
    padding: 0;
}
.mini-header {
    display: flex;
    width: 100%;
    background: #fff0;
    border-radius: 7px;
    align-items: center;
    justify-content: space-between;
}
.nav-down {
    background: #fff;
    top: 0;
    padding: 10px 0;
}

.zoom-hover picture {
    position: relative;
    overflow: hidden;
    display: block;
}
.zoom-hover picture img {
    transition: 1.5s cubic-bezier(0, 0, .2, 1);
}
.zoom-hover:hover picture img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.cta-comman-btn img{
    margin-left: 10px;
    padding: 9px 7px;
    border-radius: 100px;
    transition: .5s cubic-bezier(0, 0, .2, 1);
}
.cta-comman-btn {
    border-radius: 100px;
    border: 1px solid var(--primary-color);
    padding: 4px 4px 4px 20px;
    display: inline-block;
    margin-top: 5px;
    font-size: 14px;
    color: var(--primary-color);
    transition: .5s cubic-bezier(0, 0, .2, 1);
    text-decoration: none;
    font-weight: 400;
}
.cta-comman-btn:hover{
    background: var(--primary-color);
    color: #fff;
}
.cta-comman-btn:hover img {
    background: #fff;
    display: inline-block;
    border-radius: 100px;
}


.primary-cta-btn {
    color: var(--white-color);
    background: #000000;
    padding: 9.5px 20px;
    border-radius: 100px;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    text-transform: uppercase;
    overflow: hidden;
    border: none;
}
.primary-cta-btn::before {
      z-index: -1;
      content: "";
      height: 100%;
      width: 0;
      background-color: #B34156;
      transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      position: absolute;
      top: 0;
      left: 0;
      z-index: 9;
  }

.primary-cta-btn:hover::before {
      width: 100%;
  }
.primary-cta-btn:hover span {
      color: #fff;
      z-index: 99;
      position: relative;
  }
.white-primary-cta-btn {
      color:var(--primary-color);
      background: #fff;
      padding: 10px 35px;
      border-radius: 5px;
      display: inline-block;
      text-decoration:none;
      font-size: var(--font-size-14);
      font-weight: var(--font-weight-500);
      position: relative;
      cursor: pointer;
    overflow: hidden;
    border: none;
  }

.white-primary-cta-btn::before {
      z-index: -1;
      content: "";
      height: 100%;
      width: 0;
      background-color: #000;
      transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      position: absolute;
      top: 0;
      left: 0;
      z-index: 9;
  }

.white-primary-cta-btn:hover::before {
      width: 100%;
  }
.white-primary-cta-btn:hover span {
      color: #fff;
      z-index: 99;
      position: relative;
  }

a.navbar-brand picture {
    z-index: 99;
    top: 5px;
}

.common-line {
    position: relative;
}
.common-line img {
    position: absolute;
    bottom: 8px;
    left: 0;
}


.highlight .common-line img {
    position: absolute;
    bottom: 5px;
    left: 0;
}

.common-line-full {
    position: relative;
}

.common-line span{
    z-index: 99;
    position: relative;
}
.common-line-full img {
    position: absolute;
    bottom: -4px;
    left: 0;
}
.common-line-full span.zindex-text {
    z-index: 99;
    position: relative;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}



section.banner-section {
    position: relative;
    margin-top: 90px;
}
.nicmar-logo {
    position: absolute;
    left: 6%;
    top: 18%;
    z-index: 99;
}
.cities-text .common-line img {
    position: absolute;
    bottom: 2px;
    left: 0;
}
.banner-text {
    position: absolute;
    bottom: 15%;
    left: 6%;
}
.banner-text h1 {
    color: #fff;
    font-size: 45px;
    line-height: 51px;
    font-weight: 600;
    margin-bottom: 20px;
}
.banner-text p{
    font-size: 16px;
    color: #fff;
}
.banner-text p span{
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}
.counter-section{
    padding: 50px 0;
}
.counter-box span.count.percent {
    color: #B34156;
    font-size: 45px;
    font-weight: 600;
}
.counter-box .plus {
    color: #B34156;
    font-size: 45px;
    font-weight: 600;
}
.counter-box span.lpa {
    color: #B34156;
    font-size: 15px;
    font-weight: 600;
}
.counter-box h5 {
    font-weight: 300;
    font-size: 12px;
    line-height: 19px;
    color: #000000;
}
.beyond-section{
    overflow: hidden;
    padding-bottom: 70px;
}
.beyond-image {
    position: relative;
}
.years-excellence-text {
    position: absolute;
    background: #B34156B2;
    backdrop-filter: blur(38.25784683227539px);
    color: #fff;
    width: 213.18377685546875px;
    height: 229.89215087890625px;
    text-align: center;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: -7%;
    top: 17%;
}
.beyond-image {
    position: relative;
    padding-right: 60px;
}
.years-excellence-text h2 {
    font-size: 51.86px;
    font-weight: 600;
    line-height: 58.77px;
}
.years-excellence-text p{
    margin: 0;
    font-size: 17.83px;
    line-height: 19.59px;
}
.beyond-text h6{
    font-weight: 300;

}
.beyond-text h6 span{
    color: #B34156;
    margin-right: 5px;
}
.highlight {
  position: relative;
  color: black;
}



.changing-text {
  color: #b54857;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: inline-block;
}

.changing-text.show {
  opacity: 1;
}
.beyond-text h2 {
    font-weight: 600;
    font-size: 40px;
    margin: 30px 0 40px;
}
.beyond-text {
    padding-left: 70px;
    padding-top: 30px;
    padding-right: 80px;
}
.beyond-text h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
}
.para-listing {
    border-top: 1px solid #D9D9D9;
    margin-top: 20px;
    padding-top: 20px;
}
.para-listing p {
    color: #000000;
    font-weight: 300;
}
.para-listing ul {
    padding: 0;
    list-style-type: none;
    margin-bottom: 35px;
}
.para-listing ul li {
    font-weight: 300;
    font-size: 14px;
    color: #000000;
    margin: 10px 0;
}
.para-listing ul li img{
    vertical-align: text-bottom;
    margin-right: 10px;
}
.cities-section{
    overflow: hidden;
    padding-bottom: 20px;
}
.cities-box {
    position: relative;
}
.cities-text {
    position: absolute;
    background: #fff;
    bottom: 30px;
    right: 30px;
    width: 217px;
    display: flex;
    height: 252px;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    align-items: flex-start;
}

.programs-section .common-line img {
    position: absolute;
    bottom: 10px;
    left: -10px;
}
.programs-section {
    padding: 60px 0;
    background: #F5F1E9;
}
.programs-section .section-heading h6{
    font-weight: 300;
}
.programs-section .section-heading h6 span{
    color: #B34156;
    margin-right: 5px;
}
.programs-section .section-heading h2{
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 20px;
}
.programs-box {
    border: 1px solid #8E8E8E;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.5s cubic-bezier(0, 0, .2, 1);
}
.programs-box:hover {
    color: #fff;
    background: #B34156;
}
.programs-box:hover .head-desig h5{
    color: #fff;
}
.head-desig h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 33px;
}
.head-desig h5 {
    color: #B34156;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 20px;
    transition: 0.5s cubic-bezier(0, 0, .2, 1);
}
.programs-para p span{
    font-weight: 600;
}
.programs-para p{
    font-weight: 300;
    font-size: 14px;
}
.programs-text-link h4 {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 25px;
}
.programs-text-link {
    margin-top: 25px;
}
.programs-box:hover .primary-cta-btn::before {
      z-index: -1;
      content: "";
      height: 100%;
      width: 0;
      background-color: #000;
      transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      position: absolute;
      top: 0;
      left: 0;
      z-index: 9;
  }


.crip-section .common-line img {
    position: absolute;
    bottom: 10px;
    left: -10px;
}
.crip-section{
    padding: 50px 0;
}
.crip-section .section-heading h6{
    font-weight: 300;
}
.crip-section .section-heading h6 span{
    color: #B34156;
    margin-right: 5px;
}
.crip-section .section-heading h2{
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 10px;
}
.crip-section .section-heading p{
    margin-bottom: 10px;
    font-weight: 14px;
    font-weight: 300;
}
.pg-points ul {
    padding: 0;
    list-style: none;
}
.pg-points ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #F7F4EE;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
    padding: 15px;
}
.pg-head{
    margin-top: 20px;
}
.pg-head h3 {
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #D9D9D9;
}
.crip-slider-section h5{
    font-weight: 600;
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 23px;
}
.crip-slider-section {
    margin-top: 20px;
    overflow: hidden;
}
.crip-slider-box{
    position: relative;
}

.crip-slider-box h3 {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    padding: 0 25px;
}
.crip-slider{
    margin-bottom: 20px;
}
.crip-slider button.owl-next:before {
    background: url(../images/right-arrow.svg);
    right: 70px;
    background-repeat: no-repeat;
    position: absolute;
    transition: .3s;
    height: 16px;
    width: 41px;
    bottom: -15%;
    content: '';
}
.crip-slider button.owl-prev:before {
    background: url(../images/left-arrow.svg);
    left: 70px;
    background-repeat: no-repeat;
    position: absolute;
    transition: .3s;
    height: 16px;
    width: 41px;
    bottom: -15%;
    content: '';
}
.crip-slider .owl-nav{
    height: 0;
}
.crip-slider .owl-nav button span {
    display: none;
}


.career-section .common-line img {
    position: absolute;
    bottom: 10px;
    left: -6px;
}
.career-section {
    overflow: hidden;
    background: #F7F4EE;
    padding-bottom: 50px;
}
.career-text h6{
    font-weight: 300;

}
.career-text h6 span{
    color: #B34156;
    margin-right: 5px;
}

.career-text h2 {
    font-weight: 600;
    font-size: 45px;
    margin: 20px 0 10px;
}
.career-text h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
}
.career-text {
    padding-left: 50px;
    padding-top: 40px;
    padding-right: 70px;
}
.career-image {
    padding-right: 25px;
}

.career-text .para-listing {
    border-top: 1px solid #D9D9D9;
    margin-top: 20px;
    padding-top: 20px;
}
.career-text .para-listing p {
    color: #000000;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 25px;
}
.career-text .para-listing ul {
    padding: 0;
    list-style-type: none;
    margin-bottom: 35px;
}
.career-text .para-listing ul li {
    font-weight: 300;
    font-size: 14px;
    color: #000000;
    margin: 15px 0;
}
.para-listing ul li img{
    vertical-align: text-bottom;
    margin-right: 10px;
}
.career-logo {
    border: 1px solid #D9D9D9;
    border-right: none;
}
.career-slider{
    margin-top: 40px;
}

.career-section .premier-role-text .common-line img {
    position: absolute;
    bottom: 10px;
    left: -10px;
}
.premier-role-text h6{
    font-weight: 300;

}
.premier-role-text h6 span{
    color: #B34156;
    margin-right: 5px;
}

.premier-role-text h2 {
    font-weight: 600;
    font-size: 45px;
    margin: 20px 0 10px;
    line-height: 54px;
}
.premier-role-text h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
}
.premier-role-section {
    background: #fff;
    margin-top: 30px;
    padding: 30px;
}
.premier-role-text {
    padding-left: 30px;
}
.average-package h2 {
    color: #B34156;
    font-weight: 600;
    font-size: 45px;
    line-height: 38px;
    text-transform: uppercase;
    margin: 0;
}
.average-package h2 span{
    font-size: 15px;
}
.average-package-text {
    display: flex;
    gap: 100px;
    margin-top: 20px;
}
.average-package p {
    font-size: 12px;
    font-weight: 300;
}
.management-text h4 {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
}

.captcha.g-recaptcha {
    text-align: -webkit-center;
}
.testimonials-section{
    position: relative;
}
.testimonials-text h6{
    font-weight: 300;
    color: #fff;

}
.testimonials-text h6 span{
    color: #fff;
    margin-right: 5px;
}
.quote-image {
    margin-bottom: 20px;
}
.testimonials-text h2 {
    font-weight: 600;
    font-size: 45px;
    margin: 20px 0 10px;
    color: #fff;
}
.testimonials-slider.owl-carousel .owl-item img{
    width: auto;
}

.testimonials-box {
    background: #fffFFFB0;
    padding: 20px 20px;
    position: relative;
    height: 460px;
}

.testimonials-section .container {
    position: absolute;
    left: 0;
    right: 0;
    top: 20px;
}
.testimonials-para p {
    font-size: 14px;
    font-weight: 300;
}
.admissions-text br{
    display: block;
}

@media (max-width: 1366px){
    .testimonials-box {
        height: 430px;
    }
    .testimonials-section .container {
        top: 0px;
    }
    .testimonials-para p {
        font-size: 13px;
    }
    .admissions-text br{
    display: none;
}
}
.person-image {
    position: absolute;
    right: 40px;
    top: -50px;
}
.person-image picture img {
    border-radius: 100px;
}

.testimonials-desig-name{
    border-top: 1px solid #000;
    padding-top: 10px;
}
.testimonials-section .owl-carousel .owl-stage-outer{
    padding: 60px 0;
}

.testimonials-desig-name h6 {
    font-size: 14px;
    font-weight: 300;
    margin: 5px 0;
}
.testimonials-slider .owl-item.current .testimonials-box{
   background: #B34156B0;
   box-shadow: 0px 36px 33.2px 7px #00000033;
   backdrop-filter: blur(91.19999694824219px)
}
.testimonials-slider .owl-item.current .testimonials-box .testimonials-para p {
    color: #fff;
}
.testimonials-slider .owl-item.current .testimonials-box .testimonials-desig-name{
    border-top: 1px solid #fff;
}
.testimonials-slider .owl-item.current .testimonials-desig-name h6 {
    color: #fff;
}
.testimonials-slider .owl-item.current .quote-image img{
    filter: invert(100%) sepia(98%) saturate(0) hue-rotate(346deg) brightness(101%) contrast(104%);
}
.testimonials-text {
    margin-top: 100px;
}

.testimonials-slider button.owl-next:before {
    background: url(../images/right-arrow.svg);
    right: -70px;
    background-repeat: no-repeat;
    position: absolute;
    transition: .3s;
    height: 16px;
    width: 41px;
    bottom: 0%;
    filter: invert(100%) sepia(98%) saturate(0) hue-rotate(346deg) brightness(101%) contrast(104%);
    content: '';
}
.testimonials-slider button.owl-prev:before {
    background: url(../images/left-arrow.svg);
    left: -50px;
    background-repeat: no-repeat;
    position: absolute;
    transition: .3s;
    height: 16px;
    width: 41px;
    bottom: 0%;
    filter: invert(100%) sepia(98%) saturate(0) hue-rotate(346deg) brightness(101%) contrast(104%);
    content: '';
}
.testimonials-slider .owl-nav {
    height: 0;
    position: absolute;
    bottom: 140px;
    left: -44%;
}
.testimonials-slider .owl-nav button span {
    display: none;
}



.admissions-section .common-line img {
    position: absolute;
    bottom: 3px;
    left: 0;
    display: block;
    position: relative !important;
}

.admissions-text h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 39px;
    margin-bottom: 20px;
}
.admissions-text a.primary-cta-btn {
    padding: 9.5px 40px;
}
.admissions-text-second h6 {
    font-weight: 300;
    margin: 20px 0;
}
.admissions-text-second h6 span{
    color: #B34156;
    margin-right: 10px;
}
.admissions-text-second p img{
    margin-right: 10px;
}
.admissions-text-second p {
    font-weight: 300;
    margin: 0;
}
.admissions-text-second a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}
.admissions-row{
    background: #F7F4EE;
    margin-top: 40px;
}
.admissions-text {
    padding: 50px 40px;
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    justify-content: center;
}
.admissions-section{
    padding-bottom: 50px;
}


.campus-section .common-line img {
    position: absolute;
    bottom: 4px;
    left: -42px;
}
.campus-section {
    padding-bottom: 0;
}
.campus-section .section-heading h6{
    font-weight: 300;
}
.campus-section .section-heading h6 span{
    color: #B34156;
    margin-right: 5px;
}
.campus-section .section-heading h2{
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 20px;
}
.campus-slider{
    margin-top: 20px;
}
.campus-slider.owl-carousel .owl-item .play-icon img{
    width: auto;
}
.campus-slider-box {
    position: relative;
}
.campus-slider-box .play-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
}


.campus-slider button.owl-next:before {
    background: url(../images/right-arrow.svg);
    right: -20px;
    background-repeat: no-repeat;
    position: absolute;
    transition: .3s;
    height: 16px;
    width: 41px;
    top: 43%;
    content: '';
}
.campus-slider button.owl-prev:before {
    background: url(../images/left-arrow.svg);
    left: -20px;
    background-repeat: no-repeat;
    position: absolute;
    transition: .3s;
    height: 16px;
    width: 41px;
    top: 43%;
    content: '';
}
.campus-slider .owl-nav button span {
    display: none;
}



.achievers-section .common-line img {
    position: absolute;
    bottom: 2px;
    left: 0;
}
.achievers-text p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0;
}
.achievers-text h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 39px;
    margin-bottom: 40px;
}
.achievers-pointers ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}
.achievers-pointers ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 15px;
}
.achievers-pointers h4{
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
}
.achievers-section .row.gx-5 {
    margin-top: 40px;
    padding-bottom: 20px;
}
.footer-logo-link {
    display: flex
;
    align-items: center;
    justify-content: space-between;
}
footer{
    padding:20px 0 30px;
}
.footer-logo a {
    text-decoration: none;
    color: #000;
    font-weight: 300;
    margin: 5px;
}
.footer-logo span{
    color: #B34156;
}
/**/




.paginacontainer img {
    position: absolute;
    left: 9px;
    top: 9px;
    background: #e9ac28;
    z-index: 999;
    padding: 6px;
}


/* #Progress
================================================== */

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset  0 0 0 2px #E9AC28;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    background: #E9AC28;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: rgba(0, 0, 0, 0.3); /* --- Pijl kleur --- */
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
    opacity: 0;
}
.progress-wrap::before {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background: black; /* --- Pijl hover kleur --- */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
    opacity: 1;
}
.progress-wrap svg path { 
    fill: none; 
}
.progress-wrap svg.progress-circle path {
    stroke: #B34156; /* --- Lijn progres kleur --- */
    stroke-width: 4;
    box-sizing:border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/**/
.errormsg {
    position: absolute;
    bottom: -20px;
    left: 2px;
    padding: 1px 5px;
    display: none;
    font-size: 11px;
    color: #9b4f00;
}
input#contact {
    padding-left: 50px;
}
.form-inputs label {
    position: absolute;
    top: 12px;
    left: 10px;
    font-size: 12px;
    color: #000000;
    margin-bottom: 15px;
}
.form-inputs {
    position: relative;
    margin-bottom: 15px;
}
.form-box {
    background: #F4F1F1;
    padding: 25px;
}
#NikmarBannerFrom .panel-heading {
    /* display:none; */
}
.form-custom input {
    width: 100%;
    background: #fff;
    border: none;
    padding: 11px !important;
    border-radius: 7px;
    font-size: 12px;
    height: auto !important;
}
 #Agree{display:inline-block;width:auto!important;vertical-align: middle;}
.dynamic_theme_block .form-custom .agree-group .agree-condition {
    color: #515151;
    font-size: 11px;
    margin: 0;
    padding: 0;
    text-align: left;
}
.form-custom select {
    border: none;
    padding: 11px;
    border-radius: 7px;
    font-size: 12px;
    color: #6c757d;
    background:#fff url(../images/select-drop.svg) !important;
    opacity: 100% !important;
    background-repeat: no-repeat !important;
    background-position: 94% !important;
    width: 100%;
    height: auto !important;
}
.form-custom select:focus{
    outline: none;
    box-shadow: none;
}
.form-custom input:focus{
    outline: none;
    box-shadow: none;
}
#NikmarBannerFrom .fade{
  opacity:1 !important;
}
span.sr-only {
    display: none;
}

button.btn.btn-default.dropdown-toggle.as-is.bs-dropdown-to-select {
    width: 100%;
    background: #fff;
    border: none;
    padding: 11px !important;
    border-radius: 7px;
    font-size: 12px;

}
.jumplinks-menu-wrapper {
    position: absolute;
    right: 0;
    z-index: 99;
    top: 5px;
    width: 395px;
}
@media (max-width: 1366px){
.jumplinks-menu-wrapper {
    position: absolute;
    right: 0;
    z-index: 99;
    top: 5px;
    width: 395px;
}
}
.jumplinks-menu-wrapper:before {
    content: '';
    background: #E9AC28;
    width: 153px;
    height: 5px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
}
.jumplinks-menu-wrapper:after {
    content: '';
    background: #E9AC28;
    width: 153px;
    height: 5px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
}
.form-checkbox label {
    font-size: 11px;
}
.form-checkbox {
    margin-bottom: 15px;
}
.book-now-btn .primary-cta-btn {
    width: 100%;
    text-align: center;
}
form#NikmarBannerFrom h2 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 15px;
}
.form-checkbox input[type="checkbox"] {
    vertical-align: middle;
    margin-right: 5px;
}
#jLinkSliderContainer .swiper-slide {
    text-align: center;
    font-size: 18px;
}
.jlinks-menu {
    width: 395px;
}
.jlinks-menu a {
    color: #444;
    text-decoration: none;
}
.jlinks-menu-hidden {
    right: -395px;
}
.toggle-position {
    right: 30px;
}
.menu-button a {
    position: absolute;
    right: 339px;
    cursor: pointer;
    background: #B34156;
    top: 100px;
    border: none;
    rotate: 90deg;
    font-size: 17px;
    padding: 12px;
    font-weight: 600;
    color: #fff;
    width: 161px;
    text-align: center;
    text-decoration: none;
}

.panel.dynamic_theme_block .form-custom {
    max-height: 100%;
    padding-right: 0;
}
.dynamic_theme_block .panel-body{
    box-shadow:none !important;
}

.form-group.label-floating.Mobile.country_dial_code.reg_mobile_div {
    flex-grow: 1;
}
.dynamic_theme_block .form-custom .merge_field_div{
    margin-bottom:0px;
}
.dynamic_theme_block .tab-pane .form-group {
    margin-bottom: .5rem;
}

.form-group.label-floating.reg_university_id_div.UniversityId.field-select {
    width: 50%;
    display: inline-block;
    padding: 0 15px 0 0;
}
.dynamic_theme_block .form-custom .form-group.CourseId {
    width: 50%;
    float: right;
    padding: 0 0px 0 0;
    z-index: 1;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}
.dynamic_theme_block .fpass a {
    font-size: 12px;
    color: #2874f0;
    padding: 10px 0 0;
    display: block;
}

button#registerBtn,
.dynamic_theme_block .btn-register{
    background: #334a9f!important;
    color: white !important;
    text-transform: uppercase;
     border:none !important;
}
button#registerBtn:hover,
.dynamic_theme_block .btn-register:hover,
button#resendVlinkBtn:hover,
button#loginBtn:hover,
.dynamic_theme_block .btn-login:hover{
    color:#fff !important;
}
button#resendVlinkBtn {
   
    background: #334a9f!important;
    color: white !important;
    text-transform: uppercase;
    border:none !important;
}

button#loginBtn {
       background: #334a9f !important;
       color: white !important;
       text-transform: uppercase;
    border:none !important;
}
.dynamic_theme_block .btn-login{
     background: #334a9f !important;
       color: white !important;
       text-transform: uppercase;
    border:none !important;
    width:100% !important;
}
.dynamic_theme_block .panel-heading{
    background:transparent !important;
}
.dynamic_theme_block .panel-heading  .nav-tabs li:not(:last-child){
    margin-right:10px;
}
.dynamic_theme_block .panel-heading .nav-tabs{
    background:transparent !important;
    border-bottom:0px !important;
}
.dynamic_theme_block .panel-heading  .nav-tabs li a.active{
    background:#334a9f;
    color:#fff;
    padding:8px;
    border-radius:4px 4px 0px 0px;
}
.dynamic_theme_block .panel-heading  .nav-tabs li a{
    background:#fff;
    color:#000;
    padding:8px;
    border-radius:4px 4px 0px 0px;
}
.dynamic_theme_block .panel-heading  .nav-tabs li a:hover,
.dynamic_theme_block .panel-heading  .nav-tabs li a:focus,
.dynamic_theme_block .panel-heading  .nav-tabs li a:active{
    text-decoration:none;
}
.form-control::placeholder{
    font-size:13px;
}