* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: break-word !important;
}

/*font face*/
@font-face {
  font-family: HelveticaBold;
  src: url("../font/HelveticaRounded-Bold.otf");
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Quicksand", sans-serif;
}

video:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
}

/*header css*/
header {
  display: flex;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.12), inset 0 -1px 0 0 #dadce0;
  height: 64px;
}

.logo {
  padding: 0.5rem 1rem;
}

.logo h3 {
  margin-bottom: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2.2rem;
  color: #495057;
  text-transform: lowercase;
  font-family: HelveticaBold;
}

.logo-color1 {
  color: #516fb0;
}

.logo-color2 {
  color: #df4658;
}

.page-header-nav {
  /* padding: 0.5rem 1rem; */
  display: flex;
  justify-content: space-between;
}

.page-header-nav ul {
  list-style: none;
  margin-bottom: 0;
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.page-header-nav ul li {
  height: 100%;
  position: relative;
}

.page-header-nav ul li > a {
  min-width: 100px;
  text-align: center;
  height: 100%;
  color: #424242;
  font-weight: 400;
  font-size: 0.875rem;
  vertical-align: top;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  font-weight: 500;
}

.page-header-nav ul li:after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: #df4658;
  transform: scale(0);
  transition: all linear 0.2s;
}

.page-header-nav ul li.active {
  color: #df4658;
}

.page-header-nav ul li.active:after,
.page-header-nav ul li:hover:after {
  transform: scale(1);
}

.page-header-nav ul li:hover {
  color: #df4658;
}

.user-header-dropdown {
  display: flex;
  align-items: center;
}

.user-header-dropdown-btn {
  cursor: pointer;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}

.user-header-dropdown-btn .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.25rem;
  background: #df4658;
  text-align: center;
  font-size: 0.875rem;
  color: #fff;
  padding: 3px;
}

.dropdown-item {
  font-size: 0.875rem;
}

/*sidebar menu*/
.sidebar-menu {
  width: 280px;
  height: 100vh;
  position: fixed;
  left: -305px;
  top: 0;
  box-shadow: 0px 0px 10px #d5d5d5;
  transition: all linear 0.5s;
  background: #fff;
  z-index: 999;
}
.sidebar-menu.show {
  left: 0;
}
.bars-icon {
  cursor: pointer;
}
/* .close-sidebar-menu {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  padding: 0.5rem 1rem;
  text-align: center;
  background: #516fb0;
  color: #fff;
} */
.sidebar-menu .logout-button {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  padding: 0.5rem 1rem;
  text-align: center;
  background: #516fb0;
  color: #fff;
}
.sidebar-menu ul {
  margin-bottom: 0;
  overflow: auto;
  height: calc(100vh - 114px);
}
.sidebar-menu ul li {
}
.sidebar-menu ul li a {
  display: flex;
  padding: 1rem;
  color: #424242;
  border-bottom: 1px solid #d5d5d5;
  font-size: 1rem;
  font-weight: 400;
  justify-content: space-between;
  align-items: baseline;
}
.sidebar-menu ul li a[aria-expanded="false"] .down-chevron-icon {
  display: none;
}
.sidebar-menu ul li a[aria-expanded="false"] .right-chevron-icon {
  display: block;
}
.sidebar-menu ul li a .right-chevron-icon {
  display: none;
}
.sidebar-menu ul li a .down-chevron-icon {
  display: block;
}

.sidebar-menu .action-btn {
  padding: 1rem;
  display: flex;
  justify-content: space-evenly;
  justify-content: flex-start;
}
.sidebar-menu .inner-menu-ul {
  height: auto;
  background: #f1f1f1;
}
.sidebar-menu .inner-menu-ul li {
  height: auto;
}
.sidebar-menu .inner-menu-ul a {
  font-size: 0.9rem;
  display: flex;
  align-items: baseline;
}
.sidebar-menu .inner-menu-ul a i {
  margin-right: 0.5rem;
}
/*custom btn*/
.page-header-nav div.sign-in-button {
  margin-right: 1rem;
  display: flex;
  align-items: center;
}

