/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #d0d0d0;
}
::placeholder{
  font-size: 13px !important;
}
.bg-theme{
  background-color: #3038AC !important;
}
.text-primary{
  color: #3038AC !important;
}

a:hover {
    text-decoration: none;
  }

  a{
    text-decoration: none;
  }
  
  header .header-logo {
    color: #001b4f;
      font-weight: 700;
      font-size: 23px;
      transition: .4s;
      -webkit-transition: .4s;
      -moz-transition: .4s;
      -ms-transition: .4s;
      -o-transition: .4s;
    
  }
  header .header-logo img {
    width: 120px;
    height: 67px;
    position: absolute;
    top: -6px;}
  
  header {
    background: #3038AC;
    -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.4);
    box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.4);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  header .main-menu>li {
    position: relative;
  }
  
  header .main-menu>li>a {
    color: white;
    font-size: 15px;
    padding: 17px 1.5vw;
    font-weight: 600;
    display: block;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
  }
  
 
  
   
  
  header .main-menu>li>a>i {
    color: #03328E;
  }
  
  header .main-menu>li>a:hover>i {
    color: #fff;
  }
  
  header .main-menu>li:hover>a i {
    color: #fff;
  }
  
  header .main-menu .sub-menu {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    width: 180px;
    overflow: hidden;
    border-top: 2px solid #f49306;
    background: #fff;
    -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
    box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
    z-index: 5;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  
  header .main-menu .sub-menu a {
    padding: 11px 10px;
    display: block;
    color: #173966;
    font-weight: 600;
    font-size: 15px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
  }
  
  header .main-menu .sub-menu a i {
    color: #03328E;
  }
  
  header .main-menu .sub-menu a:hover {
    background: #3038ac;
    color: #fff;
  }
  
  header .main-menu>li:hover .sub-menu {
    display: block;
  }
  
  header .header-logo figure img {
    max-width: 200px;
  }
  
  header .demo-link {
    margin-left: 1vw;
  }
  
  header .side-menu-close {
    background: transparent;
  }
  
  header .side-menu-close span {
    background: white !important;
    width: 28px;
    color: white !important;
  }
  
  #call-action .call-action {
    color: #001b4f;
    font-weight: 700;
    font-size: 23px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
  }
  
  #call-action .call-action:hover {
    color: #10bd3b;
  }
  
  /* side menu */
  .side-menu-wrap {
    width: 300px;
    position: fixed;
    left: -100%;
    top: 0;
    background: #fff;
    height: 100%;
    -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
    box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
    overflow-y: auto;
    z-index: 15000;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
  }
  
  .side-menu-wrap.opened {
    left: 0;
    transition: .8s;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -ms-transition: .8s;
    -o-transition: .8s;
  }
  
  .side-menu-logo {
    border-bottom: 2px solid #FE8204;
  }
  
  .side-menu-nav .main-menu>li {
    position: relative;
    border-bottom: 1px solid #ccc;
  }
  
  .side-menu-nav .main-menu>li>a>i {
    color: #03328E;
  }
  
  .side-menu-nav .main-menu .sub-menu {
    border-top: 1px solid #FE8204;
    background: #fff;
    display: none;
  }
  
  .side-menu-nav .main-menu .sub-menu li {
    border-bottom: 1px solid #eee;
  }
  
  .side-menu-nav .main-menu .sub-menu a {
    padding: 10px 22px;
    display: block;
    color: #212529;
    font-weight: 600;
    font-size: .9em;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
  }
  
  .side-menu-nav .main-menu .sub-menu a i {
    color: #03328E;
  }
  
  .side-menu-nav .main-menu .sub-menu~i {
    font-size: .8em;
    position: absolute;
    padding: 21px 11px;
    right: 0;
    top: 0;
    border-left: 1px solid #ccc;
  }
  
  .side-menu-nav .main-menu .sub-menu a:hover {
    background: #F5F5F5;
  }
  
  .side-menu-nav .main-menu>li>a {
    color: #212529;
    padding: 15px 30px 15px 10px;
    font-weight: 600;
    display: block;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
  }
  
  .side-menu-wrap .side-menu-close {
    position: absolute;
    right: 0;
    top: 0;
    height: 30px;
    width: 30px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }
  
  .side-menu-close {
    height: 40px;
    width: 40px;
    background: #21395F;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  
  .side-menu-close span {
    height: 2px;
    width: 20px;
    background: #fff;
    position: relative;
    opacity: 1;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
  }
  
  .side-menu-close span:nth-child(1) {
    top: -5px;
  }
  
  .side-menu-close span:nth-child(3) {
    bottom: -5px;
  }
  
  .side-menu-close.closed span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    -webkit-transform: translateY(7px) rotate(45deg);
    -moz-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    -o-transform: translateY(7px) rotate(45deg);
  }
  
  .side-menu-close.closed span:nth-child(2) {
    opacity: 0;
  }
  
  .side-menu-close.closed span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    -webkit-transform: translateY(-7px) rotate(-45deg);
    -moz-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    -o-transform: translateY(-7px) rotate(-45deg);
  }
  
  /*  custom overlay */
  .custom-overlay {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 12500;
    visibility: hidden;
    opacity: 0;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
  }
  
  .custom-overlay.show {
    visibility: visible;
    opacity: 1;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
  }
  .form-check-input:checked {
    background-color: #03328E;
    border-color: #03328E;}

body{
  background-color: white !important;
}

  .text-primary{
    color: #03328E !important;
  }
.text-secondary{
  color: #707070 !important;
}

.btn-primary{ 
  background-color: #03328E !important;
  border-color: #03328E !important;
}

.bg-primary{ 
  background-color: #3038ac !important;
}

.text-success{
  color: #24AD24 !important;
}

.bg-light-primary{ 
  background-color: #FAFAFF !important;
}
.border-secondary{
  border-color: #00000029 !important;
  border: 2px solid;
}

.btn-outline-primary{
  border-color: #03328E !important;
  color: #03328E !important;
}

.btn-outline-primary:hover{
  border-color: #03328E !important;
  color: white !important;
  background-color: #03328E !important;
}

.bg-success{
  background-color: #38AC40 !important;
}

.border-success{
  color: #38AC40 !important;
}
  .badge-primary{
    background-color: #BCBFE9 !important;
  }

  .hero-section{
    background-image:url('images/Path\ 1.svg');
    width: 100%; 
    background-repeat: no-repeat;
    background-size: cover;
    
  }



  .underline-text-center{
    position:relative;
    padding-bottom:5px;
    display:inline-block;
    color: black;
}

.underline-text-center::after{
    position: absolute;
    bottom: 0px;
    content: " ";
    width:30%;
    background: #FF7383;
    height:4px;
    left:35%;
    right:35%;
    border-radius: 7em / 5em;
}


.underline-text-start{
  position:relative;
  padding-bottom:5px;
  display:inline-block; 
}

.underline-text-start::after{
  position: absolute;
  bottom: 0px;
  content: " ";
  width:60%;
  background:#FF7383;
  height:7px;
  left:0; 
  border-radius: 7em / 5em;
}




.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  z-index: 1;
  width: 40px;
  height: 40px;
  background-color: #ccc;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
}

