@font-face {
    font-family: "Avenir";
    src: url(../fonts/AvenirRegular.ttf);
    font-display: swap;
}

@font-face {
    font-family: "Avenir-Light";
    src: url(../fonts/AvenirLight.ttf);
    font-display: swap;
}

@font-face {
    font-family: "Avenir-Medium";
    src: url(../fonts/AvenirMedium.ttf);
    font-display: swap;
}

@font-face {
    font-family: "Avenir-Heavy";
    src: url(../fonts/AvenirHeavy.ttf);
    font-display: swap;
}

@font-face {
    font-family: "Avenir-Black";
    src: url(../fonts/AvenirBlack.ttf);
    font-display: swap;
}

@font-face {
    font-family: "Avenir-Book";
    src: url(../fonts/AvenirBook.ttf);
    font-display: swap;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    font-family: "Avenir", sans-serif;
    font-size: 1.6rem;
    overflow-x: hidden;
}

@media(min-width:1601px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1500px;
    }
}

@media(min-width:1025px) and (max-width:1280px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1020px;
    }
}

@media(min-width:1281px) and (max-width:1440px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1220px;
    }
}

@media(min-width:1441px) and (max-width:1600px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1400px;
    }
}

.row {
    margin: 0 -15px;
}

a {
    text-decoration: none;
}

@media(min-width:1450px) {
    .row {
        margin: 0 -25px;
    }
}

.row>div {
    padding-right: 15px;
    padding-left: 15px;
}

@media(min-width:1450px) {
    .row>div {
        padding-right: 25px;
        padding-left: 25px;
    }
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    outline: 0;
    box-shadow: none;
}

.btn:focus {
    outline: 0;
    box-shadow: none;
}

.btn-outline {
    border-color: #747474;
    padding: 15px 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -khtml-border-radius: 10px;
    position: relative;
    font-size: 1.8rem;
    background-color: #fff;
    color: #000;
    font-family: "Avenir-Heavy", sans-serif;
    outline: 0;
}

.btn-outline:hover {
    color: #fff;
    border-color: #000;
    background-color: #000;
}

.btn-outline:focus {
    color: #000;
    border-color: #747474;
    background-color: #fff;
}

.btn-outline:focus:hover {
    color: #fff;
    border-color: #000;
    background-color: #000;
}

@media(max-width:1450px) {
    .btn-outline {
        font-size: 1.4rem;
        padding: 8px 24px;
    }
}

@media(max-width:991px) {
    .btn-outline {
        padding: 11px 24px;
    }
}

.btn-primary {
    font-size: 1.8rem;
    display: block;
    width: 100%;
    border: 0;
    margin: 10px 0 0;
    padding: 12px 50px;
    border-radius: 100px;

    position: relative;
    background-color: #ef4232;
    outline: 0;
}

.btn-primary.btn-lg {
    font-size: 2rem;
    font-family: "Avenir-Heavy", sans-serif;
    padding: 17px 20px;
}

@media(max-width:1601px) {
    .btn-primary.btn-lg {
        font-size: 1.8rem;
    }
}

.btn-primary:after {
    content: "";
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -khtml-border-radius: 10px;
    background-color: #db4234;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    transition: all .5s;
    left: 0;
    bottom: 0;
    opacity: 0;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    color: #fff;
    border-color: transparent;
    background-color: #d93f31;
}

.btn-primary:hover:after,
.btn-primary:active:after,
.btn-primary:focus:after {
    opacity: 1;
    width: calc(100% + 10px);
    left: -5px;
}

.btn-secondary {
    border: solid 1px #f0f0f0;
    padding: 12px 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -khtml-border-radius: 10px;
    position: relative;
    background-color: #fff;
    color: #000;
}

.btn-secondary:after {
    content: "";
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -khtml-border-radius: 10px;
    background-color: #f0f0f0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    transition: all .5s;
    left: 0;
    bottom: 0;
    opacity: 0;
}

.btn-secondary:hover {
    color: #000;
    border-color: transparent;
    background-color: #f0f0f0;
}

.btn-secondary:hover:after {
    opacity: 1;
    width: calc(100% + 10px);
    left: -5px;
}

strong,
b {
    font-family: "Avenir-Heavy", sans-serif;
}

.font-medium {
    font-family: "Avenir-Medium", sans-serif;
}

.font-light {
    font-family: "Avenir-Light", sans-serif;
}

header {
    transition: all .4s;
}

header.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #000;
}

