/**
* Template Name: SunTek
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Roboto",  sans-serif;
  --nav-font: "Open Sans",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #313539; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0E72CF; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #cdd2dc; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #313539;  /* The default color of the main navmenu links */
  --nav-hover-color: #0863b7; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #313539; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0E72CF; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #313539;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.thmBG-blue{
    color: #fff !important;
    background-color: #0e72cf!important;
}
.input-group-text {
    font-size: 0.9rem;
    height: 42px;
	border-radius: 0;
    background: #b8c4de;
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  background-color: var(--background-color);
  min-height: 60px;
  padding: 15px 0;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  height: 50px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  /* height: 0; */
  /* visibility: hidden; */
  /* overflow: hidden; */
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #0e72cf;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 14px;
  position: relative;
}
.footer .footer-top {
  padding-top: 50px;
}
.footer .footer-top a{
  color:#fff;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}
.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #313539;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 600;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

.btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02rem;
  display: inline-block;
  padding: 15px 35px;
  border-radius: 6px;
  transition: 0.5s;
  margin-bottom: 15px;
  animation: fadeInUp 1s both 0.6s;
}
.btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}
.section-title h2 {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}
.section-title h2 .description-title {
  color: var(--accent-color);
}
.section-title h5 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}
.sub-title {
	position:relative;
	font-weight: 600;
	color: var(--accent-color);
	margin-bottom: 18px;
}
.sub-title::before{
    content: "";
    width: 20px;
    height: 2px;
    background: var(--default-color);
    position: absolute;
    bottom: -5px;
    left: 0;
}
.sub-title::after{
    content: "";
    width: 130px;
    height:2px;
    background: var(--default-color);
    position: absolute;
    bottom: -5px;
    left: 25px;
}
.focusText {
    font-weight: 500;
    line-height: 1.65rem;
    font-size: 1.15rem;
}
.pointList {
    padding: 0;
    margin: 0;
    font-size: 1.15rem;
}
.pointList li{
   margin-bottom: 15px;
   list-style: none;
   position:relative;
   padding-left: 35px;
}
.pointList li::after{
   content: '\f005';
   font-family: "Font Awesome 6 Free";
   font-weight: 900;
   position:absolute;
   top:0;
   left:0;
   font-size: 18px;
   color: #0E72CF;
   line-height: 28px;
}
.pointList li span{
   font-weight: bolder;
   font-size: 1.25rem;
   display: block;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}
.hero .carousel {
  width: 100%;
  min-height: 75vh;
  padding: 0;
  margin: 0;
  background: url("../img/hero-bg.webp")no-repeat center left #f5f9ff;
  position: relative;
}
.hero .carousel-item {
    padding: 75px 0;
}
.hero h2 {
  margin-bottom: 10px;
  font-size: 48px;
  line-height: 52px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}
