/*=== google fonts ===*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body { 
    background: #F5F5F5;
    font-family: "Poppins", sans-serif;
}

/* 
font-family: "Inter", sans-serif;
 */


h1,
h2,
h3,
h4,
h5,
h6 {
    
}


/*=== Basic css ===*/
*,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: #DAA520; 
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}


/*=== Main css ===*/

.container {
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
}




/*=======================
    login-page start 
=========================*/

.login-page {
    background: #ffffff;
}

.sign-area {
    max-width: 431px;
    margin: 0 auto;
    padding: 70px 0 232px;
}

.sign-area h2 {
    font-weight: 500;
    font-size: 30px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 22px;
}

.sign-area h6 {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 44px;
}

.sign-area h6 a {
    font-weight: 600;
    text-decoration: underline;
    text-decoration-style: solid;
    color: #0C21C1;
}

.sign-area h5 {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 14px;
}

.sign-area h5 span {
    color: #FF3636;
}

.sign-area form p {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.3;
    color: #999999;
    margin-bottom: 10px;
}

.sign-area form p span {
    color: #FF3636;
}

.sign-area form label {
    position: relative;
    width: 100%;
}

.sign-area form label input {
    border: none;
    outline: none;
    border-bottom: 2px solid #000842;
    margin-bottom: 49px;
    padding: 0 9px 9px 27px;
    width: 100%;
}

.sign-area form label .pass {
    border-bottom: 2px solid #999999;
    margin-bottom: 17px;
    position: relative;
}

.sign-area form label .eye-btn {
    font-size: 20px;
    background: transparent;
    color: #ABABAB;
    border: none;
    position: absolute;
    top: 0;
    right: 5px;
}

.sign-area form label img {
    width: 17px;
    position: absolute;
    top: 4px;
    left: 0;
}

.sign-area form label input::placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #000842;
}


.form-group {
  display: block;
  margin-bottom: 15px;
}

.form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group label {
  position: relative;
  cursor: pointer;


    font-weight: 300;
    font-size: 14px;
    line-height: 1.3;
    color: #000000;
}

.form-group label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #000000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}

.form-group input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 9px;
  width: 6px;
  height: 12px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}


.remember-flex {
    display: flex;
    margin-bottom: 47px;
    justify-content: space-between;
}

.pass-zone a {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.3;
    color: #4D4D4D;
}

.button {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    color: #FFFFFF;

    width: 100%;
    border: none;
    background: #0C21C1;
    box-shadow: 0px 4px 26px 0px #00000040;
    padding: 13px 0;
    border-radius: 8px;
}

.button:hover {
    background: #2A3DC9;
    transition: 0.3s ease all;
}

.sign-area form .pera {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    color: #B5B5B5;
    margin-top: 49px;
    margin-bottom: 43px;
    text-align: center;
}

.sign-area form ul {
    padding: 0;
}

.sign-area form ul li {
    display: block;
}

.sign-area form ul.continue-with li {
    display: inline-block;
    margin-right: 10px;
}

.sign-area form ul .google-ctn img {
    width: 26px;
    margin-right: 21px;
}

.sign-area form ul .google-ctn a {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    color: #0C21C1;
    background: #E9F1FF;
    border-radius: 9px;
    padding: 15px 43px 15px 30px;
}

.sign-area form ul .facebook-zone a {
    background: #F6F6F6;
    border-radius: 9px;
    padding: 12px 16px 14px;
}

.sign-area form ul .facebook-zone a i {
    font-size: 24px;
}

.sign-area form ul .apple-zone a {
    background: #F6F6F6;
    border-radius: 9px;
    padding: 12px 16px 14px;
    margin-right: 0;
}

.sign-area form ul .apple-zone a i {
    font-size: 20px;
    background: #000;
    color: #fff;
    padding: 0px;
    border-radius: 50px;
    width: 25px;
    height: 25px;
    line-height: 23px;
    text-align: center;
}

.arco-side {
    background: #000842;
    padding: 47px 57px 80px;
    position: relative;
    z-index: 1;
}

.shap-img img {
    width: auto;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.arco-logo-zone img {
    width: 153px;
    margin-bottom: 56px;
}

.arco-item img {
    width: auto;
}

.arco-item h2 {
    font-weight: 600;
    font-size: 34px;
    line-height: 1.3;
    color: #FFFFFF;
    margin-top: 36px;
    margin-bottom: 16px;
}

.arco-item h4 {
    font-weight: 300;
    font-size: 20px;
    line-height: 1.3;
    color: #FFFFFF;
}

#arco-carousel .owl-nav {
    margin-top: 40px;
}