.lp-banner-section {
    background-size: contain;
    position: relative;
    border-bottom: solid 1px #eee;
    padding: 20px 0;
}

header {
    transition: all .4s;
}

header.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #000;
}

.clearfix {
    clear: both;
}

.banner_inner {
    position: relative;
    margin: 0px 0 0;

    background: url("../images/cover.webp") no-repeat top center;
    background-size: cover;


}

.section-mb {
    margin-bottom: 0px;
}

.banner_inner h4 {
    font-size: 37px;
    font-family: "Avenir-Black", sans-serif;
    color: #fff;
    text-transform: none;
    padding: 78px 0 0;
}

.banner_inner h4 span {
    color: #ef4232;
    font-size: 6rem;
    line-height: 1;
    font-weight: bold;
    display: block;
}

.banner_inner ul {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
}

.banner_inner li {
    font-size: 24px;
    color: #fff;
    margin: 0 0 0px;
}

.banner_inner li img {
    max-width: 6%;
    margin: 0 10px 0 0;
}

.banner_form {
    background: #fff;
    padding: 30px;
    border-radius: 0px;
}

.banner_form h2 {
    color: #000;
    font-size: 19px;
    font-weight: bold;
    text-align: center;
    display: block;
}

.banner_form h2 span {
    display: block;
    background: #ef4232;
    color: #fff;
    padding: 15px;
    margin: 10px 0 0;
}

.banner_form h2 span b {
    display: block;
    color: #ffd800;
    font-size: 22px;
}

.banner_form .form-control {
    padding: 15px 10px;
    outline: 0;
    font-size: 14px;
    margin: 5px 0;
}

.banner_form .border0 {
    border: 0;
    padding: 10px 10px;
}

.banner_form .form-select {
    margin: 0 0 10px;
    padding: 0rem 2.25rem 0rem .75rem;
}

.section-heading h2 {
    font-size: 48px;
    font-family: "Avenir-Black", sans-serif;
    padding: 0 0 20px;
}

.section-heading h2 span {
    font-family: "Avenir-light", sans-serif;
}

.slick-slider .slick-track .slick-slide img {
    border: 1px solid #ccc;
    border-radius: 20px;
}

#btnverifyotp,#btnresetotp{ text-align: center; line-height: 17px; padding: 13px 20px; width: auto; margin: auto; margin-top: 15px;}
.submit_btns{overflow: hidden; }  
.verify_resend-btns{display: flex; place-items: center;  justify-content: space-between;}   
#btnresetotp {
    margin-bottom: 0; background: #ededed; color: #000000;
}

.big.deskk {
    display: block;
}

.big.mobk {
    display: none;
}

.nav-tabs {
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 2px;
    border: 0;
    margin: 40px 0 0 0px !important;
}

/*****module design start*****/
.module {
    font-size: 2.5rem !important;
}

.module,
.foundation {
    background: none !important;
    padding: 0px !important;
    font-weight: bold;
}

.foundation {
    font-size: 2rem !important;
    font-weight:bold;
}

/*****module design end*****/
.certificate-div{
    height:450px;
    overflow-y: scroll;
}
.head-1 {
    font-size: 1.75rem !important;
    margin-top: 2%;
}

.head-1::after {
    width: 30%;
    height: 1%;
    background: #000;
}

.certificate-div ul {
    margin: 0px !important;
    padding-left: 20px;
    font-size: 1.75rem;
}

.certificate-div li {
    font-size: 1.75rem !important;
}

.rounded-tabs .nav-item {
    margin-right: 20px;
    cursor:pointer;
}

.module,
.foundation {
    background: none !important;
    padding: 0px !important;
    font-weight: bold;
}

.module {
    font-size: 2.5rem !important;
}

.nav-tabs .nav-link {
    white-space: nowrap;
}

.rounded-tabs .nav-link {
    border: solid 1px #CBCBCB;
    border-radius: 10px;
    font-size: 2rem;
    background: #ef4232;
    color: #fff;
    padding: 10px 25px;
    display: inline-block;
}

.rounded-tabs .nav-link.active {
    border-color: #000;
    background-color: #000;
    color: #fff;
    font-family: "Avenir-Heavy", sans-serif;
}

.tab-content {
    /* border: solid 1px #CBCBCB;*/
    border-radius: 10px;
    margin: 10px 0 0;
    color: #000000;
    font-size: 1.6rem;
    padding: 20px;
    background: #edecec;
}

.achievement_section {
    margin: 50px 0 0;
}

.tab-content li {
    padding: 10px 0;
    font-size: 2rem;
    display: list-item !important;
}