.hero h5 {
 animation: fadeInDown 1s both 0.2s;
 font-size: 20px;
 font-weight: 700;
 color: #0E72CF;
 margin-bottom: 25px;
}
@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
    line-height: 36px;
  }
}
.hero p {
  font-size: 18px;
  line-height: 28px;
  animation: fadeInUp 1s both 0.4s;
  color: #000000;
}
.hero .quoteSec {
    position: relative;
    padding: 0 35px;
}
.hero .quoteSec .fa-quote-left {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 36px;
    color: #0E72CF;
}
.hero .quoteSec .fa-quote-right {
    position: absolute;
    right: 55px;
    bottom: 0;
    font-size: 36px;
    color: #0E72CF;
}
.hero .img-box {
	overflow: hidden;
	border-radius: 45px 0;
	box-shadow: 5px 5px 5px #a7b2c0;
}
.hero ul {
    margin: 0;
    padding-left: 18px;
	font-size: 18px;
	line-height: 28px;
	animation: fadeInUp 1s both 0.2s;
	color: #000000;
}
.hero ul li{
	margin-bottom:5px;
	list-style-type: square;
}
.hero ul li::marker {
	color:var(--accent-color);
	font-size: 1.25rem;
}
.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}
.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}
.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}
@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}
.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}
.hero .carousel-indicators {
  list-style: none;
}
.hero .carousel-indicators li {
  cursor: pointer;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Programmes Section
--------------------------------------------------------------*/
.iconCard {
    padding: 30px 15px 20px 30px;
    border: 1px solid var(--surface-color);
    border-radius: 6px;
    position: relative;
    margin-bottom: 15px;
    transition: 0.5s;
}
.iconCard:hover {
    transform: translateY(-10px);
    border: 1px solid var(--accent-color);
    box-shadow: 0px 7px 7px 0px #e0e6f4;
}
.iconCard .IChead {
    display: flex;
    align-items: center;
}
.iconCard .IChead .icon {
    margin-right: 10px;
    background: #0e72cf;
    padding: 15px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
}
.iconCard .IChead .icon::before {
    position: absolute;
    content: "";
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: color-mix(in srgb, var(--accent-color), transparent 80%);
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
    z-index: 0;
}
.iconCard .IChead img {
    width: 46px;
}
.iconCard .IChead .title {
    margin-left: 5px;
}
.iconCard .IChead .title h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
}
.iconCard .ICbody{
    position: relative;
    height: 10px;
    -webkit-transition: height 0.5s;
    transition: height 0.5s;
}
.iconCard:hover .ICbody{
    height: 185px;
}
.iconCard .ICbody .description {
    position: absolute;
    left: 0;
    bottom: 20px;
    margin: 0;
    padding: 0;
    color: #666C74;
    line-height: 27px;
    opacity: 0;
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
.iconCard:hover .ICbody .description {
	opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.iconCard .ICbody .description p{	
	color: #333;	
	line-height: 1.5rem;	
	margin-bottom: 1.5rem;
}
.iconCard .ICbody .description a{	
	background: #eaf3ff;	
	padding: 10px 20px;
}
/***-----***/
.infoBox {
    display: flex;
    align-items: center;
    background: #35485e;
    color: #fff;
    padding: 10px 30px 10px 10px;
    border-radius: 20px;
    width: fit-content;
}
.infoBox .left {
    font-size: 2.25rem;
    font-weight: 500;
    background: #687b90;
    padding: 12px;
    border-radius: 15px;
    width: 75px;
    height: 75px;
    text-align: center;
    margin-right: 10px;
}
.infoBox .right {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5rem;
}
/***-----***/
#employers img{
	border-radius: 50px;
    box-shadow: 0px 7px 7px 0px #e0e6f4;
}

/**---Register Form Style---**/
.registerFormSteps{
	display: block;
    width: 100%;
    overflow: hidden;
}
.registerFormSteps .sideTabMenu{
    background: #f5f9ff;
    padding:30px;
    border-radius: 10px 0 0 10px;
    height: 100%;
    position:relative;
}
.registerFormSteps .nav-pills::after {
    position: absolute;
    content: '';
    width: 2px;
    height: 100%;
    background: #c5cde0;
    left: 71px;
    top: 50%;
    bottom: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 9;
}
.registerFormSteps .nav-pills li{
    padding-bottom: 30px;
    position: relative;
    z-index: 99;
}
.registerFormSteps .nav-pills li .nav-link{
	color: #313539;
	font-weight: 500;
	font-size: 1.15rem;
	display: flex;
	align-items: center;
	line-height: 1.5rem;
}
.registerFormSteps .nav-pills li .nav-link.active{
	background: transparent;
	color: #0E72CF;
	font-weight: 500;
	font-size: 1.15rem;
}
.registerFormSteps .nav-pills li .nav-link .stepNumber{
	width: 50px;
	height: 50px;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #949ba9;
	color: #ffffff;
	margin-right: 15px;
	border: 5px solid #f5f9ff;
	font-weight: bold;
	text-align: center;
}
.registerFormSteps .nav-pills li .nav-link.active .stepNumber{
	background: #0e72cf;
	color: #ffffff;
}
.registerFormSteps .tab-content{
    background: #e5ebf8;
    padding:30px;
    border-radius: 0 10px 10px 0;
    height: 100%;
    position: relative;
}
.registerFormSteps .tab-content .titleSec{
	padding-bottom: 15px;
	border-bottom: 1px solid #abb3c3;
	margin-bottom: 30px;
}
.registerFormSteps .tab-content .titleSec h2{
	font-weight: 500;
	font-size: 2.15rem;
	line-height: 2.5rem;
	margin-bottom: 10px;
	border-left: 5px solid #0e72ce;
	padding-left: 10px;
}
.registerFormSteps .tab-content .titleSec p{
	margin-bottom: 0;
	font-size: 1.15rem;
}
.registerFormSteps .formSec .form-label {
    font-weight: 500;
    font-size: 0.825rem;
    margin-bottom: 5px;
    letter-spacing: 0.02rem;
    color: #303642;
}
.registerFormSteps .formSec .form-control,
.registerFormSteps .formSec .form-select {
    padding: 0.575rem 0.75rem;
    border-radius: 0;
    background: #f9fbff;
    border-color: #b8c4de;
    margin-bottom: 10px;
}
.registerFormSteps .formSec .form-control::placeholder,
.registerFormSteps .formSec input[type="date" i] {
  color: #acb7d0!important;
    font-size: 0.875rem;
}
.registerFormSteps .formSec .ChecksRadiosSec{
     padding: 0.525rem 0.75rem;
     border-radius: 0;
     background: #dee5f3;
     border: 1px solid #dee5f3;
     margin-bottom: 10px;
     margin-top: 3px;
}
.registerFormSteps .tab-content .btnSec {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 30px;
}
.registerFormSteps .tab-content .btnSec .btnNext,
.registerFormSteps .tab-content .btnSec .btnSubmit {
    background: #0e71ce;
    color: #fff;
    border-radius: 0;
    padding: 0.55rem 1.75rem;
}
.registerFormSteps .tab-content .btnSec .btnBack{
	background: #646b77;
    color: #fff;
    border-radius: 0;
    padding: 0.55rem 1.75rem;
}
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){
	width:100%;
}
.bootstrap-select>.dropdown-toggle {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: unset;
}
.bootstrap-select .dropdown-toggle:focus, 
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: unset!important;
    outline-offset: unset!important;
    background: transparent!important;
    border-radius: 0!important;
}
.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    overflow: hidden;
    color: #212529;
}
@media (max-width: 768px) {
	.stepText, .registerFormSteps .nav-pills::after{
		display: none;
	}  
	.registerFormSteps .sideTabMenu {
		background: #f5f9ff;
		padding: 10px;
		border-radius: 15px 15px 0 0;
		height: 100%;
		position: relative;
	}
	.registerFormSteps .nav-pills li {
		padding-bottom: 0;
	}
	.registerFormSteps .nav-pills li .nav-link{
		padding:0;
	}
	.registerFormSteps .nav-pills li .nav-link .stepNumber {
		margin-right: 5px; 
	}
	.registerFormSteps .tab-content {
		border-radius: 0 0 15px 15px;
		padding: 15px;
	}
	.registerFormSteps .tab-content .titleSec h2 {
		font-size: 1.85rem;
		line-height: 2.15rem;
	}
}

/* Toaster position */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1050;
}