@charset "UTF-8";
/* CSS Document */
*{
    margin: 0;
    padding: 0;
}
body{
    width: 100%;
    height: auto;
    background-color:#ffffff !important;
    font-family: 'Poppins', sans-serif;
}
a:hover{text-decoration: none !important; }
h1{
    font-size: 30px !important;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
    color: #25285E !important;
}
h2{
    font-size: 25px !important;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
    color: #25285E !important;
}
h3{
    font-size: 22px !important;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
    color: #25285E !important;
}
nav{
    background: rgb(255, 255, 255);
    /* position: fixed; */
    margin: auto;
    width: 100%;
    z-index: 999;
    height: auto;
    line-height: 80px;
    border-bottom: 1px solid #f1f1f1;
}
nav .wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
}
.logo img{width: 174px; height: auto;}
.wrapper .nav-links{
    display: inline-flex;
    margin-bottom: 0;
}
.nav-links li{
    list-style: none;
}
.nav-links li a{
    color: #25285E;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
    text-decoration: none;
    padding: 10px;
}

.nav-links li a.acyive, .nav-links li a:hover{
    color: #E65346 !important;
    transition: .3s;
}
a.lgn-btn {
    background: #E65346;
    color: #fff !important;
    padding: 16px 32px !important;
    border-radius: 10px;
    margin-left: 20px;
}
.nav-links li a.lgn-btn:hover {
    color: #fff !important;
    background: #EE6F64;
}
.nav-links .drop-menu{
    position: absolute;
    width: 250px;
    background-color: rgb(230, 230, 230);
    top: 80px;
    line-height: 35px;
    opacity: 0;
    visibility: hidden;
}
.drop-menu li a{
    display: block;
    width: 100%;
    padding-left: 20px;
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
    top: 100px;
    opacity: 1;
    visibility: visible;
    transition: all .9s ease;
}
.mega-box{
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    background: #F8F8F8;
    top: 100px;
    opacity: 0;
    visibility: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    border-radius: 10px;
    z-index: 999;
}
.mega-box .content{
    width: 100%;
    display: flex;
    padding: 20px 50px;
    justify-content: space-between;
}
.content .mmenu-row{
    width: calc(30% - 20px);
    line-height: 45px;
    display: block;
}
.nav-links .mobile-item{
    display: none;
}
.mmenu-row .mega-links li a{
    display: block;
    color: #333;
}
.wrapper .btn{
    cursor: pointer;
    display: none;
    font-size: 20px;
    font-size: 20px;
}
.wrapper .cancel-btn{
    position: absolute;
    top: 30px;
    right: 10px;
    display: block;
    color: #25285E;
    font-size: 16px;
    font-weight: 600;
    display: none;
}
.wrapper input[type="checkbox"], input[type="radio"]{
    opacity: 0;
}
.mega-links p {
    line-height: 24px;
    color: #25285E;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 0;
}
.mega-links img {
    width: 80px;
    height: 60px;
    object-fit: cover;
}
a.modules-sec:hover {
    transition: all 3s ease;
}
a.modules-sec:hover {
    background: #fff;
    transition: all 3s ease;
}
label.btn.menu-btn {
    padding: 0;
    margin-bottom: 0;
}
.height-wrapper{
    height: 1000px;
}
.banner{
    background: url(../images/banner.png) no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    max-height: 520px;
    position: relative;
}
.banner-content {
   display: flex;
   height: 100%;
   width: 100%;
   align-items: flex-end;
}
.banner-content p{
    color: #25285E;
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 35px;
}
.banner-content ul {
    list-style: none;
    display: flex;
    align-items: center;
}
.banner-content ul li {
    padding: 10px 20px 10px 0;
}
.banner-inn{
    background: url(../images/banner_inn.png) no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    max-height: 211px;
    position: relative;
}
.banner-inn::before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    position: absolute;
    left: 0;
    top: 0;
}

