    * {
  padding: 0;
  margin: 0 auto;
}

body, html {
  max-width:100%;
  overflow-x: hidden;
  
}



@font-face {
    font-family: 'dinlight';
    src: url('../fonts/DINPro-Light.eot');
    src: url('../fonts/DINPro-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DINPro-Light.woff2') format('woff2'),
        url('../fonts/DINPro-Light.woff') format('woff'),
        url('../fonts/DINPro-Light.ttf') format('truetype'),
        url('../fonts/DINPro-Light.svg#DINPro-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'dinbold';
    src: url('../fonts/DINPro-Bold.eot');
    src: url('../fonts/DINPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DINPro-Bold.woff2') format('woff2'),
        url('../fonts/DINPro-Bold.woff') format('woff'),
        url('../fonts/DINPro-Bold.ttf') format('truetype'),
        url('../fonts/DINPro-Bold.svg#DINPro-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'dinblack';
    src: url('../fonts/DINPro-Black.eot');
    src: url('../fonts/DINPro-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DINPro-Black.woff2') format('woff2'),
        url('../fonts/DINPro-Black.woff') format('woff'),
        url('../fonts/DINPro-Black.ttf') format('truetype'),
        url('../fonts/DINPro-Black.svg#DINPro-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'din';
    src: url('../fonts/DINPro.eot');
    src: url('../fonts/DINPro.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DINPro.woff2') format('woff2'),
        url('../fonts/DINPro.woff') format('woff'),
        url('../fonts/DINPro.ttf') format('truetype'),
        url('../fonts/DINPro.svg#DINPro') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'dinmedium';
    src: url('../fonts/DINPro-Medium.eot');
    src: url('../fonts/DINPro-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DINPro-Medium.woff2') format('woff2'),
        url('../fonts/DINPro-Medium.woff') format('woff'),
        url('../fonts/DINPro-Medium.ttf') format('truetype'),
        url('../fonts/DINPro-Medium.svg#DINPro-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}





a:hover,
a:focus,
a:focus-visible {
  text-decoration: none;
  outline: none;
}

body {
font-family: 'din';
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'dinmedium' !important;
  color: #231F20;
  margin-bottom:15px;
}

@-webkit-keyframes b {
  0% {
    transform-origin: 50% 100%;
    transform: scaleY(1);
  }
  50% {
    transform-origin: 50% 100%;
    transform: scaleY(0);
  }
  50.0001% {
    transform-origin: 50% 0;
    transform: scaleY(0);
  }
  to {
    transform-origin: 50% 0;
    transform: scaleY(1);
  }
}
@keyframes b {
  0% {
    transform-origin: 50% 100%;
    transform: scaleY(1);
  }
  50% {
    transform-origin: 50% 100%;
    transform: scaleY(0);
  }
  50.0001% {
    transform-origin: 50% 0;
    transform: scaleY(0);
  }
  to {
    transform-origin: 50% 0;
    transform: scaleY(1);
  }
}
p {
  font-size: 17px;
  line-height: 1.4;
  color:#040505;
}




nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  border-bottom: 0px;
  transition: all ease-in-out 0.5s;
  background: #00000087;
}
nav .navbar {
  padding: 5px 0;
}
nav img {
  width: 150px;
}
nav .logoblack {
  display: none;
}

nav .navbar-nav .nav-item {
  margin-left: 50px;
}
nav .navbar-nav .nav-link {
  color: #FFFFFF;
  font-size: 16px;
  opacity:0.8;
  transition:all 0.5s ease 0s;
  position:relative;
  padding-left:0px !important;
  padding-right:0px !important;
  text-transform:uppercase;
}

nav .navbar-nav .nav-link::after {
    content:'';
    position:absolute;
    left:0px;
    bottom:0px;
    width:0px;
    background:#fff;
    height:1px;
    transition:all 0.5s ease 0s;
}

nav .navbar-nav .nav-link:hover {
    opacity:1;
}

nav .navbar-nav .nav-link:hover::after {
    width:100%;
}

nav.dlf_nav {
  -webkit-animation: navbar-animation 0.6s;
  animation: navbar-animation 0.6s;
  background:#000;
}

.nav-right {
    margin:0px;
    display:flex;
    align-items:center;
    margin-left:30px;
}

.topright a {
    background:none;
    color:#fff;
    border:1px solid #1D70B8;
}


@-webkit-keyframes navbar-animation {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes navbar-animation {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.hamburger .line {
  width: 30px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
}

#hamburger-11 {
  outline: none !important;
  transition: all 0.3s ease-in-out;
  position:absolute;
  right:0;
  top:15px;
}

#hamburger-11.is-active {
  -webkit-animation: smallbig 0.6s forwards;
          animation: smallbig 0.6s forwards;
}

@-webkit-keyframes smallbig {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0);
  }
}

@keyframes smallbig {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0);
  }
}
#hamburger-11.is-active .line:nth-child(1),
#hamburger-11.is-active .line:nth-child(2),
#hamburger-11.is-active .line:nth-child(3) {
  transition-delay: 0.2s;
}