.owl-nav button span {
  font-size: 30px;
  height: 100%;
  display: block;
  width: 100%;
  line-height: 35px;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -50px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -50px;
}

.owl-carousel .owl-nav {
  margin: 0;
}
.owl-carousel .owl-item img {
  display: flex !important;
    }

    .item .card{
      width: 90%;
      text-align: center;
    }


    
    .owl-dots button.owl-dot.active {
      color: #03328E !important;
    }
    .owl-dots button.owl-dot:focus {
      outline: none;
    }

img.star{
  width: 25px;
}
img.profile{
  width: 225px;
  position: relative;
  top: -85px;
  left: -40px;
}

.testimonial{
  height: 35vh;
}

.testimonial-text{
  position: relative;
  top: -80px;
}
.otp-field {
  flex-direction: row;
  column-gap: 10px;
  display: flex;
  align-items: center; 
}

.otp-field input {
  height: 50px;
  width: 54px; 
  outline: none;
  font-size: 1.125rem;
  text-align: center;
  border: 1px solid #ddd;
}
.otp-field input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.otp-field input::-webkit-inner-spin-button,
.otp-field input::-webkit-outer-spin-button {
  display: none;
}
.profile-icon {
  width: 20px;
}
 .accordion-body , .accordion-header{
  border: none !important;
}