.banner-content-inn{
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
}
.banner-content-inn h1{
    font-size: 40px;
    font-weight: 600;
    color: #25285E;
}
.banner-content-inn p{
    color: #25285E;
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
}
.myprofile{
    background: url(../images/myprofile_banner.png) no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    max-height: 211px;
    position: relative;
    margin-bottom: 100px;
}
.learn-more{
    background: #E65346;
    color: #fff !important;
    padding: 16px 32px !important;
    border-radius: 10px;
}
.learn-more:hover{
    text-decoration: none;
    color: #fff !important;
    background: #EE6F64;
}
.banner-logos{
    margin-top: 40px;
}
.banner-logos p{
    margin-bottom: 0px;
    font-size: 16px;
}
.module-banner{
    position: relative;
    margin-bottom: 30px;  
}
.module-banner img{
    width: 100%;
    border-radius: 15px;
 }
 .module-banner::after{
     content: '';
    width: 100%;
    height: 100%;
    background: rgb(2,0,36);
    background: linear-gradient(0deg, rgba(37,40,94,1) 26%, rgba(255,255,255,0) 97%);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.3;
    border-radius: 15px;
 }
.module-banner-content {
    position: absolute;
    bottom: 0;
    padding-left: 30px;
    z-index: 999;
    color: #fff;
}
.module-banner-content h3{
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}
.module-banner-content p{
    font-size: 20px;
}
.modules {
    margin: 50px 0;
}
.modules-section h1 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #25285E;
}

.card.activity {
    border-radius: 10px;
    /* max-width: 540px; */
    max-width: 100% !important;
    transition: all 0.5s ease;
    min-height: 143px;
}
.card.activity:hover{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.activity.othr_modls {
    min-height: auto;
}
.activity_img {
    width: 100%;
    min-width: 142px;
    height: 147px;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}
.activity-cndnt {
    /* padding: 10px 5px 10px 10px; */
    padding: 10px;
}
.activity-cndnt p{
    font-size: 14px;
    font-weight: 600;
    line-height: 23px;
    color: #25285E;
    margin-bottom: 5px;
}

.date {
    color: #777997;
    font-size: 12px;
    font-weight: 500;
}
h5.medule-type{
    font-size: 13px;
    color: #E65346;
    font-weight: 500;
    margin-bottom: 10px;
}
ul.module-icons {
    list-style: none;
    display: flex;
    margin-top: 15px;
    margin-bottom: 0;
    align-items: center;
}
ul.module-icons li {
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: #25285E;
    font-size: 12px;
    font-weight: 500;
}
ul.module-icons li span {
    width: 30px;
    height: 30px;
    background: #FFF3EE;
    padding: 5px;
    border-radius: 50%;
    margin-right: 5px;
}
ul.module-icons li span img {
    height: 100% !important;
    object-fit: contain !important;
    width: 100% !important;
}
.activity-cndnt h5{
    font-size: 13px;
    color: #E65346;
    font-weight: 500;
    margin-bottom: 10px;
}
.see-more{
    background: #ffffff;
    color: #5E62A0 !important;
    padding: 13px 20px !important;
    border-radius: 10px;
    border: 1px solid #5E62A0;
    transition: all 0.5s ease;
    margin-top: 40px;
    display: inline-block;
    font-size: 14px;
}
.see-more:hover{
    text-decoration: none;
    color: #fff !important;
    background: #5E62A0;
}
.see-more.dcsn-btn{
    background: #ffffff;
    color: #5E62A0 !important;
    padding: 13px 0 !important;
    border-radius: 10px;
    border: 1px solid #5E62A0;
    transition: all 0.5s ease;
    display: inline-block;
    font-size: 14px;
    margin-top: 0;
    width: 150px;
    text-align: center;
}
.see-more.dcsn-btn:hover{
    text-decoration: none;
    color: #fff !important;
    background: #5E62A0;
}
.decision_tools_sec{
    background: url(../images/decision_tools_bg.png) no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    max-height: 530px;
    position: relative;
    display: flex;
    align-items: center;
}
.decision_tools_sec::before{
    content: '';
   width: 100%;
   height: 100%;
   background: rgba(255, 255, 255, 0.7);
   position: absolute;
   left: 0;
   top: 0;
}
h1.main-hd {
    text-align: center;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 600;
    color: #25285E;
}
.card.decision_tools {
    height: 350px;
    border-radius: 16px;
    background: #EAF2FC;
    position: relative;
    transition: all 0.8s ease;
}
.card.decision_tools img {
    border-radius: 15px;
}
.card-body.decision_tools_txt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.dcsn-contend {
    background: #fff;
    margin: 10px;
    padding: 15px;
    border-radius: 15px;
    position: absolute;
    bottom: 1%;
    transition: all 0.8s ease;
}
p.hd-condent {
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;
    color: #25285E;
    margin-bottom: 5px;
}
.card.decision_tools:hover .dcsn-contend {
    bottom: 23%;
    transition: all 0.8s ease;
}
.live_events {
    margin: 50px 0;
}
.card.decision_tools.cntnd-type {
    margin-bottom: 30px;
}
img.card-img-top.cntnd-type-img {
    height: 250px;
    object-fit: cover;
}
.flter-mdul {
    width: 200px !important;
}
.activity-hd {
    background: #ECF4FE;
    padding: 50px 0 100px;
    position: relative;
    margin-bottom: 100px;
}
.actvt-left img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}
a.btn.actvt-btn {
    background: #fff;
    border-radius: 30px;
    margin-top: 10px;
    color: #656263;
    font-size: 14px;
}
.actvt-rt{
    border-bottom: 1px solid #92BAD2;
    margin-bottom: 20px;
}
.actvt-rt h3 {
    font-size: 23px;
    font-weight: 600;
    color: #25285E;
}
.actvt-rt p span {
    color: #27130A;
    font-size: 15px;
    font-weight: 500;
}
.actvt-rt p{
    color: #27130A;
    font-size: 14px;
    margin-bottom: 20px;
}
.authr-sec {
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
    margin-bottom: 10px;
}
.authr-sec img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 32px;
    margin-right: 10px;
}
.authr-sec p {
    font-size: 14px;
    margin-bottom: 0;
}
.claim_sec {
    background: #fff;
    border-radius: 15px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
    margin-bottom: -50%;
    margin-top: 20px;
    width: 100%;
}
.claim{
    text-align: center; 
    position: relative; 
    padding: 20px 0  20px 20px; 
    font-size: 17px;
}