.slick-track {
    height: 200px;
}

.middlecon {
    padding: 70px 0;
    overflow: hidden;
}

.middlecon ul {
    margin: 40px 0 0 50px;
}

.middlecon li {
    display: block;
    font-size: 2rem;
    padding: 0 0 10px;
}

.middlecon li strong {
    padding: 0px 0 0px;
    display: block;
    font-weight: bold;
    font-family: "Avenir-Black", sans-serif;
}

.middlecon h2 {
    color: #000;
    text-align: left;
    font-size: 4rem;
    font-weight: bold;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #878787;
    background: #edecec;
}

.middlecon h2.big {
    font-size: 5rem;
}

.middlecon h2 span {
    font-size: 30px;
    font-weight: normal;
    display: block;
}

.middlecon h3 {
    font-size: 3rem;
    background: #ef4232;
    color: #fff;
    padding: 10px 40px;
    display: inline-block;
    margin: 40px 0 20px;
}

.middlecon a {
    font-size: 2rem;
    background: #ef4232;
    color: #fff;
    padding: 10px 40px;
    display: inline-block;
    margin: 20px 0 20px;
    border-radius: 100px;
}

.middlecon p {
    color: #000;
    background: #edecec;
    padding: 0px;
    font-size: 2rem;
}


.overviewBx {
    background: #000;
    border-radius: 20px;
    float: left;
    width: 100%;
}

.overviewBx h3 {
    font-size: 38px;
    color: #fff;
    font-weight: bold;
    padding: 50px 0 0;
    text-align: center;
    position: relative;
}

.overviewBx h3:before {
    content: "";
    background-color: #ff9999;
    width: 15%;
    height: 4px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -10px;

}

.overviewBx ul {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    text-align: center;
}

.overviewBx li {
    margin: 0 0 15px;
    display: inline-block;
    float: left;
    width: 14%;
    text-align: center;
}

.overviewBx li img {
    max-width: 35%;
    margin: 0 auto;
    display: block;
}

.overviewBx li span {
    display: block;
    font-size: 17px;
    line-height: 1.3;
    margin: 10px auto;
    color: #fff;
    max-width: 150px;
    text-align: center;
}

.overview-text {
    padding: 20px;
}

.overview-text p {
    color: #fff;
    font-size: 17px;
    line-height: 1.5;
    padding: 30px 0 0px;
}

.whypearl {
    background: #fff;
    border-radius: 20px;
    float: left;
    width: 100%;
    margin: 50px 0 0;
    border-top: 4px solid #000;
    border-radius: 0;
}

.whypearl h3 {
    font-size: 48px;
    color: #000;
    font-weight: bold;
    padding: 50px 0 0;
    text-align: center;
    position: relative;
}

.pearlAdvantage-section h2 {
    margin: 0 0 50px;
    font-size: 48px;
    color: #000;
    font-weight: bold;
    padding: 50px 0 20px;
    text-align: center;
    position: relative;
}

.pearlAdvantage-section h2:before {
    content: "";
    border-bottom: 4px solid #000;
    width: 150px;
    margin: 0 0 0 80px;
    height: 5px;
    position: absolute;
    bottom: 0px;
}

.pearlAdvantage-section h3 {
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 0 0 20px;
    text-align: left;
    position: relative;
}

.pearlAdvantage-section p {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    padding: 10px 0 20px 20px;
    text-align: left;
    position: relative;
}

.pearlAdvantage-section {
    margin: 40px 0 0;
    float: left;
    width: 100%;
}

.awardbg {
    width: 100%;
    float: left;
}

.awardbg .desktop {
    display: block;
}

.awardbg .mobile {
    display: none;
}

.pearl-slider .item {
    padding: 0px;
    margin: 0 20px;
}

.whypearl ul {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    text-align: center;
    max-width: 1250px;
}

.whypearl li {
    margin: 1% 15px;
    padding: 0 0 20px;
    display: inline-block;
    float: left;
    width: 47%;
    text-align: left;
    border-bottom: 1px solid #000;
}

.whypearl li:last-child {
    border: 0;
}

.whypearl li:nth-child(5) {
    border: 0;
}

.whypearl li img {
    max-width: 15%;
    float: left;
}

.whypearl li span {
    font-size: 26px;
    line-height: 1.3;
    margin: 0px 0 0 20px;
    color: #000;
    max-width: 350px;
    float: left;
}

.callbx {
    background: url("../images/bg-welcome.jpg") no-repeat top center;
    background-size: cover;
    padding: 50px 0;
    border-bottom: 5px solid #7f1409;
}