#arco-carousel .owl-next {
    font-size: 32px;
    color: #fff;
    width: 33px;
    height: 30px;
    border: 1px solid #fff;
    line-height: 20px;
    text-align: center;
    border-radius: 6px;
    background: #000842;
    margin-left: 16px;
    background: transparent;
}

#arco-carousel .owl-prev {
    font-size: 32px;
    color: #fff;
    width: 33px;
    height: 30px;
    border: 1px solid #fff;
    line-height: 20px;
    text-align: center;
    border-radius: 6px;
    background: #000842;
    background: transparent;
}

#arco-carousel .owl-prev:hover {
    background: #fff;
    color: #000842;
    transition: 0.3s ease-in-out;
}

#arco-carousel .owl-next:hover {
    background: #fff;
    color: #000842;
    transition: 0.3s ease-in-out;
}


/*=======================

    Signup-page start 

=========================*/

.signup-zone form input, .country-input {
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 2px solid #000842;
    padding: 7px 0px 0;
    margin-bottom: 30px;
}

.intl-tel-input,
.iti{
  width: 100%;
}

.iti__country-list {
  max-width: 400px;
}

.iti__flag-box, .iti__country-name {
  max-width: 250px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.name-flex {
    display: flex;
    justify-content: space-between;
}

.name-flex input {
    width: 50%;
    padding: 0;
}

.signup-zone form .half-ipt {
    width: 87%;
    padding: 7px 73px 7px 0;
}

.signup-zone form input::placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    color: #000842;
}

.signup-zone form .half-ipt2 {
    width: 100%;
}

.signup-zone .radioo-zone input {
    width: 10%;
    margin-right: 12px;
    margin-top: 5px;
    margin-bottom: 32px;
}

.radioo-zone p {
    
}

.locak-school {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.number-flex {
    margin-bottom: 30px;
}

.signup-zone .number-flex label input {
    padding: 7px 0px 7px 50px !important;
    margin-bottom: 0;
    border: none;
    border-bottom: 2px solid #000842;
    width: 87%;
}

.number-flex label img {
    width: 40px !important;
}

.signup-zone .second-inpt label input {
    margin-bottom: 30px;
}

.signup-zone .button {
    margin-top: 16px;
}





/*=======================

    portal-page start 

=========================*/

.header-area {
    background: #142646;
    padding: 19px 0 26px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left a img {
    width: 100%;
}

.header-right {
    display: flex;
}

.hr-image img {
    width: 36px;
    margin-right: 31px;
}

.header-right form img {
    width: 46px;
    margin-right: 11px;
}

.header-right form .hd-button {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    color: #FFFFFF;
    border: none;
    background: transparent;
}

.header-right form .hd-button img {
    width: 16px;
    margin-left: 11px;
}



/*=======================
    draft-area start 
=========================*/

.draft-area {
    background: #ffffff;
    box-shadow: 0px 4px 10px 0px #E4E4E440;
    padding: 18px;
}

.draft-main {
    display: flex;
    align-items: center;
}

.draft-main a img {
    width: 62px;
    margin-right: 19px;
}

.draft-main h5 {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: #000000;
}


/*=======================
    aplication-area start 
=========================*/


.aplication-area {
    background: #EAF0FC;
    padding: 30px 0 109px;
}

.aplication-left {
    background: #ffffff;
    box-shadow: 0px 4px 10px 0px #E4E4E440;
    border-radius: 8px;
    padding: 20px 10px 1px 10px;
}

.aplication-left h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 21px;
}

.aplication-left ul {
    padding: 0;
}

.aplication-left ul li {
    margin-bottom: 10px;
}

.aplication-left ul li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    color: #3B3B3B;
    background: #F9FAFF;
    padding: 13px;
    display: block;
    border-radius: 8px;
}

.aplication-left ul li a.active {
    background: #142646;
    color: #ffffff;
}

.aplication-left ul li a.active span {
    background: #ffffff;
}

.aplication-left ul li a:hover {
        border: 1px solid #00B2E1;
}
/*
.aplication-left ul li a:hover span {
    background: #ffffff;
} */

.aplication-left ul li a span {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16.15px;
    line-height: 1.3;
    color: #000000;
    margin-right: 12px;
    background: #DBE0F4;
    border-radius: 50px;
    padding: 6px 10px;
    width: 30px;
    height: 30px;
    text-align: center;
    display: inline-block;
}

.aplication-right {
    background: #ffffff;
    box-shadow: 0px 4px 10px 0px #E4E4E440;
    border-radius: 8px;
}

.risk-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px 20px;
}

.risk-flex h4 {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.3;
    color: #000000;
}

.risk-sla p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 5px;
}

.risk-draft {
    text-align: right;
}