.claim-btn {
    background: #E65346;
    color: #fff !important;
    padding: 15px 20px !important;
    border-radius: 10px;
    font-size: 17px;
    display: inline-block;
}
.brdr-rt{
    border-right: 1px solid #F4F0E9;
}
.brdr-lft{
    border-left: 1px solid #F4F0E9;
}
.claim-txt{
    padding: 20px; 
}
.claim-txt p{
    font-size: 14px;
    margin-bottom: 5px;
}

.H100{
    height: 100%;
}


/* content-player-start */
.content-player{
    width: 100%;
    display: block;
    position: relative;
    margin-bottom: 50px;
}
.cp-sec{
    width: 100%;
    /* max-width: 800px; */
    margin: 0 auto;
    /* position: absolute; */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    padding: 10px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #f3f3f3;
    position: relative;
}
.cp-rt-sec{
    width: 30%;
    padding-left: 10px;
    display: inline-block;
}
.video-sec{
    width: 100%;
    background: #ededed;
    padding: 0 5px 5px 5px;
}
.controls{
    display: flex;
    /* position: absolute; */
    left:0;
    width:100%;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 0 0 15px 15px;
}
.control-btns {
    padding: 5px 10px;
    width: 70%;
}
.control-btns button{
    background: none;
    outline: 0;
    cursor: pointer;
    border: 0;
}
.control-btns button:before{
    content: '\f144';
    font-family: "Font Awesome 5 Free";
    color: #1A2B58;
    font-size: 28px;
    width: 30px;
    height: 30px;
    display: inline-block;
}
.control-btns button.play::before{
    content: '\f144';
}
.control-btns button.pause::before{
    content: '\f28b';
}