.callbx h2 {
    font-size: 8rem;
    color: #fff;
    font-weight: bold;
    padding: 50px 0 0;
    text-align: center;
}

.callbx p {
    color: #fff;
    font-size: 38px;
    text-align: center;
}

.callbx h3 {
    font-size: 3rem;
    color: #fff;
    font-weight: normal;
    padding: 10px 0px 40px;
    text-align: center;
}

.callbx h4 {
    font-size: 8rem;
    color: #fff;
    font-weight: bold;
    padding: 0px 0 40px;
    text-align: center;
}

.callbx a {
    font-size: 38px;
    display: block;
    color: #fff;
    font-weight: bold;
    max-width: 300px;
    margin: 0px 0 0px;
    padding: 10px 0;
    margin: 0 auto;
    text-align: center;
    background: #ff0000;
    border: 2px solid #fff;
    text-decoration: none;
    border-radius: 200px;
}

.footerbx {
    background: #000;
    padding: 50px 0;
}

.footerbx p {
    color: #fff;
    font-size: 2rem;
    text-align: center;
}

.footerbx ul {
    list-style: none;
    text-align: center;
}

.footerbx li {
    display: inline-block;
    margin: 0 8px;
}

.footerbx li a img {
    opacity: .7;
}

.footerbx li a img:hover {
    opacity: 1;
}

#more,#more1,#more2,#more3 {
    display: none;
}

.coverM {
    background: none;
}

.middlecon button {
    border: 0;
    border-radius: 50px;
    font-weight: bold;
    background-color: #ef4232;
    color: white;
    padding: 5px 20px 5px 25px;
}

.blinkers {
    animation: blink 1s linear infinite;

}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }

}

.slick-slider .slick-track {
    display: flex;
}

.slick-slider .slick-track .slick-slide {
    display: flex;

    padding: 0px;
}