.accordion-button{
  background: transparent !important;
  color: rgb(84, 84, 84) !important;
  font-weight: 700;
}


.dropdown-item img{
  width: 15px;
  margin-right: 5px;
}
.bg-active{
  background-color: #91DCA270;
  color: #1D7D13;
  font-weight: 600;
  border-radius: 30px;
}
 
    .nav-tabs .nav-link.active {
    color: black; 
    font-weight: 600;
    border-bottom: 5px solid #004E9D !important; 
    
  border: 1px solid black;
} 

.nav-tabs .nav-link {
  color: #7A7A7A; 
  border: 1px solid black;
  border-radius: 0;
} 

.bg-header{
  background: linear-gradient(339deg, rgba(255,255,255,1) 46%, rgba(48,56,172,1) 46%);
}

.head-text{
  font-size: 5.5rem !important;
}

.join-card{
  background-color: #E6E7FF;
}


.overlay {
  position: absolute;
  left: 10px;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: white;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: .5s ease;
}

.item {
  position: relative;
  overflow: hidden;
  margin: 20px 0;
}

.item:hover .overlay {
  bottom: 28px;
  height: 100%; 
  width: 85%;
    left: 25px;
}

.top-overlay {
  bottom: 100%;    
  height: 0;
}
.item:hover .top-overlay {
bottom: 0;
}
.bottom-overlay {
  top: 100%;
}

.item:hover .bottom-overlay {
top: 0;
}

 
.fade-overlay {
  height: 100%;
  opacity: 0;
}

.item:hover .fade-overlay {
opacity: 1;
}
.title-overlay {
  height: auto;
  top: auto;
  opacity: 0;
}
.item:hover .title-overlay {
  opacity: 1;
  height: auto;
  padding: 50px 0;
}
.text {
  color: #3038ac;
  font-size: 1.2vw;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.fa-eye{
  color: #3038ac;
}

.btn-outline-primary:hover .fa-eye{
  color: white;
  cursor: pointer;
}

.bg-primary-gradient{ 
background: linear-gradient(254deg, rgba(15,21,118,1) 46%, rgba(48,56,172,1) 58%) !important;
}
.text-danger{
  color: #FF0000 !important;
}

footer{
  background-color: #EDEDF7 !important;
}

img.footer-icon{
  width: 50px !important;
}


.unstep{
  clip-path: circle();
  padding: 15px;
  border-color: #e4e4e4 ;
}
.step {
  clip-path: circle();
  padding: 15px;
  background-color: #3038ac !important;
}

.bg-gray {
  background-color: #e4e4e4 !important;
}

.line {
  width: 150px;
  height: 1px;
  border-radius: 0;
  background: lightgrey;
  position: relative;
  top: 9px;
  left: 15px;}

  .btn-outline-secondary{
    border-color: #BEBEBE !important;

  }

  .dropify-wrapper .dropify-message p { 
    font-size: 17px !important;}

.fw-500{
  font-weight: 500 !important;
}

 

.mobile {
display: none !important;
}

@media only screen and (max-width: 600px) {
.web {
display: none !important;
}
.otp-field input {
  height: 38px !important;
  width: 38px !important; 

}}
.dropdown-item img {
  width: 15px;
  margin-right: 5px;
}

.btn-outline-light:hover {
  color: #3038ac !important;
}

.btn-check:checked+.btn {
  background-color: #3038AC !important;
}
.form-control , .input-group-text , .form-select {
  height: 43px !important;
}

.fw-600{
  font-weight:600 !important;
}
.fw-medium{
  font-weight:500 !important;
}