.play-bar-sec{
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background:#e4e4e4;
    border-radius: 10px;
    margin: 0 5px;
}
.play-bar{
    background-color: #669940;
    height: 10px;
    width: fit-content;
    border-radius: 10px;
}
.carousel {
    position: relative;
  }
  .carousel-item img {
    object-fit: cover;
  }
  .cp-carousel-lg{
      width: 60% !important;
      float: left;
  }
 

  button:focus{
    outline: none !important;
  }
  .cp-vdotm-sec {
    width: 100%;
    padding: 10px;
    background: #E0F0E6;
    overflow-y: scroll;
    height: 470px;
}
  .cp-vdotm-sec ul{
    list-style: none;
    margin-bottom: 0;
}
.cp-vdotm-sec ul li{
    list-style: none;
    display: flex;
    margin-bottom: 15px;
    cursor: pointer;
}
.cp-vdotm-sec ul li p{
    width: 80%;
    margin-bottom: 0px;
    font-size: 14px;
}
.cp-vdotm-sec ul li span{
    width: 20%;
    margin-bottom: 0px;
    font-size: 13px;
    text-align: right;
    
}
.cp-slide-lg-top-bar {
  background: #E0F0E6;
  padding: 5px;
  text-transform: uppercase;
  font-size: 14px;
  color: #1A2B58;
}
.cp-slide-lg-top-bar a {
  color: #1A2B58;
  font-weight: 500;
}
.cp-slide-lg-top-bar a:hover {
  text-decoration: none;
  color: #1A2B58;
}

.cp-slides-top-bar {
  background: #F6F6F6;
  padding: 5px 10px;
  font-size: 14px;
  color: #1A2B58;
  width: 100%;
  margin-top: 10px;
}
.cp-slides-top-bar a{
  color: #1A2B58;
  text-decoration: none;
}