#hamburger-11.is-active .line:nth-child(2) {
  opacity: 0;
}

#hamburger-11.is-active .line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#hamburger-11.is-active .line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}/*# sourceMappingURL=style.css.map */


@keyframes fadeInUp2 {
        from {
        }

        to {
            opacity: 1
        }
    }

    @-webkit-keyframes fadeInUp2 {
        from {
        }

        to {
            opacity: 1
        }
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
@-webkit-keyframes fadeInUp {
    0% {
      opacity: 0;
      -webkit-transform: translateY(40px);
      transform: translateY(40px);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      -webkit-transform: translateY(40px);
      -ms-transform: translateY(40px);
      transform: translateY(40px);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }
  }
  
  .fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }




.pad80 {
  padding: 60px 0;
}

.padt80 {
  padding-top: 60px;
}

.padb80 {
  padding-bottom: 60px;
}

.pad40 {
    padding:40px 0px;
}

.padt40 {
  padding-top: 40px;
}

.padb40 {
  padding-bottom: 40px;
}

.span {
  color: #10100f;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 25px;
  display: block;
}

.h2 {
  font-size: 40px;
  margin-bottom: 35px;
}


h4{
    font-size:25px;
}

h4 span {
    color:#23BA97;
}


.black {
    color:#000;
}

.grey {
    background:#ECF4F7;
}

.banner {
    height:100vh;
    position:relative;
}

.banner::before {
    content:'';
    position:absolute;
    left:0;
    right:0;
    height:100%;
    background:#00000078;
}

.banner .container {
    position:absolute;
    left:0;
    right:0;
    height:100%;
}

.banner .container > div {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    flex-direction: column;
}

.banner .psn-btn {
    margin:0;
}

.banner h3 {
    font-size:20px;
    color:#fff;
    font-family: 'Helvetica' !important;
    text-transform:uppercase;
    letter-spacing:2px;
}

.banner .h2 {
    color:#fff;
    font-size:50px;
    margin:0px;
    margin-bottom:50px;
}

.bannerdetail {
    color:#fff;
    font-size:22px;
}

.bannerdetail span:first-child {
    padding-right:20px;
}


.psn-btn {
    background:#fff;
    color:#1D70B8;
    padding:8px 20px;
    border:0px;
    border-radius:30px;
    transition:all 0.5s ease 0s;
    cursor:pointer;
    font-family: 'dinmedium';
    text-transform:uppercase;
}

.psn-btn:hover {
    background:#1D70B8;
    color:#fff;
}

.hoverlink {position:relative;}
.hoverlink::after {
    content:'';
    position:absolute;
    left:0;
    width:0;
    bottom:-5px;
    background:#fff;
    transition:all 0.3s ease-in-out 0s;
    height:1px;
}
.hoverlink:hover::after {width:100%;}

.aboutimg {float:right;}