@media(min-width:1601px) {
    .slick-slider .slick-track .slick-slide {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media(max-width:991px) {
    .banner_form .border0{padding:6px;}
    .slick-slider .slick-track .slick-slide {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0px;
    }

    .slick-dots li {
        margin: 0 -1px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .awardbg .desktop {
        display: none;
    }

    .awardbg .mobile {
        display: block;
    }
}



.slick-slider .slick-track .slick-slide a {
    text-decoration: none;
}

.slick-slider .slick-track .slick-slide img {
    display: inline-block;
}

@media(max-width:1023px) {

    .rounded-tabs .nav-item {
        margin-right: 5px;
    }



    .slick-slider {
        margin: 0;
        padding-bottom: 40px;
    }

    .slick-slider .slick-prev {
        left: 0;
        top: auto;
        bottom: -4px;
        z-index: 10;
        text-align: left;
    }

    .slick-slider .slick-prev.slick-disabled {
        bottom: -17px;
    }

    .slick-slider .slick-next {
        right: 0;
        bottom: -17px;
        top: auto;
        z-index: 10;
        text-align: right;
    }

    .slick-slider .slick-next.slick-disabled {
        bottom: -4px;
        text-align: left;
    }
}

.slick-slider.no-slider {
    padding-right: 0 !important;
}

.slick-list {

    margin: 0 -15px;

}

@media(max-width: 768px) {
    .rounded-tabs .nav-link {
        font-size: 1.6rem;
        padding: 10px;
    }

    .slick-list {

        overflow: visible;

        margin: 0;

        padding: 0 15px;

    }

    .rounded-tabs .nav-link {
        font-size: 1.6rem;
    }

    .tab-content {
        margin: 0;
    }

    .tab-content li {
        font-size: 1.6rem;
        padding: 5px 0;
    }

}

@media(max-width: 1601px) {

    .slick-next: before,
    .slick-prev:before {

        transform: scale(0.75);

    }

    .slick-next {

        right: -10px;

    }

    .slick-prev {

        right: 70px;

    }
}

.no-slider.slick-slider {

    padding-bottom: 0;

}

@media(max-width: 991px) {

    .no-slider.slick-slider {

        padding-bottom: 0;

    }
}

@media(max-width: 991px) {

    .no-slider.slick-slider .slick-slide {

        padding: 0;

    }

    .big.deskk {
        display: none;
    }

    .big.mobk {
        display: block;
    }
}

.no-slider.slick-slider .slick-dots {

    display: none !important;

}

@media(max-width:1366px) {

    .whypearl li span {
        max-width: 310px;
        font-size: 23px;
    }
}

@media(max-width:991px) {

    .banner_inner {
        background: url("../images/cover_m.webp") no-repeat top center #000;
    }

    .banner_inner .bg3 {
        background: #000;
        padding: 30px 30px;
    }

    .banner_inner h4 {
        font-size: 20px;
        padding-left: 20px;
        padding-top: 0px;
    }

    .banner_inner ul {
        padding-left: 20px;
        margin-top: 20px;
    }

    .banner_inner h4 span {
        font-size: 30px;
    }

    .banner_inner li {
        font-size: 16px;
        margin: 0 0 5px;
    }

    .banner_inner li img {
        max-width: 7%;
    }

    .banner_form {
        padding: 30px 13px;
    }

    .whypearl li:nth-child(5) {
        border-bottom: 1px solid #000;
    }

    .banner_form h2 {
        font-size: 18px;
    }

    .banner_form h2 span b {
        padding: 7px 0 0;
        font-size:18px;
    }

    .middlecon h2 {
        font-size: 2rem;
        padding: 10px 10px;
        margin: 0 5% 20px 5%;
        width: 90%;
        text-align: center;
    }

    .middlecon h2.big {
        font-size: 3rem;
        padding: 10px 10px;
        margin: 0 5% 20px 5%;
        width: 90%;
    }

    .pearlAdvantage-section h2:before {
        margin: 0 0 0 20px;
    }

    .footerbx li {
        width: 8%;
    }

    .footerbx li a img {
        max-width: 100%;
        display: block;
    }

    .callbx h4 {
        font-size: 4rem;
    }

    .middlecon ul {
        margin: -10px 0 0px 11px;
    }

    .middlecon li {
        padding: 0 0 5px;
        font-size: 1.7rem;
    }

    .middlecon p {
        font-size: 1.7rem;
        padding: 9px 5px;
    }

    .middlecon h2 span {
        font-size: 22px;
        padding: 10px 0 0;
    }

    .overviewBx li {
        width: 20%;
        margin: 0 2%;
        min-height: 100px;
        float: none;
        display: inline-block;
    }

    .overviewBx li span {
        width: 100%;
        max-width: inherit;
        font-size: 12px;
        display: block;
    }

    .whypearl h3,
    .overviewBx h3 {
        font-size: 28px;
        padding: 20px 0 0;
    }

    .banner_form .form-control {
        padding: 9px 10px;
    }

    .achievement_section {
        margin: 20px 0 0;
    }

    .banner_form .form-control.border0 {
        padding: 6px;
    }

    .overviewBx h3:before {
        width: 35%;
    }

    .whypearl li {
        min-height: 55px;
        padding: 0 0 5px;
        margin: 0 2% 15px;
        width: 90%;
    }

    .whypearl li span {
        max-width: 77%;
        margin: 0 0 0px 7px;
        font-size: 1.6rem;
    }

    .whypearl {
        margin: 10px 0 0;
    }

    .whypearl li img {
        max-width: 20%;
    }

    .callbx h2 {
        font-size: 26px;
        padding: 20px 20px 20px
    }

    .slick-track {
        height: 170px;
    }

    .callbx h3 {
        font-size: 20px;
        padding: 0px 0 20px
    }

    .callbx h3 b {
        margin: -10px 0 0;
    }

    .callbx p {
        font-size: 21px;
    }

    .callbx a {
        border-radius: 7px;
        padding: 14px 50px;
        border: 1px solid #fff;
        font-size: 18px;
        max-width: inherit;
        display: block;
        margin: 0 12%;
    }

    .callbx {
        padding: 10px 0;
    }

    .footerbx {
        padding: 20px 0;
    }

    .footerbx p {
        font-size: 12px;
    }

    .middlecon {
        padding: 23px 0 50px 0px;
    }

    .section-heading {
        padding: 0 20px;
    }

    .btn-primary {
        width: 100%;
        border-radius: 100px;
        margin: 10px 0 0;
    }

    .overview-text p {
        padding: 20px 20px 0;
        text-align: center;
    }

    .pearl-slider .item {
        margin: 0 5px;
    }

    .pearlAdvantage-section h2 {
        font-size: 28px;
        padding: 5px 0 10px;
    }

    .pearlAdvantage-section {
        margin: 20px 0;
    }


    #btnresetotp {
        margin-bottom: 0;
        background: #ededed;
        color: #000000;
        margin-top: 15px;
        top: -3px;
        left: 0px;
        height: 42px;
        width: 183px;
    }
}