﻿@charset "utf-8";
/**  
* -----------------------------------------------------------------------------
    Custom Css 
* -----------------------------------------------------------------------------
**/
/*
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@400;700&display=swap');
*/
/* -----------------------------------------------------------------------------*/
/*-- Loader Style End --*/

#pre-load {
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: fixed;
    margin-top: 0px;
    top: 0px;
    z-index: 9999;
  }
  .loader .loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 5px solid #ebebec;
    border-radius: 50%;
  }
  .loader .loader-container:before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-top: 4px solid #f00c46;
    border-radius: 50%;
    animation: loaderspin 1.8s infinite ease-in-out;
    -webkit-animation: loaderspin 1.8s infinite ease-in-out;
  }
  .loader .loader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    text-align: center;
  }
  .loader .loader-icon img {
    animation: loaderpulse alternate 900ms infinite;
    width: 30px;
  }
  .woocommerce .quantity input[type="number"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #363636 !important;
    opacity: 1;
  }
  .woocommerce .quantity input[type="number"]::-moz-placeholder {
    /* Firefox 19+ */
    color: #363636 !important;
    opacity: 1;
  }
  .woocommerce .quantity input[type="number"]:-ms-input-placeholder {
    /* IE 10+ */
    color: #363636 !important;
    opacity: 1;
  }
  .woocommerce .quantity input[type="number"]:-moz-placeholder {
    /* Firefox 18- */
    color: #363636 !important;
    opacity: 1;
  }
  /* ------------------------------------
    34. Animation Part CSS
---------------------------------------*/
@keyframes loaderspin {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  @-webkit-keyframes loaderspin {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  @keyframes loaderpulse {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.2);
    }
  }
  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
  }
  @-webkit-keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
  }
  .move-y {
    animation: move-y 2s alternate infinite;
    -webkit-animation: move-y 2s alternate infinite;
  }
  @keyframes move-y {
    0% {
      transform: translate3d(0, 0, 0);
      -webkit-transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(0, 10px, 0);
      -webkit-transform: translate3d(0, 10px, 0);
    }
  }
  .scale {
    animation: scale 2s alternate infinite;
  }
  @-webkit-keyframes scale {
    0% {
      transform: scale(0.8);
      -webkit-transform: scale(0.8);
    }
    100% {
      transform: scale(1);
      -webkit-transform: scale(1);
    }
  }
  .dance2 {
    -webkit-animation: dance2 4s alternate infinite;
  }
  @keyframes dance2 {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
    }
    50% {
      -webkit-transform: translate3d(15px, -15px, 0);
    }
    100% {
      -webkit-transform: translate3d(0, -15px, 15px);
    }
  }
  .up-down {
    animation: up-down 7s alternate infinite;
    -webkit-animation: up-down 7s alternate infinite;
  }
  @keyframes up-down {
    0% {
      transform: translateY(20px);
      -webkit-transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
      -webkit-transform: translateY(-20px);
    }
    100% {
      transform: translateY(0);
      -webkit-transform: translateY(0);
    }
  }
  @-webkit-keyframes up-down {
    0% {
      transform: translateY(30px);
      -webkit-transform: translateY(0);
    }
    50% {
      transform: translateY(-50px);
      -webkit-transform: translateY(-50px);
    }
    100% {
      transform: translateY(0);
      -webkit-transform: translateY(0);
    }
  }
  .spine {
    animation: spine 8s linear infinite;
  }
  @keyframes spine {
    0% {
      transform: rotate(0);
      -webkit-transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
      -webkit-transform: rotate(360deg);
    }
  }
  @-webkit-keyframes spine {
    0% {
      transform: rotate(0);
      -webkit-transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
      -webkit-transform: rotate(360deg);
    }
  }
  .horizontal {
    animation-name: horizontal;
    animation-duration: 12s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  .horizontal.new-style {
    animation-duration: 15s;
  }
  @keyframes horizontal {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(100px);
    }
    100% {
      transform: translateX(0);
    }
  }
  .vertical {
    animation-name: vertical;
    animation-duration: 12s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  .vertical.new-style {
    animation-duration: 15s;
  }
  @keyframes vertical {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(100px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .fadeinup {
    animation-duration: 2s;
    animation-name: fadeInUp;
  }
  .fadeinup.new {
    animation-duration: 3s;
  }
  @keyframes fadeinup {
    0% {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }
  .fadeinright {
    animation-duration: 3s;
    animation-name: fadeInRight;
  }
  @keyframes fadeinup {
    0% {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }
  .rotate_Y {
    animation: mymove 5s infinite;
  }
  @keyframes mymove {
    0% {
      transform: rotateY(-50deg);
    }
    100% {
      transform: rotateY(50deg);
    }
  }
  .rs-services.style6 .services-box-area .services-item:hover .dance_hover,
  .rs-services.style4 .services-item:hover .dance_hover,
  .rs-iconbox-area .box-inner .box-item:hover .dance_hover {
    animation-name: dance_hover;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
  }
  @keyframes dance_hover {
    16.65% {
      transform: translateY(8px);
    }
    33.3% {
      transform: translateY(-6px);
    }
    49.95% {
      transform: translateY(4px);
    }
    66.6% {
      transform: translateY(-2px);
    }
    83.25% {
      transform: translateY(1px);
    }
    100% {
      transform: translateY(0);
    }
  }
  /* Draw Line Animation */
  @keyframes start-draw {
    to {
      height: 95%;
    }
  }
  /* Infinite Rotation Animation */
  @keyframes rotate-anim {
    from {
      -webkit-transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(359deg);
    }
  }
  /*Pulse Border Animation*/
  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
  }
/*-- Loader Style End --*/

/*-- Global Style start --*/

/*-- font-family: 'Roboto', sans-serif; --*/
/*-- font-family: 'Lato', sans-serif; --*/


/*-- Global Style end --*/
body,
button, 
input, 
optgroup, 
select, 
textarea{
    font-family: 'Roboto', sans-serif !important;
}
body {
    font-size: 14px;
    background-color: #fdfdfd;
}
a {
    text-decoration: none;
}
.labelControl {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px;
    line-height: 20px;
    /* color: #05608a; */
    color: #001995;
}
.inputControl,
.selectControl,
.textControl{
    border-color: #e0e0e0;
    font-size: 14px;
    outline: none;
    box-shadow: none;
    border-radius: 0.25rem !important;
}
.inputControl:focus,
.selectControl:focus,
.textControl:focus {
    outline: none;
    box-shadow: none;
}
.textControl{
    resize: none;
}
.defaultBtn{
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    font-size: 14px;
    box-shadow: none !important;
}

.defaultBtn:hover {    
    border: none;
    box-shadow: none;
}
.actionBtn {
    outline: none;
    text-transform: uppercase;
    background: #0d5daf;
    letter-spacing: 1px;
    border: none;
    font-size: 13px;
    box-shadow: none !important;
    color: #ffffff;
    font-weight: 500;
}
.actionBtn:hover {
    background: #fb4b07;
    border: none;
    box-shadow: none;
}
.successBtn {    
    background: #02921a;   
}
.successBtn:hover {
    background: #fb4b07;   
}
.disableBtn {
    background: #646464;
    cursor: inherit !important;
}
.disableBtn:hover,
.disableBtn:focus {
    background: #646464;   
}
.registerBtn {
    background: #7e1dbb;
    font-size: 12px;
}
.homeBtn {
    margin: 0 0 10px;
}
.homeBtn2 {
    position: absolute;
    margin: 0;
    left: 25px;
    top: 20px;
}
.backLink {
    background: #00446d;
    font-size: 12px;
}
.loginBtn {   
    background: #ffe004;    
    color: #002dfb;       
}
.backInlineLink {
    background: inherit;
    box-shadow: none;
    border: none;
    color: #0633a2;
    font-weight: 500;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    text-transform: uppercase;
    font-size: 16px;
}
.backInlineLink:hover,
.backInlineLink:focus{
    background: none;
    box-shadow: none !important;
    border: none;
    color: #f700ff;    
}
.inlineBtnLink{
    color: #ff6300;
    font-weight: 500;
}
.verifyBtn{
    background: #03a735;
}

.form-group {
    margin-bottom: 1rem;
}

.mb__0{
    margin-bottom: 0px !important;
}
.mb__6{
    margin-bottom: 6px;
}
.mb__10{
    margin-bottom: 10px;
}
.mb__15{
    margin-bottom: 15px;
}
.mb__20{
    margin-bottom: 20px;
}
.mb__25{
    margin-bottom: 25px;
}
.mb__30{
    margin-bottom: 30px;
}
.mb__50{
    margin-bottom: 50px;
}
.mt__7{
    margin-top: 7px;
}
.mt__10{
    margin-top: 10px;
}
.mt__15{
    margin-top: 15px;
}
.mt__100{
    margin-top: 100px;
}
.mr__8{
    margin-right: 8px;
}
.mr__10{
    margin-right: 10px;
}
.mr__15{
    margin-right: 15px;
}
.ml__10{
    margin-left: 10px;
}
.editBtn {
    background: #d05100;
}
.cancelBtn {
    background: #ccc;
    color: #444 !important;
}
.cancelBtn:hover{
    color: #fff !important;
}

.w70 {
    width: 70px;
}
.w100{
    width: 100px;
}
.w120{
    width: 120px;
}
.w150{
    width: 150px;
}
.w180{
    width: 180px;
}
.w210{
    width: 210px;
}
.w220{
    width: 220px;
}
.w260{
    width: 260px;
}
.w290{
    width: 290px;
}
.w350{
    width: 350px;
}
.w410{
    width: 410px;
}
.w500{
    width: 500px;
}
/*-- Global Style End --*/

/*-- New Header Style Start --*/
.newHeaderMain {
    background: #e7f9ff;
    box-shadow: -4px 2px 3px 0px rgb(0 0 0 / 16%);
    position: relative;
}
.newHeaderMainBlk {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;   
}
.newHeaderTitle {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
}
.newHeaderTitle h1 {
    font-size: 24px;
    margin: 0 0 6px;
    color: #0061a7;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    letter-spacing: 2px;
}
.newHeaderTitle h1:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: #ff5e00;
    width: 100%;
    height: 2px;
}
.newHeaderTitle h2 {
    font-size: 20px;
    margin: 0;
    color: #0061a7;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}
.schoolName {
    background: #444;
    padding: 5px 0;
}
.schoolName span {
    text-align: center;
    display: block;
}
/*-- New Header Style End --*/

/*-- Menu Style Start --*/
.myMenuMain {
    background: #336DC0;
    padding: 10px 0;
}
.myMenuMain nav.navbar {
    padding: 0;
}
.myMenuListMain {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
/* .myMenuListMain li:not(:first-child) {
    margin-left: 20px;
    border-left: 1px solid #fff;
    padding-left: 15px;
} */
.navbar-expand-lg .navbar-nav.myMenuListMain .nav-link {
    padding: 0;
    border-right: 1px solid #fff;
    padding-right: 10px;
    margin-right: 10px;
}
.navbar-expand-lg .navbar-nav.myMenuListMain .nav-link.logoutLink {
    border-right: none;
    padding-right: 0px;
    margin-right: 0px;
}
.myMenuListMain li a {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}
.myMenuListMain li a:hover,
.myMenuListMain li a:focus {
    color: #02ff00;
}
.myMenuListMain .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    max-height: 320px;
    overflow-y: auto;
}
.myMenuListMain .nav-item.dropdown .dropdown-menu {
    box-shadow: 0px 2px 3px 2px rgb(0 0 0 / 16%);
    padding: 0;
    top: 98%;
    margin: 0;
    min-width: 320px;
}
.myMenuListMain .nav-item.dropdown .dropdown-menu li {
    margin: 0 0 3px;
    border-bottom: 1px solid #d5d5d5;
}
.myMenuListMain .nav-item.dropdown .dropdown-menu li .nav-link {
    font-weight: 500;
    line-height: 18px;
    font-family: 'Poppins', sans-serif;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    padding: 10px 14px !important;
    background: #f9f9f9;
    font-size: 13px !important;
    color: #1b00ff !important;
    margin: 0;
}
/*-- Menu Style End --*/

/*-- Login Style Start --*/
.pageLayout {
    padding: 40px 0px;
}
.loginContent {
    max-width: 600px;
    margin: 0 auto;
    background-color: #e7f9ff;
    padding: 20px;
    box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, .2);
}
.loginBlk {
    width: 100%;
    height: 100%;
    border: 2px solid #ff5e00;
    padding: 20px 15px;
    position: relative;
}
.loginBlk h2 {
    font-size: 20px;
    margin: 0;
    text-transform: uppercase;
    color: #001ba7;
    position: absolute;
    left: 10px;
    top: -18px;
    background: #e7f9ff;
    padding: 5px;
}
.captchaBlk {
    background: #fff9d8;
    padding: 10px;
    border: 1px dashed #0d5daf;
    text-align: center;
}
.captchaBlk img {
    margin-bottom: 10px;
}
.loginBlk .errorMsg {
    color: #f00;
    margin: 5px 0;
    display: inline-block;
    font-size: 15px;
}
.loginBlk input:focus,
.loginBlk input:focus-visible,
.loginBlk input:-webkit-autofill {
    background-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}
/*-- Login Style End --*/

/*-- Registration Style Start --*/
.formBg {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 16%);
    padding: 20px 25px;
}
.formTitle {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 20px;
    color: #0633a2;
    text-decoration: underline;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}
.regInfo {
    background-color: #ffe087;
    padding: 10px;
    margin: 0 0 15px;
}
.regInfo span {
    font-size: 16px;
    color: #0633a2;
    font-weight: 500;
}
.radioBtnBlk input[type='radio'] {
    margin-right: 5px;
}
.radioBtnBlk td:not(:last-child) label {
    margin-right: 15px;
}
.formBg .inputControl,
.formBg .selectControl {
  font-size: 14px;
}
/*-- Registration Style End --*/

/*-- Fee Payment Style Start --*/
.sectionTitle {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 18px;
    margin: 0 0 5px;
    color: #5b05df;
    font-weight: 400;
}
.bankInfoMain {
    margin: 50px 0 0;
    background-color: #fffdec;
    padding: 15px;
    padding-top: 30px;
    border: 1px dashed #ff5e00;
    position: relative;
}
.bankContactBlk {
    position: absolute;
    left: 15px;
    top: -20px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 24px;
    margin: 0;
    color: #0633a2;
    font-weight: 500;
    background: #fff;
    padding: 5px 10px;
    text-transform: uppercase;
}
.bankContactIntro {
    background: #ffffff;
    padding: 15px;
    margin: 0 0 15px;
}
.bankContactIntro .sectionTitle {
    color: #0633a2;
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: 500;
    text-decoration: underline;
}
.bankContactIntro p {
    margin: 0;
    font-size: 15px;
}
.bankContactIntro p strong {
    color: #f00;
    font-weight: 500;
}
.subTitle {
    color: #0633a2;
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: 500;
    text-decoration: underline;
}
.subTitle2 {
    color: #ff5e00;
}
.bankInfoMain .subTitle {
    margin: 0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}
.bankInfoMain .table th {
    background: #336dc0;
    color: #fff;
    font-weight: 500;
}
.supportTime {
    margin: 0;
    color: #f00;
}
.supportTime strong {
    font-weight: 500;
}
.payDetailMain {        
    padding: 15px;
    padding-top: 30px;
    border: 1px dashed #ff5e00;
    position: relative;
}
.selectPayMethod .radioBtnBlk td {
    display: inline-flex;
}
.payMethodList table {
    background: #fffdec;
    border-color: #336dc0;
    border-radius: 0 !important;
}
.payMethodList table th, 
.payMethodList table td {
    border-color: #336dc0;
    font-size: 15px;
    font-weight: 500;
}
.payTermsText i,
.payTermsText a {
    color: #f00;
    font-size: 16px;    
}
.payTermsText a {
    text-decoration: underline;
}
.payTermsText a:hover {
    text-decoration: none;
}
.payChalanInfo {
    margin: 20px 0 0;
    background-color: #fffdec;
    padding: 15px;
    border: 1px dashed #ff5e00;
    font-size: 15px;
}
.payChalanInfo strong {
    color: #f00;
    font-weight: 500;
}
.payDetailMain .labelControl {
    font-size: 15px;
    margin: 0;
}
.payDetailMain .selectControl {
    font-weight: 500;
}
.paymentStatusMsg span {
    font-size: 16px;
}
.paymentStatusMsg .payStatusText {
    color: #f00;
    font-size: 18px;
}
.feesAmt {
    font-size: 18px;
    color: #2ab300;
}
/*-- Fee Payment Style End --*/

/*-- Other Pages Style Start --*/
.fileUpInstra h4 {
    font-size: 18px;
    color: #f00;
}
.fileUpInstra h5 {
    font-size: 16px;
    color: #7c00ff;
}
.fileUpInstra ul {
    margin: 0;
    padding: 0;
    padding-left: 20px;
}
.fileUpInstra ul li {
    list-style-type: disclosure-closed;
    margin-bottom: 5px;
    font-size: 15px;
}
/*-- Other Pages Style End --*/