.about_slide img {
    border:6px solid #4CBAED;
    border-radius:15px;
    width:100%;
}

/*accordians*/

.card {
    background:none;
    border:0px;
    margin-bottom:10px;
}

.card-header {
    background:none;
    width:100%; 
    border:0px;
    color:#040505;
    cursor:pointer;
    padding:0px;
    
}

.card-header a {
    color:#fff; 
    width:100%; 
    border:0px;
    text-align:left; 
    font-family: 'dinmedium'; 
    background:#004794;
    width:100%;
    border-radius:10px !important;
    padding:20px;
    
}




.card-header a:focus {outline:none; box-shadow:none;}



.card-body {
    background:none;
    border:0px;
    padding:20px 0;
}


.card-header a.collapsed {
    color:#040505;
    background:#CEDEE5;
}


span.cardicon {
    position: absolute;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 8px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.cardicon::before {*/
/*    content: '';*/
/*    width: 2.3px;*/
/*    height: 20px;*/
/*    left: 50%;*/
/*    top: 0;*/
/*    position: absolute;*/
/*    background: #004794;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    transition:all 0.5s ease 0s;*/
/*}*/


/*.cardicon::after {*/
/*    content: '';*/
/*    width: 20px;*/
/*    height: 2.3px;*/
/*    left: 50.5%;*/
/*    top: 0;*/
/*    position: absolute;*/
/*    background: #004794;*/
/*    top: 50%;*/
/*    transform: translateX(-50%);*/
/*    transition:all 0.5s ease 0s;*/
/*}*/

.card-header a.collapsed #Line_57 {
    display:block;
}


.card-header a #Line_57 {
    display:none;
}


.card-header a:hover {
    background:#004794;
    color:#fff;
}

.bup {
    margin:0;
}

.courtbanner {
    height: 380px;
    padding: 50px 70px;
}

.courtbanner .h2 {
    color:#fff;
    font-family: 'dinblack' !important;
    margin-bottom:20px;
}

.courtbanner p {
    color:#fff;
    font-size:20px;
}

.icons {
    position:relative;
}

.e-manage p b {
    font-family: 'dinbold';
    display:block;
    margin-bottom:12px;
    text-transform:uppercase;
}

.ic-cont::after {
    background:#ccc;
    width:1.5px;
    height:100%;
    content:'';
    position:absolute;
    right:0;
    top:0;
}

.e-manage li {
    margin-left: 17px;
    margin-bottom: 10px;
}

.noafter::after {
    display:none;
}

.ic-cont {padding-bottom:40px;}

.icons img {
    margin-bottom:15px;
    height:80px;
}

.icons p {
    margin-bottom:0px;
}

.ic-cont {
    border-bottom:1.5px solid #ccc;
}

.nobrd {border-bottom:0px;}

.iconsrow .ic-cont {
    padding-left:5%;
}

.pl-01 {
    padding-left:15px !important;
}

.nobrd {
    padding-top:30px;
    padding-bottom:0px;
}

.borderradius {
    border-radius:10px;
}

.white {
    background:#fff;
}

.we_image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.we_cont {
    padding:40px 30px;
    height:100%;
    border:1px solid #4CBAED;
}

.we_cont .h2 {
    margin-bottom:20px;
}

.ev_icons {
    margin-bottom:0px;
}


.ev_icons li {
    list-style:none;
    margin:0;
    margin:0px 25px;
}

.ev_icons .slick-list {
    margin:0 -25px;
}


.ev_icons img {
    width:100%;
    margin-bottom:20px;
    border-radius:10px;
}

.ev_icons p {
    font-family: 'dinmedium';
    margin-bottom:0px;
}