.custom-btn {
  border: 0;
  background: transparent;
}

.custom-btn a {
  /* background: #e91e63; */
  background-image: linear-gradient(to right, #4c71b3, #df4658);
  font-size: 0.875rem;
  padding: 0.375rem 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  font-weight: 400;
  border: 2px solid #fff;
}

.custom-btn a:hover {
  /* background-image: linear-gradient(to left, #4c71b3, #df4658); */
  color: #df4658;
  background: #fff;
  font-weight: 400;
  border: 2px solid #df4658;
}

.custom-btn.round a {
  border-radius: 20px;
}

.custom-btn.large a {
  font-size: 1.5rem;
  padding: 0.6rem 2rem;
}

.custom-btn.medium a {
  font-size: 1.2rem;
  padding: 0.3rem 1.5rem;
}

.custom-btn.shadow a {
  box-shadow: 0px 17px 10px -10px rgba(0, 0, 0, 0.4);
}

.custom-btn.animation a {
  box-shadow: 0px 17px 10px -10px rgba(0, 0, 0, 0.4);
  transition: all ease-in-out 300ms;
}

.custom-btn.animation a:hover {
  box-shadow: 0px 37px 20px -20px rgba(0, 0, 0, 0.2);
  transform: translate(0px, -10px) scale(1.1);
}

/*footer css*/
footer {
  background: #1b262c;
}

footer ul {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  padding: 0.25rem 1rem;
  margin-bottom: 0;
}

footer ul li a {
  color: #fff;
  font-weight: 400;
  font-size: 0.8rem;
}

footer ul li a:hover {
  color: #fff;
}

/*tabs section*/
.custom-tabs-section .nav-tabs {
  margin-bottom: 1rem;
}

.custom-tabs-section .nav-tabs .nav-link {
  font-size: 1rem;
  color: #424242;
  font-weight: 500;
}

.custom-tabs-section .nav-tabs .nav-link.active,
.custom-tabs-section .nav-tabs .nav-link:hover {
  color: #df4658;
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid;
}

.landing-program-btn {
  border: none;
  background: none;
  color: #fff;
  padding: 12px 32px;
  text-decoration: none;
  transition: 0.5s ease;
  display: inline-block;
  cursor: pointer;
  outline: none;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
  background-image: linear-gradient(to right, #4c71b3, #df4658);
  border-radius: 34px;
  text-align: center;
  transition: background-image 0.2s ease-in-out;
  border: 2px solid #fff;
}

.landing-program-btn:hover {
  color: #df4658;
  background: #fff;
  font-weight: bold;
  border: 2px solid #df4658;
}

/*sticky header css*/
.sticky-header {
  position: fixed;
  top: -70px;
  left: 0;
  width: 100%;
  transition: all linear 0.2s;
  z-index: 99;
}
.sticky-header.show {
  position: fixed;
  top: 0px;
}

/*footer section css*/
.footer-section-bg {
  background: url("../img/footer-bg.png") no-repeat;
  background-position: bottom;
}

.footer-section {
  padding: 2rem 0;
  border-top: 1px solid #e4e4e4;
}

.footer-section h4 {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1rem 0;
}

.footer-section h4 .first-word {
  color: #4c71b3;
}

.footer-section h4 .second-word {
  color: #df4658;
}

.footer-section ul {
}

.footer-section ul li {
  width: 32%;
  display: inline-block;
  padding: 1rem;
}

.footer-section ul li a {
  color: #565656;
  font-size: 0.875rem;
  font-weight: 400;
}

.footer-section ul li a:hover {
  color: #df4658;
}

.footer-section h5 {
  font-size: 1.5rem;
  color: #565656;
  padding: 1rem 0;
}

.footer-section input {
  margin-bottom: 2rem;
  border: 0;
  border-bottom: 1px solid #d5d5d5;
  background: transparent;
  font-size: 0.875rem;
  color: #bfbebe;
}

.footer-section input::placeholder {
  font-size: 0.875rem;
  color: #bfbebe;
}

.footer-section .subscribe-btn {
  border: 0;
  background: transparent;
}

.footer-section .subscribe-btn a {
  background-image: linear-gradient(to right, #4c71b3, #df4658);
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  font-weight: 400;
  border: 2px solid #fff;
  border-radius: 30px;
}

.footer-section .subscribe-btn a:hover {
  color: #df4658;
  background: #fff;
  font-weight: 400;
  border: 2px solid #df4658;
}

/*copyright section*/
.copyright-section {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  flex-wrap: wrap;
}
.copyright-section .left-section span {
  font-size: 0.875rem;
  color: #969696;
  font-weight: 400;
}

.copyright-section .left-section span.blue {
  color: #4c71b3;
}
.copyright-section .right-section .social-media-icon {
  margin: 0 0.6rem;
  font-size: 0.875rem;
}

.copyright-section .right-section .social-media-icon i {
  color: #bfbebe;
}

@media (max-width: 767px) {
  /*footer section */
  .footer-section ul li {
    padding: 1rem 0.25rem;
  }
  .footer-subscribe-section {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-subscribe-section h5 {
    margin-bottom: 0;
    width: 100%;
  }
  .footer-subscribe-section input {
    margin-right: 1rem;
    margin-bottom: 0;
  }
  .copyright-section {
    justify-content: center;
    text-align: center;
  }
  .copyright-section .left-section {
    margin-bottom: 1rem;
  }
}
/*sticky header css*/
.sticky-header {
  position: fixed;
  top: -70px;
  left: 0;
  width: 100%;
  transition: all linear 0.2s;
  z-index: 99;
}

.sticky-header.show {
  position: fixed;
  top: 0px;
}

.bell-icn {
  font-size: 22px;
  font-weight: 600;
  color: #df4658;
}

.bell-drop {
  margin-top: 2px;
  margin-right: 20px;
}

/* .notif-card {
  display: flex;
  justify-content: space-between;
  padding: 10px 10px 10px 10px;
  background-color: yellow;
  margin-bottom: 20px;
} */

.drop-pad {
  padding: 20p;
}

.notifimage {
  width: 90px;
  height: 60px;
  margin-right: 10px;
}

.notif-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.custom-menu {
  width: 400px;
}

.notification {
  margin: 1rem;
  display: flex;
}

.see-all {
  margin-top: -10px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: black;
  margin-bottom: 7px;
}

.see-all:hover {
  cursor: pointer;
  color: #df4658;
}

.notification:hover {
  cursor: pointer;
}

.notification-bottom {
  border-bottom: 1px solid #ded7d7;
  padding-bottom: 15px;
}

.noti-time {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.notif {
  font-size: 1rem;
  font-weight: 500;
}

.notif-time-info {
  font-size: 13px;
  padding-right: 10px;
}

.notif-desc {
  font-size: 0.8rem;
  font-weight: 300;
}

/*chat dropdown css*/

.chat-dropdown-menu .chat-reply {
  display: flex;
}

.chat-dropdown-menu .chat-box {
  height: 95px;
  width: 212%;
}

.chat-dropdown-menu .reply {
  margin-top: 35px;
  margin-left: 15px;
  height: 25px;
  width: 28px;
  border: 1px solid #fff8f8;
  padding: 1px 4px;
  border-radius: 5px;
}

.chat-dropdown-menu .reply-icn {
  font-size: 18px;
  color: white;
}

.chat-dropdown-menu .reply:hover {
  cursor: pointer;
}

.chat-dropdown-menu .ask-head {
  display: flex;
  padding: 4px 0px 5px 0px;
  background-image: linear-gradient(to right, #4c71b3, #df4658);
  color: white;
}

.chat-dropdown-menu .ask-head-heading {
  text-align: center;
  width: 93%;
  font-size: 20px;
  font-weight: 500;
}

.chat-dropdown-menu .ask-head-full {
  text-align: right;
  margin-top: 5px;
}

.chat-dropdown-menu a {
  color: white;
}

.chat-dropdown-menu .chat-dropdown-menua:hover {
  color: whitesmoke;
}

.chat-dropdown-menu .ask {
  text-align: center;
}

.chat-dropdown-menu .ask-btn {
  border-radius: 50px;
}

.chat-dropdown-menu .text-btn {
  width: 100%;
  padding: 0 1rem;
}

.chat-dropdown-menu .message-query {
  height: 55px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.chat-dropdown-menu .chat-bot {
  position: relative;
}

.chat-dropdown-menu .chat-box-reply {
  width: 80%;
  border-radius: 15px;
  border: 1px solid #c7c2c2;
  margin-top: 15px;
  padding: 10px 10px;
  font-size: 13px;
  line-height: 1.4rem;
}

.chat-dropdown-menu .reply-right-time {
  font-size: 11px;
  margin-right: 55px;
  text-align: right;
  margin-top: 4px;
}

.chat-dropdown-menu .reply-left-time {
  font-size: 11px;
  margin-right: 85px;
  margin-top: 4px;
}

.chat-dropdown-menu .reply-right-date {
  font-size: 11px;
  margin-top: 4px;
  margin-left: 85px;
}

.chat-dropdown-menu .reply-left-date {
  font-size: 11px;
  margin-top: 4px;
  margin-left: 62px;
}

.chat-dropdown-menu .chat-right {
  margin-left: 70px;
  background-color: #d8485c;
  color: ghostwhite;
}

.chat-dropdown-menu .chat-left {
  background-color: #a1587d;
  color: ghostwhite;
  margin-right: 70px;
}

.chat-dropdown-menu .user-image-chat {
  display: flex;
}

.chat-dropdown-menu .chat-user-image {
  margin-top: 15px;
  height: 35px;
  width: 40px;
  margin-right: 5px;
  margin-left: 5px;
  border: 1px solid #c1c1c1;
  border-radius: 50%;
}

.chat-dropdown-menu .chat-user-img {
  height: 100%;
  border-radius: 50%;
  width: 100%;
  object-fit: cover;
}

.chat-dropdown-menu .bot-user-image {
  margin-left: 5px;
  text-align: right;
  margin-top: 20px;
  height: 35px;
  width: 40px;
  margin-right: 5px;
}

.chat-dropdown-menu .bot-user-img {
  width: 80%;
  object-fit: cover;
}

.chat-dropdown-menu .chat-list {
  height: calc(100vh - 110px);
  overflow: auto;
}

.chat-dropdown-menu .send-border {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.chat-dropdown-menu .reply-date-time {
  display: flex;
  justify-content: space-between;
}

.support {
  margin-top: 5px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.support:hover {
  cursor: pointer;
}

.help-icn {
  font-size: 22px;
  color: rgb(223, 70, 88);
}

.chat-dropdown-menu {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  transform: unset !important;
  padding: 0;
  margin-top: 0;
  height: 100vh;
  left: unset !important;
}
.chat-dropdown-menu .chat-menu {
  height: 100%;
}
.chat-dropdown-menu .chat-menu .chat-bot {
  position: relative;
}
.chat-dropdown-menu .text-btn {
  width: 100%;
  padding: 0 1rem;
}
.chat-dropdown-menu .chat-list {
  height: calc(100vh - 110px);
  overflow: auto;
  padding: 1rem 0;
  /* overflow: scroll; */
}
.chat-dropdown-menu .chat-reply {
  position: static;
}
.chat-dropdown-menu .ask-head {
  display: flex;
  padding: 4px 0px 5px 0px;
  background-image: linear-gradient(to right, #4c71b3, #df4658);
  color: white;
}
.chat-dropdown-menu .ask-head-heading {
  text-align: center;
  width: 93%;
  font-size: 20px;
  font-weight: 500;
}

.chat-dropdown-menu .ask-head-full {
  text-align: right;
  margin-top: 5px;
}
.chat-dropdown-menu .ask-head-full a {
  color: #fff;
}

.msger-chat {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 1rem;
}

.msger-chat .msg {
  display: flex;
  align-items: flex-end;
  margin-bottom: 1rem;
}
.msger-chat .msg:last-of-type {
  margin: 0;
}
.msger-chat .msg-img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  object-fit: cover;
  background-size: cover;
  border-radius: 50%;
}
.msger-chat .msg-bubble {
  max-width: 450px;
  padding: 0.8rem;
  border-radius: 15px;
  background: #a1587d;
  color: #fff;
}
.msger-chat .msg-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.msger-chat .msg-info-name {
  margin-right: 10px;
  font-weight: bold;
}
.msger-chat .msg-info-time {
  font-size: 0.8rem;
}

.msger-chat .left-msg .msg-bubble {
  border-bottom-left-radius: 0;
}

.msger-chat .right-msg {
  flex-direction: row-reverse;
}
.msger-chat .right-msg .msg-bubble {
  background: #d8485c;
  color: #fff;
  border-bottom-right-radius: 0;
}
.msger-chat .right-msg .msg-img {
  margin: 0 0 0 10px;
}
.msger-chat .msg-text {
  font-size: 12px;
  line-height: 1.4rem;
}
@media (max-width: 767px) {
  .msger-chat .msg-bubble {
    max-width: calc(100% - 60px);
  }
}

/*mega menu */
.mega-menu {
  position: relative;
}
.mega-menu-dropdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* display: flex; */
  /* flex-wrap: wrap; */
  /* max-width: 500px; */
  /* width: auto; */
  z-index: 9;
  background: #fff;
  /* padding: 1rem 0; */
  box-shadow: 0px 0px 10px #a0a0a0;
  max-height: 320px;
  overflow: auto;
  display: none;
}
.mega-menu-dropdown .dropdown-program-card {
  display: flex;
  width: 360px;
  padding: 1rem;
}
.mega-menu-dropdown .dropdown-program-card:hover {
  background-color: #f5f5f5;
}
.right-content {
  width: calc(100% - 90px);
}
.mega-menu-dropdown
  .dropdown-program-card-row
  .dropdown-program-card:not(:last-child) {
  border-bottom: 1px solid #d5d5d5;
}
.mega-menu-dropdown .dropdown-program-card img {
  width: 80px;
  height: 70px;
  object-fit: cover;
  margin-right: 10px;
}
.mega-menu-dropdown .dropdown-program-card h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #424242;
}
.mega-menu-dropdown .dropdown-program-card p {
  font-size: 0.7rem;
  margin-bottom: 0;
  color: #424242;
}
.page-header-nav li.mega-menu:hover .mega-menu-dropdown {
  display: block;
}
.top-program-heading {
  font-size: 1.6rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  /* border-bottom: 1px solid #989898; */
  margin-bottom: 0.8rem;
  color: #424242;
  text-align: center;
}
.heading-div {
  border-bottom: 1px solid #989898;
  margin-bottom: 0.5rem;
}
.top-module-heading {
  font-size: 1.3rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  color: #424242;
  display: inline-block;
}
.top-test-heading {
  font-size: 1.3rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  color: #516fb0;
  display: inline-block;
}
/*notification css*/
.notification-box {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: darkslateblue;
  padding: 1rem;
  width: 300px;
  height: 150px;
  box-shadow: 0px 0px 10px #d5d5d5;
  align-items: center;
  display: flex;
}
.close-notif {
  position: absolute;
  top: 6px;
  right: 12px;
  cursor: pointer;
  color: #fff;
}
.notification-box h2 {
  font-size: 1.2rem;
  color: #fff;
}
.notification-box p {
  font-size: 0.8rem;
  color: #fff;

  margin-bottom: 0;
}
.notification-box h2 i {
  margin-right: 0.25rem;
}