.risk-draft p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 5px;
}

.risk-draft a {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
    background: #1494BB1F;
    padding: 4px 13px;
    border-radius: 4px;
}

.risk-form {
    padding: 30px 30px 30px 30px;
}

.risk-form-fast textarea {
    margin-bottom: 40px;
}

.risk-form-fast.full-width textarea,
.referral-form-half.full-width textarea {
    width: 100%;
}


.risk-form-flex,
.referral-form-flex,
.finance-item-form-flex,
.document-form-flex,
.user-profile-form-flex,
.school-edit-form-flex {
    display: flex;
    justify-content: space-between;
}

.risk-form-fast p,
.referral-form-half p,
.referral-form-fast p,
.finance-item-form-half p,
.document-form-half p,
.user-profile-form-half p,
.school-edit-form-half p {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
    color: #666666;
    margin-bottom: 8px;
}

.risk-form-fast p img,
.referral-form-fast p img,
.finance-item-form-half p img,
.document-form-fast p img,
.user-profile-form-half p img,
.school-edit-form-half p img {
    width: 20px;
}

.risk-form-fast input,
.referral-form-half input,
.finance-item-form-half input,
.document-form-half input,
.user-profile-form-half input,
.school-edit-form-half input {
    width: 425px;
    padding: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    margin-bottom: 40px;
}

.risk-form-fast input::placeholder,
.referral-form-half input::placeholder,
.document-form-half input::placeholder,
.user-profile-form-half input::placeholder,
.school-edit-form-half input::placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #666666;
}

.risk-form-fast select,
.referral-form-half select,
.finance-item-form-half select,
.document-form-half select,
.user-profile-form-half select,
.school-edit-form-half select {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #333333;
    padding: 16px;
    border: 1px solid #CCCCCC;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 40px;
    width: 425px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.risk-form-fast label,
.referral-form-half label,
.finance-item-form-half label,
.document-form-half label,
.user-profile-form-half label,
.school-edit-form-half label {
    position: relative;
}

.risk-form-fast label img,
.referral-form-half label img,
.finance-item-form-half label img,
.document-form-half label img,
.user-profile-form-half label img,
.school-edit-form-half label img {
    position: absolute;
    top: 23px;
    right: 26px;
}

.back-area {
    display: flex;
    justify-content: space-between;
    padding: 30px;

}


.back-fast a {
    width: 172px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    color: #AAAAAA;
    padding: 16px;
    border: 1px solid #AAAAAA;
    border-radius: 28px;
}

.back-last a {
   /* width: 172px; */
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    color: #142646;
    background: transparent;
    border: 1px solid #142646;
    border-radius: 38px;
    padding: 16px;
    margin-left: 20px;
}

.back-last a:hover,
#next {
    color: #fff;
    background: #142646;
    transition: 0.3s ease-in-out;
}


/*========================
 footer-area start here 
=========================*/

.footer-area {
    background-color: #ffffff;
    padding: 15px 0;
}

.foter-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.foter-flex p {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 3%;
    color: #142646;
}

.footer-link ul {
    padding: 0;
}

.footer-link ul li {
    display: inline-block;
    margin-left: 50px;
}

.footer-link ul li a {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 3%;
    color: #142646;
}


/*=======================

    portal-page2 start 

=========================*/


.submit-zone {
    text-align: center;
    padding: 100px 0 97px;
}

.submit-zone img {
    width: 69px;
    margin-bottom: 37px;
}

.submit-zone h5 {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 5px;
}

.submit-zone p {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 3%;
    color: #5B5B5B;
    margin-bottom: 24px;
}

.submit-zone a {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    color: #226E88;
    background: #1494BB1F;
    border-radius: 4px;
    padding: 4px 10px;
}

/*=======================

    portal-page3 start 

=========================*/

.aplication-left ul .small-tik a {
    background: #fff;
    border: 1px solid #00B2E1;
}

.aplication-left ul .small-tik a span {
    margin-right: 12px;
    background: none;
    padding: 0;
}

.aplication-left ul .small-tik a span img {
    width: 26px;
}


/*=======================

    portal-page5 start 

=========================*/

.text-image {
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    padding: 10px;
}

.text-image img {
    width: 100%;
}



.sign-zone a {
    color: #1D9938;
    background: #14BB461F;
}

.arco-checkbox {
    width: 425px;
}

/******************************************/
/*      Styling fixes for Arco theme      */
/******************************************/

.risk-form-fast.full-width label,
.referral-form-half.full-width label {
    width: 100%;
}

label.arco-pkg-select-label {
    width: auto !important;
}

input.arco-pkg-select {
    width: 33px !important;
}