.small_banner {
    padding: 50px 70px;
    background-color: #00397B;
    background-image: url(../images/applynowbanner.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.small_banner .h2 {
    color:#fff;
    margin-bottom:60px;
}

.steps {
    margin-top:30px;
    display:flex;
    justify-content:space-between;
}

.steps li {
    list-style:none;
    margin:0px;
    position:relative;
}

.dividingsteps {
    width: 1.5px;
    background: #ccc;
    top: 0;
    transform: rotate(25deg);
}

.steps li:last-child::after {
    display:none;
}

/*.steps li h4 {*/
/*    display:flex;*/
/*}*/

.steps li h4 span {
    color:#004794;
    display:block;
    padding-right:10px;
    margin-bottom:8px;
}

.nav-tabs {border:0px; justify-content:space-between;}


.nav-tabs .nav-item {
    margin-bottom: -1px;
    margin: 0;
    width: 32.7%;
    text-align:center;
    font-family: 'dinmedium';
    border:0px;
    
}

.nav-tabs .nav-item a {
   background:#ECF4F7;
   color:#040505; 
   border:0px;
   border-radius:10px !important;
   padding:15px;
   transition:all 0.5s ease 0s;
   font-size:17px;
}

.nav-tabs .nav-item a.active, .nav-tabs .nav-item a:hover {
    background:#004794;
    color:#fff;
}

.tab-pane {
    padding-top:40px;
}

.ignition_slide {
    margin:0px;
}

.ignition_slide .slick-track {
    margin:0px;
}

.dentsu {
    max-width:150px !important;
}


.ignition_slide li {
    list-style:none;
    margin:0 8px;
}

.ignition_slide .slick-list {
    margin:0 -8px;
}

.ignition_item {
    border:1px solid #ccc;
    text-align:center;
    padding:15px;
}

.ignition_item img {
    max-width: 220px;
    padding: 40px 0px;
}

.ignition_slide li p {
    background:#ECF4F7;
    padding:8px 5px;
    border-radius:8px;
    margin:0;
}

.fade.in {
    opacity: 1;
}



.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
} 

.slick-dots {
    margin-top: 20px !important;
    /* position: initial !important; */
    bottom: 0px !important;
    position: relative !important;
}

.slick-dots li {
    height: 10px !important;
    width: 10px !important;
}

.slick-dots li button {
    width: 13px !important;
    background: #ccc !important;
    height: 4px !important;
    border-radius: 4px;
    padding: 0 !important;
    margin: 0;
    transition:all 0.5s ease 0s;
}

.slick-dots li.slick-active button {
    background:#004794 !important; 
}

.slick-dots li button:before {
    display:none;
    border:0px !important;
}

.product-showcase-carousel-controls {
    background: #ECF4F7;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 10px;
    position: absolute;
    top: 47%;
    transform: translateY(-50%);
    left: 20px;
    cursor:pointer;
    z-index:1;
    border-radius:8px;
    transition:all 0.5s ease 0s;
}

.product-showcase-carousel-controls:hover {
    background:#00397B;
}

.product-showcase-carousel-controls:hover path {
    stroke:#fff
}

.product-showcase-carousel-controls:hover line {
    stroke:#fff
}

.product-showcase-carousel-controls--right {
    left:auto;
    right:20px;
}

.testi {
    text-align:center;
    position:relative;
}

.testi::before {
    background:linear-gradient(0deg, rgba(41,72,152,1) 0%, rgba(0,57,112,0) 100%);
    height:50%;
    width:100%;
    bottom:0;
    left:0;
    position:absolute;
    content:'';
    border-bottom-left-radius:10px;
    border-bottom-right-radius:10px;
    z-index:1;
}

.testi img {
    width:100%;
}

.testi p {
    position: absolute;
    bottom: 30px;
    margin: 0;
    color: #fff;
    z-index: 1;
    padding: 0 55px;
}

.f-name {text-align:center; font-size:13px; margin-top:20px;}
.f-name span{font-family: 'dinmedium';} 

.overflow {
    overflow:hidden;
    border-radius:10px;
}

.overflow img {
    transition:all 0.5s ease 0s;
    border-radius:10px;
}

.testi:hover .overflow img{
    transform:scale(1.2);
}


.common-slide .item {margin:0px 10px;}
.common-slide .slick-list {
    margin:0 -10px;
    padding-right:20%;
}



.playbutton-utube {
    z-index: 1;
    position: absolute;
    bottom: 65px;
    left: 65px;
    cursor: pointer;
}

.video-play-button-s::after, .video-play-button-s::before {
    content: "";
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    background: #fff9f2;
    border-radius: 50%;
}

.video-play-button-s {
    position: absolute;
    z-index: 10;
    top: 40px;
    right: 40px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: block;
    border-radius: 50%;
    cursor:pointer;
}

.video-play-button-s span {
    color: #10100f;
    position: relative;
    z-index: 9;
    font-size: 12px;
    white-space: nowrap
}

.video-play-button-s span i {
    font-size: 14px !important;
    color: #004794;
    position: relative;
    top: 0px;
    left: 2px;
    margin-left: 0px !important;
}

.video-play-button-s::before {
    position: absolute;
    z-index: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    -webkit-animation: 1.5s ease-out infinite pulse-border;
    animation: 1.5s ease-out infinite pulse-border
}

.video-play-button-s::after {
    position: absolute;
    z-index: 1;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    -webkit-transition: .2s;
    transition: .2s
}

.video-play-button-s:hover:after {
    background-color: #fff
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0
    }
}