.cp-vdo-top-bar {
  padding: 5px;
  text-align: right;
  background: linear-gradient(0deg, rgba(237,237,237,1) 0%, rgba(188,191,202,1) 100%, rgba(191,195,205,1) 100%, rgba(255,255,255,1) 100%);
}
.cp-vdo-top-bar a {
  color: #1A2B58;
}
a.cp-arrow{
  width: 10%;
}
a.cp-arrow span{
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
a.cp-arrow span i {
  color: #1A2B58;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 30%;
}
.control-btns-rt {
  padding: 5px 10px;
  width: 30%;
  text-align: right;
}
.control-btns-rt button{
  background: none;
  outline: 0;
  cursor: pointer;
  border: 0;
}

 button.vol-btn{
  font-family: "Font Awesome 5 Free";
  color: #1A2B58;
  font-size: 25px;
  width: 30px;
  height: 30px;
  display: inline-block;
  background: none;
  margin-right: 20px;
}

button.enlarge-btn{
  font-family: "Font Awesome 5 Free";
  color: #1A2B58;
  font-size: 25px;
  width: 30px;
  height: 30px;
  display: inline-block;
  background: none;
}


.cp-vdo-lg {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 9;
  display: none;
  top: 0;
}




/* /------/////-------/ */



.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
          -webkit-text-fill-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: hsla(0, 0%, 100%, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flickity-prev-next-button:hover { background: white; }

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}

.flickity-prev-next-button:active {
  opacity: 0.6;
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }


.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button .arrow {
  fill: #333;
}

.carousel {
  background: #FAFAFA;
}

.carousel-main {
  margin-bottom: 8px;
  height: 440px !important;
  overflow: hidden;
  display: block;
}

.carousel-cell {
  width: 100%;
  height: auto;
  margin-right: 8px;
  background: #fff;
  border-radius: 5px;
  /* counter-increment: carousel-cell; */
}

.carousel-nav .carousel-cell {
  height: 90px;
  width: 120px;
}

.carousel-main img {
  display: block;
  margin: 0 auto;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.cp-slider {
  width: 70%;
  float: left;
}
.carousel.carousel-nav {
  display: inline-block;
  width: 100%;
}

.carousel-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cp-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

/* content-player-end */


/* login */
    .login-pg {
        background: url(../images/login-bg.png) no-repeat;
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 100vh;
        max-height: 900px;
        position: relative;
        display: flex;
        align-items: center;
    }
    .login-pg::before{
        position: absolute;
        width: 100%;
        height: 100%;
        content: '';
        top: 0;
        left: 0;
        background: rgb(255,255,255);
        background: linear-gradient(52deg, rgba(255,255,255,0.9135855025603992) 49%, rgba(255,255,255,0) 100%); 
    }
    .login-sec{
        background: #fff;
        width: 100%;
        border-radius: 20px;
        padding: 50px;
    }
    .login-sec h1{
        color: #25285E;
        font-size: 30px;
        font-weight: 600;
        text-transform: uppercase;
    }
    .login-sec p{
        color: #25285E;
        font-size: 18px;
        font-weight: 500;
    }
    a.lgn-btn.lgn-sbt {
        width: 100%;
        display: block;
        text-align: center;
        margin-left: 0;
        margin-top: 20px;
    }
    a.frgt-pswrd {
        text-align: right;
        color: #70718C;
        font-size: 16px;
        display: block;
    }
    a.frgt-pswrd:hover {
        color: #70718C;
    }
    .login-form{
        position: relative;
    }
    .login-form .form-control {
        border: none;
        border-bottom: 1px solid #B8B8B8;
        border-radius: 0;
        font-size: 18px;
        color: #70718C;
        padding-left: 0;
    }
    .login-form label {
        font-size: 14px;
        color: #474A7B;
        font-weight: 500;
    }
    .form-group.passwrd-sec {
        position: relative;
    }
    .form-group.passwrd-sec .show {
        position: absolute;
        right: 10px;
        top: 45px;
        color: #6E6E6E;
        font-size: 16px;
    }
/* login */

.profile-img {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 20%;
}
.prfl-nm {
    margin-left: 20px;
    margin-top: 10px;
}
.prfl-nm h5{
    color: #fff;
    font-size: 25px;
}
.prfl-nm p{
    color: #5A5A5A;
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 10px;
}
.profile-img img {
    width: 140px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #fff;
    border-radius: 15px;
}
.cme-wlt {
    width: 460px;
    background: #25285E;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20%;
    float: right;
    color: #fff;
}
.wlt-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.wlt-btm p{
    margin-bottom: 0;
    font-size: 14px;
}
.wlt-top h5{
    margin-bottom: 0;
    font-size: 18px;
}
.wlt-top p{
    margin-bottom: 0;
    font-size: 20px;
}
.progress.wlt-bar{
    height: 6px;
    border-radius: 10px;
    background-color: #9C9ECC;
    overflow: visible;
    margin: 20px 0;
}
.progress.wlt-bar .progress-bar{
    position: relative;
    height: 6px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    overflow: visible;
}
.progress-bar span.prgrs-icon{
    position: absolute;
    width: 25px;
    height: 25px;
    color: #F99E23;
    background: #fff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0%;
    font-size: 14px;
}

/* accordion */
.up-modules {
    border: 1px solid #E0F0E6;
    border-radius: 15px;
    width: 100%;
    overflow: hidden;
}
.up-mduls-hd {
    background: #E6ECF4;
    padding: 20px;
}
.up-mduls-hd p{
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    color: #58595B;
}
.modules-list {
    padding: 20px 20px 0 20px;
    border-top: 1px solid #E0F0E6;
}
.modules-list p {
    margin-bottom: 0;
    color: #1D1D1D;
    font-size: 14px;
    font-weight: 500;
}
.modules-accd{
    border-top: 1px solid #E0F0E6;
    margin-bottom: 20px;
}
.collapse{
    border-top: 1px solid #E0F0E6;
}
.mdls-lst-nm {
    width: 100%;
    display: flex;
    align-items: center;
}
.mdls-lst-nm img {
    width: 40px;
    height: 35px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 5px;
}
span.mdls-arrow {
    text-align: right;
    float: right;
    color: #7E84A3;
    font-size: 14px;
    -webkit-transition: 0.7s ease-in-out;
    -moz-transition: 0.7s ease-in-out;
    -o-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;
}
a.modules-accd.collapsed span.mdls-arrow  {
    transform: rotate(180deg);
    -webkit-transition: 0.7s ease-in-out;
    -moz-transition: 0.7s ease-in-out;
    -o-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;

}
.view-btn {
    width: 120px;
    background: #5970B8;
    border-radius: 5px;
    padding: 5px;
    font-size: 13px;
    color: #fff;
    display: inline-block;
}
.progress.mdl-bar {
    width: 120px;
    height: 20px;
    border-radius: 5px;
}
.progress.mdl-bar .progress-bar {
    background: #E7B149;
    border-radius: 5px;
}
a.add-clndr {
    font-size: 14px;
    color: #25285E;
    border: 1px solid #25285E;
    padding: 8px 10px;
    border-radius: 5px;
    font-weight: 500;
    display: inline-block;
    transition: 0.5s ease-in-out;
}
a.add-clndr:hover {
    background: #25285E;
    color: #fff;
    transition: 0.5s ease-in-out;
}

/* accordion */

.interactive-banner{
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.interactive-banner-cndnt h1 {
    font-size: 30px !important;
    color: #fff !important;
    line-height: 40px;
}
.interactive-banner-cndnt p {
    color: #AFC6E3;
    font-size: 16px;
}
a.bck-btn {
    background: #AFC6E3;
    padding: 7px 20px;
    font-size: 14px;
    border-radius: 20px;
    color: #25285E;
    font-weight: 500;
    transition: 0.5s ease-in-out;
}
a.bck-btn:hover {
    background: #b5d0f2;
    transition: 0.5s ease-in-out;
}
.intrctve-sec {
    margin-bottom: 50px;
}
.intrctve-sec p{
    font-size: 16px;
    color: #4A4C71;
    line-height: 28px;
}
.intrctv-sprt-tool {
    background: rgb(175,198,227);
background: linear-gradient(270deg, rgba(175,198,227,1) 0%, rgba(37,40,94,1) 100%, rgba(37,40,94,1) 100%, rgba(255,255,255,1) 100%);
    padding: 15px;
}
.intrctv-sprt-tool h2 {
    margin-bottom: 0 !important;
    color: #fff !important;
    font-size: 22px !important;
}
.intrctv-sprt-sec {
    border: 1px solid #AFC6E3;
    padding: 15px;
}
.intrctv-sprt p {
    font-size: 16px;
    font-weight: 500;
    color: #25285E;
    margin-bottom: 0;
}
.intrctv-sprt {
    border-bottom: 1px dashed #AFC6E3;
    padding-bottom: 10px;
}
.intrctv-sprt-lst {
    padding: 15px 0;
    border-bottom: 1px dashed #AFC6E3;
}
.intrctv-sprt-lst ul{
    list-style: none;
    padding-left: 15px;
}
a.learn-more.ans-btn {
    margin: 20px 0 !important;
    display: inline-block;
}
.intrctv-sprt-lst form{
    margin-left: 15px;
}
.custom-control-label.ans-lbl{
    font-size: 14px;
    font-weight: 500;
    padding-top: 4px;
    padding-left: 4px;
    color: #25285E;
}
.custom-control-label.ans-lbl::before{
    background: #AFC6E3;
    border: none;
    width: 20px;
    height: 20px;
}
.custom-control-label.ans-lbl::after {
    position: absolute;
    top: .28rem;
    left: -1.48rem;
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    content: "";
    background: no-repeat 50%/50% 50%;
}
.custom-control-input.ans-input:checked~.custom-control-label.ans-lbl::before{
    background: #E65346;
    border: none;
}
.custom-radio .custom-control-input.ans-input:checked~.custom-control-label.ans-lbl::after{
    background-image: url(../images/tick.svg);
}
/* footer */
.footer{
    width: 100%;
    background: #25285E;
    overflow: hidden;
}
.footer-top{
    margin: 65px 0;
}
a.btn.back-to-top {
    color: #fff;
    float: right;
    text-align: center;
    font-size: 12px;
}
a.btn.back-to-top {
    color: #fff;
    float: right;
    text-align: center;
    font-size: 12px;
}
a.btn.back-to-top span {
    display: flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin: 0 auto;
    border-radius: 40px;
    align-items: center;
    justify-content: center;
    padding-bottom: 3px;
    margin-bottom: 10px;
    transition: all 0.5s ease;
}
a.btn.back-to-top span:hover {
    background: rgba(255, 255, 255, 0.7);
}
a.btn.back-to-top span i {
    color: #25285E;
    font-size: 30px;
}

.footer-links {
    color: #fff;
    text-align: center;
}
.footer-links ul {
    list-style: none;
    display: inline-flex;
    margin-bottom: 0;
}
.footer-links ul li {
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
}
ul.privacy{
    margin-top: 10px;
}
ul.privacy li{
    margin-top: 10px;
    font-weight: 500;
}
.copyright-sec {
    text-align: center;
    color: #fff;
    font-size: 12px;
    border-top: 1px solid #30347B;
    padding: 15px;
}
.copyright-sec p {
    color: #fff;
    font-size: 12px;
    margin-bottom: 0;
}


/* responsive */
@media (min-width: 1400px) {
    .container {
        max-width: 1385px !important;
    }
    
}
@media (max-width: 1400px) {
    .container {
        max-width: 1385px !important;
    }
    .activity_img{
        width: auto;
        min-width: 130px;
        min-height: 143px;
    }
    .card.decision_tools{height: 300px;}
    .card.decision_tools img{width: 100%; height: 200px; object-fit: cover;}
    .dcsn-contend{bottom:1%;}
    .card.decision_tools:hover .dcsn-contend{bottom:30%;}
}
@media (max-width:1199px){
    .card.decision_tools{height: 300px;}
    .dcsn-contend{bottom:1%}
    .card.decision_tools:hover .dcsn-contend {bottom: 25%;}
}

@media (max-width:991px) {
    .wrapper .btn{
        display: block;
        font-size: 30px;
    }
    .wrapper .nav-links{
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        display: block;
        background: #F8F8F8;
        overflow-y: auto;
        top: 0;
        right: -100%;
        line-height: 50px;
        padding: 85px 10px 50px;
        transition: all 0.9s ease;
        box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
        z-index: 999;
    }
    #menu-btn:checked ~ .nav-links{
        right:0%;
    }
    .nav-links li{
        margin: 0 15px;
    }
    .nav-links li a{
        display: block;
        color: #fff;
        display: block;
        color: #25285E;
        font-size: 16px;
        font-weight: 600;
    }
    label.mobile-item {
        padding: 10px;
        margin-bottom: 0;
    }
    .nav-links .drop-menu{
        position: static;
        opacity: 1;
        width: 100%;
        padding-left: 20px;
        visibility: visible;
        top: 80px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
    }
    #showDrop:checked ~ .drop-menu,
    #showMega:checked ~ .mega-box{
        max-height: 100%;
        transition: all 0.5s ease;
    }
    .nav-links .drop-menu li{
        margin: 0;
    }
    .nav-links .desktop-item{
        display: none;
    }
    .nav-links .mobile-item{
        display: block;
        cursor: pointer;
        display: block;
        color: #25285E;
        font-size: 16px;
        font-weight: 600;
    }
    .mega-box{
        position: static;
        width: 100%;
        top: 65px;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        box-shadow: none;
    }
    .mega-box .content{
        flex-direction: column;
        padding: 0;
    }
    .mega-box .content .mmenu-row{
        width: 100%;
        margin-bottom: 10px;
    }
    .wrapper input{
        display: none;
    }
    a.lgn-btn {
        display: inline !important;
        margin-left: 0;
    }
    .mega-links img {
        width: 60px;
        height: 50px;
        object-fit: cover;
    }
    .mega-links p{
        font-size: 14px;
    }
    .modules-sec{
        margin-bottom: 10px;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 15px;
    }
    .activity_img{
        min-width: 115px;
        min-height: 147px !important;
    }
    ul.module-icons li{margin-right: 10px;}
    p.hd-condent{font-size: 17px;}
    .dcsn-contend {
        bottom: 1%;
    }
    .card.decision_tools:hover .dcsn-contend {
        bottom: 25%;
    }
    ul.privacy {
        margin-top: 0;
    }
    .footer-top {
        margin: 25px 0;
    }

    .cp-carousel-lg{width: 100% !important;}
    .cp-rt-sec{width: 100%; padding-left: 0; margin-top: 10px;}
    .cp-slider{width: 100%;}
    a.lgn-btn.lgn-sbt{display: block !important;}
    .profile-img{margin-top: 130px;}
    .cme-wlt{width: 400px; margin-top: 130px;}
    .profile-img img{width: 120px; height: 130px;}
    .prfl-nm{margin-top: 15px;}
    .prfl-nm h5{font-size: 23px;}
    .prfl-nm p{font-size: 17px;}
    a.add-clndr{font-size: 13px;}
}

@media (max-width:767px) {
    .activity_img{border-radius: 10px; min-width: 100%; max-height: 265px !important;}
    .card.activity{height: 395px;}
    .module-banner img {
        height: 140px;
        object-fit: cover;
    }
    .module-banner-content h3{font-size: 20px;}
    .module-banner-content p{font-size: 13px;}
    .dcsn-contend {bottom: 1%;}
    .card.decision_tools:hover .dcsn-contend {bottom: 25%;}
    p.hd-condent{font-size: 15px;}
    .card.activity{height: 405px;}
    .activity.othr_modls {height: 350px;}
    .carousel-container #carousel-thumbs img {
        border-width: 3px;
      }
      .myprofile{
        max-height:130px;
        margin-bottom: 250px;
      }
      .profile-img {
        margin-top: 55px;
        justify-content: center;
    }
    .cme-wlt {
        width: 400px;
        margin-top: 15px;
        display: inline-block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .up-mduls-hd{display: none;}
    .progress.mdl-bar{margin: 10px 0;}
    .mdls-lst-nm{margin-bottom: 10px;}
    .myprofile.interactive-banner {
        max-height: 250px;
        margin-bottom: 20px;
    }
   
}

@media (max-width:575px) {
    .logo img { width: 135px;}
    nav .wrapper{padding: 10px 0;}
    .banner-logos ul li img {
        width: 50px;
    }
    .banner{height: 450px;}
    .banner-content p {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 28px;
    }
    .learn-more{font-size: 14px; padding: 15px 20px !important;}
    .banner-logos {margin-top: 30px;}
    .banner-logos p{margin-bottom: 0;}
    .module-banner img {
        height: 180px;
        object-fit: cover;
    }
    .module-banner-content h3 {
        font-size: 17px;
    }
    .module-banner-content{padding:5px 5px 0 5px;}
    .card.activity {
        height: 350px;
    }
    .activity_img{height: 200px !important;}
    .card.decision_tools {
        height: 300px;
    }
    .decision_tools_sec{max-height: 700px;}
    
    .footer-links ul{display: block;}
    .footer-logo img {
        width: 140px;
    }
    p.hd-condent{letter-spacing: 0.3px;}
    .card.activity {
        height: 300px;
    }
    .carousel-container #carousel-thumbs {
        background: #ccccce;
      }
      .claim{
          padding: 10px;
      }
      .cme-wlt{width: 100%;}
      .wlt-top h5{font-size: 16px;}
      .wlt-top p{font-size: 18px;}
      .wlt-btm p{font-size: 13px;}
      .myprofile{margin-bottom: 230px;}
      a.add-clndr {margin-top: 20px;}
      .interactive-banner-cndnt h1 {
        font-size: 25px !important;
        line-height: 35px;
    }
    .interactive-banner-cndnt p{font-size: 14px;}
}

@media (max-width:400px){
    .cme-wlt{width: 100%;} 
}













/*----10-6-22-----*/
.div-contend{
    background: #fff;
    margin: 10px;
    padding: 15px;
    border-radius: 15px;
    position: relative;
    bottom: 1%;
    transition: all 0.8s ease;
    margin-top: -30px;
  }
  .div-card {
      height: 100% !important;
    }
    .see-more.dcsn-btn.div-btn {
      width: 100%!important;
      background: #25285E !important;
      color: #FFF !important;
    }
    .div-paragraph {
      color: #25285E;
      text-align: center;
      line-height: 40px;
  
    }
  .decision_tools_sec.div-section{
   height: 100vh !important;
   max-height: 760px;
  }
  .div-space {
      margin-bottom: 25px;
    }
  .div-rems-btm {
      padding-top: 60px;
    } 




  
  

    .nav-head {
        line-height: 24px;
        color: #25285E;
        font-weight: 500;
font-size: 20px;
        margin-bottom: 0;
      }
      .module-highlight {
        color: #E65346 !important;
        font-weight: 600;
        font-size: 15px;
      }
      .mega-links p {
        line-height: 16px;
        color: #25285E;
        font-weight: 500;
        font-size: 15px;
        margin-bottom: 0;
      }
      .bn-style {
        list-style: none;
      }

      .lgn-btn.sig-btn {
        background: #FFF;
        color: #E65346 !important;
        border: 1px solid #E65346;
      }

      .menu-width {
        width: 65%;
      }


    
  @media (max-width:576px){
    .decision_tools_sec.div-section {
        height: 140vh !important;
        max-height: 1185px;
      } 
      
}