.newscontent {
    background: #ECF4F7;
    padding: 20px;
    margin-top: 10px;
    border-radius:10px;
}

.newscontent span {
    color:#909EA4;
    font-size:13px;
    display:block;
    margin-bottom:10px;
}

.newscontent p {
    display:flex;
    font-family: 'dinmedium';
    margin:0px;
}

.newscontent .svg {
    background: #fff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 8px;
    transition:all 0.5s ease 0s;
}

.newscontent .svg svg {
    transform: rotate(140deg);
}

.newsbox:hover .overflow img {transform:scale(1.2);}


.newscontent a:hover .svg {background:#00397B;}
.newscontent a:hover svg path, .newscontent a:hover svg line {
    stroke:#fff
} 

.faqleft {
    padding:30px 0px;
}

.faqbox {
    padding:20px 30px;
    margin-bottom:60px;
}


.faqbox .card-header a.collapsed {background:none; border-bottom:1px solid #ccc; color:#000; border-radius:0px !important}
.faqbox .card-header a svg {background:none; }
.faqbox .card-header a:hover {background:#004794; color:#fff; border-radius:10px !important;}
.faqbox .card-header a:hover svg path {stroke:#fff !important; fill:#fff !important}
.faqbox .card-header a svg path {stroke:#fff; fill:#fff}
.faqbox .card-header a.collapsed svg path {stroke:#004794; fill:#004794}
.faqbox .card-body {padding:20px;}





.sc_fixed {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    z-index: 10; /* Ensures it stays on top if overlapping */
}


#faqnew .card-body ul {
    padding-left:20px;
}

#faqnew .card-body ul li {
    margin-bottom:10px;
}

#faqnew .card-body ul li:last-child {
    margin-bottom:0px;
}

#faqnew .cardicon {
    background:none;
}
#faqnew span.cardicon {right:5px;}
#faqnew .card-header .cardicon line {stroke:#fff}
#faqnew .card-header a.collapsed line {stroke:#004794}
#faqnew .card-header a:hover line {stroke:#fff}



footer {
    background: #000;
    padding-top: 30px;
    color: #fff;
    text-align: center;
    font-size: 14px;
}

footer .h2 {
    text-align:center;
    font-size:40px;
    color:#fff;
}

footer .h2 span {
    display:block;
    font-size:16px;
    color:#ffffff9e;
    font-family: 'din' !important;
    margin-top:5px;
}

footer .h2 span a { color:#ffffff9e;}

footer p {
    font-size:15px;
    color:#fff;
    text-align:center;
}


.footerlogo {
    text-align:left;
}

.footerlogo img {
    width:150px;
}

.footerborder {
    color:#ffffff6b;
    border-top:1px solid #393939;
    border-bottom:1px solid #393939;
    font-size:12px;
    padding:10px 30px;
}

.social_icons {
    display:flex;
    justify-content:end;
}

.social_icons li {
    list-style:none;
    margin:0;
    margin-left:5px;
}

.social_icons li a {
    border-radius: 20px;
    width: 25px;
    height: 25px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition:all 0.5s ease 0s;
}

.social_icons li:first-child a img{
    position:relative;
    top:4px;
}

.social_icons li a:hover {
    background:#b8deff;
}

.ftcenter {color:#fff; padding:20px 0px;}
.ftcenter a {
    font-size: 15px;
    color: #fff;
    font-family: 'dinmedium';
    padding: 0 50px;
    transition:all 0.5s ease 0s;
}

.ftcenter a:hover {
    color:#1d70b7;
}


.copy {
    padding:15px;
    font-size:11px;
    text-align:center;
    color:#ffffff9e;
}

label.error {
    color:red;
    font-size:12px;
    margin-top:5px;
}


.applynow {
    background: #64C5F0;
    color: #fff;
    position: fixed;
    right: -48px;
    top: 50%;
    z-index: 99;
    border-radius: 30px;
    border-bottom: 0px;
    padding: 14px 30px;
    transition: all 0.5s ease 0s;
    transform:translate(100% , -50%) rotate(-90deg);

}

.applynow:hover {
    background:#004794;
    color:#fff;
}

.applynow.open {transform:translate(0 , -50%) rotate(-90deg);}


.desktop-none {
    display:none;
}

.cbtn-mobsh {
    display:none;
}

.shortlisted-wrap a {
    margin: 0;
    font-size: 18px;
    color: #000;
    display: flex;
        position: relative;
            align-items: center;
}

.shortlisted-wrap .d-flex{
    justify-content: space-between;
}

.shortlisted-wrap a span {background: #fff;width: 40px;height: 40px;display: flex;align-items: center;border-radius: 10px;margin-left: 20px;}
.list-theme{
    list-style:none;
    margin-bottom:0;
}

.list-theme li {
    border-top: solid 1px #4CBAED;
    padding: 20px 0;
}

.cohort-wrapper h2{
    font-size: 25px;
}
.winners-wrap .col-md-6.col-lg-4.m-0 {
    padding: 0 5px;
}

.winners-wrap .ignite-box p,
.winners-wrap .ignite-box span{
    background:#fff;
}

.winners-wrap .ignite-box small {
    background:#ECF4F7;
}
.winners-wrap .ignite-box{
    margin-bottom:10px;
    background:transparent;
}
.ignite-box span small {
   float: right;
    background: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 100%;
    position: relative;
    top: -3px;
}
.ignite-box span img{
    width:10px;
}
.ignite-box span {
    background: #ECF4F7;
    padding: 10px;
    display: block;
        color: #000;
    font-weight: 700;
    border-radius: 5px;
}
.ignite-box p{
    background:#ECF4F7;
    padding:10px;
     margin:0;
     border-radius: 5px;
}

.ignite-box img {
    width: 120px;
    height: 96px;
}

    .ignite-box {
    padding: 15px;
    border-radius: 10px;
    border: solid 1px #dedede;
    background: #fff;
}
    .e-manage p{
        margin-bottom:0;
         border-radius: 10px;
    }
    
.e-manage .icons img {
    width: 60px;
    height: auto;
}
.manage-wrap .col {
    padding: 0 5px;
}

.manage-wrap .col {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    margin: 0;
}
.e-manage {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    height: 247px;
        transition: all ease-in-out 0.5s;
}

.fourboxes .col {
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    max-width: 33%;
    margin: 0;
} 

.fourboxes .e-manage {
    height: 445px;
}

.e-manage:hover {
    background: #64C5F0;
}

.e-manage:hover p{
    color:#fff;
}

.largelogo {
    width:190px !important;
}

.more_cont {
    display: none;
}

.readmore {
    color:#1D70B8;
}

.btn-play-music {
    display:none;
}

