* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(41, 40, 40, 0.3);
    border-radius: 10px;
    background-color: #f5f5f5;
}

body::-webkit-scrollbar {
    width: 12px;
    background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(80, 78, 78, 0.3);
    background-color: #555;
}

@font-face {
    font-family: MontserratAlternates;
    src: url(text_font/MontserratAlternates-Regular.ttf);
}

body {
    font-family: MontserratAlternates;
}

/*--------------------------------------------------------------
    # Header
    --------------------------------------------------------------*/
#header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px -6px 21px rgba(0, 0, 0, 0.25);
}

#header.header-scrolled {
    background: #fff;
    height: 80px;
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 4px 0;
    line-height: 1;
    font-weight: 500;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 80px;
}

/*--------------------------------------------------------------
      # Navigation Menu
      --------------------------------------------------------------*/
/**
      * Desktop Navigation
      */
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}


.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 20px;
    font-size: 17px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.65);
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: rgb(0, 0, 0);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: rgb(42, 66, 136);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    color: #101c36;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #2d71a1;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
      * Mobile Navigation
      */
.mobile-nav-toggle {
    color: rgb(0, 0, 0);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(0, 0, 0, 0.4);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #42325b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #42325b;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #42325b;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/* ///////////////////////////////
  //// Component */

.curve_btn {
    background-color: #000;
    color: #fff;
    transform: skewX(-10deg);
    -webkit-transform: skewX(-10deg);
    -moz-transform: skewX(-10deg);
    border-radius: 3px;
    margin: 0 8px;
}

.curve_btn a {
    transform: skewX(10deg);
    -webkit-transform: skewX(10deg);
    -moz-transform: skewX(10deg);
}

/* ///////////////////////////////
  //// Header Section */

#header-section {
    margin-top: 87px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    position: relative;

}


#header-section .header-background-img1 {
    content: "";
    position: absolute;
    min-height: 100px;
    min-width: 93.5%;
    top: 0;
    /* right: 100; */
    background-image: url(../assets/background-img/header-img-1.png);
    background-repeat: no-repeat;
    background-position: right;
}

#header-section .header-background-img2 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 97%;
    /* top: -15; */
    right: 45;
    background-image: url(../assets/background-img/header-img-3.png);
    background-repeat: no-repeat;
    background-position: right;
}

#header-section .header-background-img3 {
    content: "";
    position: absolute;
    min-height: 350px;
    min-width: 100%;
    /* top: 60; */
    right: 0;
    background-image: url(../assets/background-img/header-img-2.png);
    background-repeat: no-repeat;
    background-position: right;
}

#header-section .header-title {
    display: inline-block;
    position: relative;
    font-family: inherit;
    font-style: normal;
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: #000000;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#header-section .header-title-2 {
    position: relative;
    font-family: inherit;
    font-style: normal;
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: rgb(0, 0, 0, 0.5);
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    -webkit-text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
}

#header-section .header-title span {
    font-family: inherit;
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 0.2em;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
    -webkit-text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}


.header-title .word-2::before {
    content: '';
    color: #aa3939;
    animation: profile 10s infinite;
}

@keyframes profile {
    0% {
        content: 'tutoring '
    }

    25% {
        content: 'Training '
    }

    50% {
        content: 'mentoring'
    }

    75% {
        content: 'Coaching '
    }

    100% {
        content: 'counselling'
    }
}

.word {
    color: #1539D1;
}

.word::after {
    content: "\00a0";
}


#header-section .header-desc {
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: rgba(0, 0, 0, 0.5);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 1.5rem 0;
}

#header-section .header-btn-div {
    text-align: center;
}

#header-section .header-btn-div a {
    display: inline-block;
    background: #f3f0f0;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25);
    color: #000;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 300;
    padding: 6px 17px;
    letter-spacing: 0.05em;
    margin: 6px;
}

#header-section .header-btn-div a:hover {
    display: inline-block;
    background: #edecec;
    box-shadow: 1px 5px 2px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 1px 5px 2px rgba(0, 0, 0, 0.25);
    color: #000;
}

#header-section .header-video {
    margin: 2.5rem 5rem;
    padding: 5px;
    text-align: center;
    box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}

#header-section .header-video video {
    height: auto;
    width: 100%;
}

@media only screen and (max-width:992px) {
    #header-section .header-video {
        margin: 2.5rem 1rem;
        padding: 3px;
        text-align: center;
        box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.25);
        -webkit-box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.25);
        border-radius: 5px;
    }
}


@media only screen and (max-width:768px) {
    #header-section .header-video {
        margin: 2.5rem 1rem;
        padding: 3px;
        text-align: center;
        box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.25);
        -webkit-box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.25);
        border-radius: 5px;
    }
}

/* ///////////////////////////////
  //// LMS Steps Section */

.lms-steps-section {
    position: relative;
}

.lms-steps-section .lms-section-title {
    font-family: inherit;
    font-style: normal;
    font-size: 1.3rem;
    font-weight: 600;
}

.lms-steps-section .lms-steps-bg-icon1 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 85%;
    top: 0;
    background-image: url(../assets/background-img/blue-circle.png);
    background-repeat: no-repeat;
    background-position: top;
}

.lms-steps-section .lms-steps-bg-icon2 {
    content: "";
    position: absolute;
    min-height: 150px;
    min-width: 100%;
    top: -40;
    /* right: 50; */
    background-image: url(../assets/background-img/two-lines.png);
    background-repeat: no-repeat;
    background-position: center;
}



.lms-steps-section .card {
    background: #FFFFFF;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.25);
    border-radius: 2px;
}

.lms-steps-section .lms-steps-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.lms-steps-section .lms-step1 {
    background: #FFE4E4;
}

.lms-steps-section .lms-step2 {
    background: #D2D4FF;
}

.lms-steps-section .lms-step3 {
    background: #F1FFD2;
}

.lms-steps-section .card .card-body a {
    font-size: 0.8rem;

}

.lms-steps-section .card .card-body a:hover {
    color: #fff;
}


/* ///////////////////////////////
  //// LMS subscription Section */

.subscription-section .subscription-part {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
}

.subscription-section .subscription-part .box-desc {
    /* background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 4px; */
}

.subscription-section .subscription-part .box-desc p,
span {
    font-family: inherit;
    font-style: normal;
    font-weight: 300;
    font-size: 1.6rem;
    color: rgba(0, 0, 0, 0.7);
}

.subscription-section .subscription-part .box-desc .subscription-txt{
    color: rgb(55, 19, 148);
}

.subscription-section .subscription-part .box-desc span {
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 1.7rem;
    color: rgba(0, 0, 0, 0.8);
}

.subscription-section .subscription-bg-icon {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 100%;
    bottom: 0;
    background-image: url(../assets/background-img/subs-bg-icon.png);
    background-repeat: no-repeat;
    background-position: bottom;
}

.subscription-section .subscription-bg-icon2 {
    content: "";
    position: absolute;
    min-height: 100px;
    min-width: 100%;
    top: 0;
    background-image: url(../assets/background-img/subscriptio2.png);
    background-repeat: no-repeat;
    background-position: right;
}



/* ///////////////////////////////
  //// Benefits Section */

.benefits-section {}

@font-face {
    font-family: Inter;
    src: url(text_font/Inter-Bold.otf);
}

.benefits-section .lms-benefits-title label {
    background: #000000;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-size: 1.3rem;
    text-align: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    color: #FFFFFF;
}

.accordion-head i {
    font-size: 2em;
    float: right;
}

.accordion-head>.collapsed>i:before {
    content: "\F4FE";
}

.benefits-section .card {
    margin: 1rem 0;
    border: 0;
}

.benefits-section .card-header {
    z-index: 2;
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.benefits-section .card-header a {
    text-decoration: none;
    color: #000;
    justify-items: center;
}

.benefits-section .card-head-1 {
    background-color: #FFD2D2;
}

.benefits-section .card-head-2 {
    background-color: #FFE9C9;
}

.benefits-section .card-head-3 {
    background-color: #EAFFC8;
}

.benefits-section .card .card-block {
    z-index: 1;
    margin: 0.3rem 0;
    background: #FFFFFF;
    box-shadow: 0px 2.5px 10px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}


/* ///////////////////////////////
  //// registration section */

.registration-section {}

.registration-section .registrtion-head {
    background: #FFEFEF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media only screen and (max-width:480px) {
    .btn-group-horizantal button {
        display: block !important;
        width: 100%;
        margin-top: 4px;
    }
}

.registration-section .registrtion-block .input-part input {
    background: #D9D9D9;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    /* width: 100%; */
    padding: 0.3rem 1.5rem;
    font-size: 1.2rem;
    color: #000;
    border: 0;
    margin: 0.6rem 0;
    font-family: sans-serif;
}

.registration-section .registrtion-block .input-part input:active,
input:focus {
    border: 0;
    outline: 0;
}

.registration-section .registrtion-block .register-btn-div {
    display: flex;
    justify-content: center;
}

.registration-section .registrtion-block .register-btn {
    width: fit-content;
    margin: 1rem 0 0 0;
}

.registration-section .registrtion-block button {
    color: #fff;
    transform: skewX(10deg);
    -webkit-transform: skewX(10deg);
    -moz-transform: skewX(10deg);
}

.registration-section .registrtion-block button:active,
button:focus {
    border: 0;
    outline: 0;
    box-shadow: none !important;
}



/* ///////////////////////////////
  //// Footer */

.footer {
    padding: 3rem 0 1rem 0;
    background-color: #000;
}

.footer h3 {
    font-size: 25px;
    margin-bottom: 30px;
    color: #fff;
    /* text-decoration: underline; */
}


.footer .solution-title {
    color: #ffffff;
}

.footer .solution-desc {
    color: #9c9a9a;
}

.footer .about-desc {
    color: #9c9a9a;
}

.footer .quick-links ul li {
    margin-bottom: 20px;
}

.footer a {
    color: rgb(208, 208, 208);
}


.footer form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
}

.footer form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 100px);
}

.footer form input[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 14px;
    padding: 0 12px;
    margin: 0px;
    background: #FFCA00;
    color: #000;
    transition: 0.3s;
    border-radius: 50px;
}

.footer form input[type=submit]:hover {
    background: #468db3;
}

.social a {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    position: relative;
    text-align: center;
    transition: 0.3s background ease;
    color: #0d1e2d;
    line-height: 0;
    margin: 0 1px;
}

.social a span {
    display: inline-block;
    font-size: 1rem;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.social a:hover {
    color: #fff;
    background: #2d71a1;
}

.social a i {
    line-height: 0;
}

.footer .copyright {
    margin-bottom: 0px;
}

.footer .copyright,
.footer .credits {
    font-size: 14px;
}

.footer .copyright a {
    color: #9c9a9a;
}





/*
////////////////////////////////////////////
/////////////  About Page Style
////////////////////////////////////////////
*/




/* ///////////////////////////////
  //// Hero Section */

#hero {
    width: 100%;
    height: 300px;
    background: radial-gradient(78.98% 123.02% at 12.25% 21.02%, rgb(8, 38, 164) 0%, rgb(4, 24, 112) 100%);
    background-size: cover;
    position: relative;
    margin-top: 87px;
    padding: 0;
}

#hero:before {
    content: "";
    position: absolute;
    background: url({{url('assets/images/viizard-top-bg-image.png') }}) center center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    z-index: 2;
}

/* ///////////////////////////////
  //// about-t0p Section */

.about {
    /* background: url("../assets/images/about-us.png") center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important; */
}

.about h1 {
    margin: 0 0 10px 0;
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.about p {
    margin-bottom: 30px;
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 1.5rem;
    color: #FFFFFF;
}

.about .btn-get-started {
    font-family: inherit;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 2px;
    display: inline-block;
    padding: 8px 13px;
    border-radius: 47px;
    transition: ease-in-out 0.3s;
    color: #fff;
    background: #EEC733;
    /* float: right; */
    text-align: center;
    text-decoration: none;
}

.about .btn-get-started:hover {
    background: #4ea5e0;
}

@media (max-width: 992px) {
    .about {
        height: calc(100vh - 70px);
    }
}

@media (max-width: 768px) {
    .about {
        height: 60vh;
    }

    .about h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .about p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .about {
        height: 60vh;
    }

    .about h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .about p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    /* padding: 10px 0; */
    /* min-height: 40px; */
    /* margin-top: 8px; */
    text-align: center;

}

@media (max-width: 992px) {
    .breadcrumbs {
        /* margin-top: 30px; */
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 1.5rem;
    text-align: center;
    justify-content: center;
}

.breadcrumbs ol li+li {
    color: #FFB800;
}

.breadcrumbs ol li a,
.breadcrumbs ol li i {
    padding-right: 10px;
    color: #fff;
}

/* ///////////////////////////////
  //// About Us Model */

.modal .modal-header .modal-title {
    font-size: 1.7rem;
    font-weight: 700;
    font-family: inherit;
}

.modal .modal-header .modal-body h5 {
    font-weight: 700;
    font-family: inherit;
}

/* ///////////////////////////////
  //// About Us Main Section */


.about-section-main {
    background-color: #fff;
}

.about-section-main .vision-mission {
    position: relative;
    background: rgba(255, 231, 231, 0.2);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.about-section-main .we-are {
    position: relative;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.about-section-main .vision-mission .about-subject-title,
.we-are .about-subject-title {
    font-family: inherit;
    font-style: normal;
    font-weight: 600;
    text-decoration-line: underline;
    /* text-align: center; */
    color: rgba(0, 0, 0, 0.7);
}

.about-section-main .vision-mission p,
.we-are p {
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 1.5rem;
    color: #000000;
}


.about-section-main .about-section-bg-icon1 {
    content: "";
    position: absolute;
    min-height: 100px;
    min-width: 80%;
    top: -60;
    left: -10;
    background-image: url(../assets/background-img/Ellipse\ 32.png);
    background-repeat: no-repeat;
    background-position: center;
}

.about-section-main .about-section-bg-icon2 {
    content: "";
    position: absolute;
    min-height: 100px;
    min-width: 100%;
    top: -60;
    right: 0;
    background-image: url(../assets/background-img/Ellipse\ 31.png);
    background-repeat: no-repeat;
    background-position: right;
}

.about-section-main .about-section-bg-icon3 {
    content: "";
    position: absolute;
    min-height: 150%;
    min-width: 80%;
    bottom: -30;
    left: 0;
    background-image: url(../assets/background-img/Ellipse\ 30.png);
    background-repeat: no-repeat;
    background-position: left;
}


.about-section-main .about-section-bg-icon4 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    bottom: 0;
    background-image: url(../assets/background-img/Vector\ 17.png);
    background-repeat: no-repeat;
    background-position: bottom;
}


.about-section-main .we-are .about-section-bg-icon4 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    bottom: -20;
    right: 30;
    background-image: url(../assets/background-img/Vector\ 17.png);
    background-repeat: no-repeat;
    background-position: right;
}

@media (max-width: 768px) {

    .about-section-main .vision-mission p,
    .we-are p {
        font-weight: 400;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {

    .about-section-main .vision-mission p,
    .we-are p {
        font-weight: 400;
        font-size: 1.1rem;
    }

    .about-section-main .about-illustratin-img {
        width: 15rem;
    }

    /* .about-section-main .about-section-bg-icon3 {
        display: none;
    } */
}


/*
////////////////////////////////////////////
/////////////  Solution Page Style
////////////////////////////////////////////
*/



/* ///////////////////////////////
  //// solution-top Section */
.solution {
    /* background: url("../assets/images/viizard-top-bg-image.png") center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important; */
}

.solution h1 {
    margin: 0 0 10px 0;
    font-size: 40px;
    font-weight: 600;
    font-family: inherit;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    text-transform: uppercase;
}

.solution p {
    margin-bottom: 30px;
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
}

.solution .btn-read-more {
    font-family: inherit;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 2px;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 47px;
    transition: ease-in-out 0.3s;
    color: #fff;
    background: transparent;
    border: 2px solid #FFFFFF;
    border-radius: 37px;
    text-decoration: none;
}

.solution .btn-read-more:hover {
    background: #4ea5e0;
}

@media (max-width: 992px) {
    .solution {
        height: calc(100vh - 70px);
    }

    .solution h1 {
        font-size: 30px;
        line-height: 36px;
    }

}

@media (max-width: 768px) {
    .solution {
        height: 60vh;
    }

    .solution h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .solution p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .solution {
        height: 40vh;
    }

    .solution h1 {
        font-size: 20px;
        line-height: 36px;
    }

    .solution p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}


/* ///////////////////////////////
  //// Learning Managment Section */

/*------ style for old Solution page ---- */

/* .learning-section {}

.learning-section .learning-managment-sys {}

.learning-section .learning-managment-sys .title-box {
    display: flex;
    justify-content: center;
}

.learning-section .learning-managment-sys .box {
    background: #F2F2F2;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.25);
    border-radius: 9px;
    padding: 3rem 3rem;
    text-align: center;
    width: fit-content;
}

.learning-section .learning-managment-sys .box h1 {
    font-family: inherit;
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    color: #066CBF;
}

.learning-section .learning-managment-sys .box span {
    font-weight: 700;
    font-size: 30px;
    color: #EEC733;
}

.learning-section .row-style {
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25);
    position: relative;
}

.learning-section .organisation-row {
    background: #FFE9C9;
}

.learning-section .organisation-row h3,
.educational-row h3,
.professional-row h3 {
    margin: 0 20rem;
}

@media only screen and (max-width:768px) {
    .learning-section .learning-managment-sys .box {
        padding: 1rem 1rem;
    }

    .learning-section .learning-managment-sys .box h1,
    .box span {
        font-weight: 600;
        font-size: 25px;
    }

    .learning-section .organisation-row h3,
    .educational-row h3,
    .professional-row h3 {
        margin: 0 0rem;
    }
}


.learning-section label {
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
    background: #000000;
    border-radius: 0px 0px 10px 0px;
    color: #EEC733;
    margin-left: -15;
}



.learning-section .solution-section-bg-icon1 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 100%;
    bottom: -60;
    right: 40;
    background-image: url(../assets/background-img/solution-bg-icon1.png);
    background-repeat: no-repeat;
    background-position: right;
}

.learning-section .solution-section-bg-icon2 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    bottom: -60;
    left: 40;
    background-image: url(../assets/background-img/solution-bg-icon1.png);
    background-repeat: no-repeat;
    background-position: left;
}

.learning-section .solution-section-bg-icon3 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    top: 0;
    right: 40;
    background-image: url(../assets/background-img/solution-bg-icon1.png);
    background-repeat: no-repeat;
    background-position: right;
}

.learning-section .educational-row {
    background: #FFFFFF;
}

.learning-section .professional-row {
    background: #FFD2D2;
} */



/* ======\\\\ style for new Solution page ////===== */

.learning-section {
    position: relative;
}

.learning-section .solution-learning-title h2 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2E3C54;

}

.learning-section .learning-managment-sys {
    position: relative;
}

.learning-section .learning-managment-sys .title-box {
    display: flex;
    justify-content: center;
    position: relative;
}

.learning-section .section-title {
    position: relative;
}

.learning-section .learning-managment-sys .box h1 {
    font-family: inherit;
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    color: #066CBF;
}

.learning-section .learning-managment-sys .box span {
    font-weight: 700;
    font-size: 30px;
    color: #EEC733;
}

.learning-section .card {
    background: rgba(217, 217, 217, 0.3);
}

.learning-section .card-1 {
    border-top: 3px solid #FFA7A7;
}

.learning-section .card-2 {
    border-top: 3px solid #FFECA7;
}

.learning-section .card-3 {
    border-top: 3px solid #E8A7FF;
}

.learning-section .card-rows {
    position: relative;
}

.learning-section .card-rows a {
    text-decoration: none;
}

.learning-section .card-image .card-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FFEFEF;
    position: relative;
    text-align: center;
    transition: 0.3s background ease;
    color: #0d1e2d;
    line-height: 0;
    margin: 0 1px;
}

.learning-section .card-image .card-icon svg,
.learning-section .card-image .card-icon img {
    display: inline-block;
    font-size: 1rem;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.learning-section .card .card-title {
    font-weight: 700;
}

.learning-section .card .card-text {
    font-size: 1.2rem;
}

.learning-section .solution-section-bg-icon-dot {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 100%;
    top: 0;
    background-image: url(../assets/background-img/subpage_bg_dots.png);
    background-repeat: no-repeat;
    background-position: right;
}

.learning-section .solution-section-bg-icon1 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 100%;
    top: -50;
    background-image: url(../assets/background-img/Ellipse\ 32.png);
    background-repeat: no-repeat;
    background-position: right;
}

.learning-section .solution-section-bg-icon2 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    top: -80;
    left: -60;
    background-image: url(../assets/background-img/Ellipse\ 32.png);
    background-repeat: no-repeat;
    background-position: center;
}

.learning-section .solution-section-bg-icon3 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    bottom: 0;
    right: 0;
    background-image: url(../assets/background-img/Ellipse\ 32.png);
    background-repeat: no-repeat;
    background-position: right;
}


/*
////////////////////////////////////////////
/////////////  Features Page Style
////////////////////////////////////////////
*/

.feature {
    /* background: url("../assets/images/pricing.png") center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important; */
}

.feature h1 {
    margin: 0 0 10px 0;
    font-size: 50px;
    font-weight: 700;
    font-family: inherit;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

.feature p {
    margin-bottom: 30px;
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
}



@media (max-width: 992px) {
    .feature {
        height: calc(100vh - 70px);
    }
}

@media (max-width: 768px) {
    .feature {
        height: 60vh;
    }

    .feature h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .feature p {
        font-size: 1.5rem;
        line-height: 36px;
    }

}

@media (max-width: 480px) {
    .feature {
        height: 60vh;
    }

    .feature h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .feature p {
        font-size: 1.3rem;
        line-height: 36px;
    }

}


.feature-main-section {
    position: relative;
}

.feature-main-section .small-line::after {
    content: "";
    width: 80%;
    height: 3px;
    display: inline-block;
    background: rgb(0, 0, 0, 0.5);
    margin: 4px 10px;
}

.feature-main-section .container {
    position: relative;
}

.feature-main-section .card {
    background: #FFFFFF;
    box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.25);
    border-radius: 13px;
}

.feature-main-section .card .card-head {
    padding: 1rem 1rem;
    overflow: hidden;
}

.feature-main-section .card .card-body {
    overflow: hidden;
}

.feature-main-section .card .card-body ul {
    padding-left: 2.5rem;
}

.feature-main-section .card .card-body ul li {
    padding: 0.3rem 0rem;
}


.feature-main-section .feature-section-bg-icon1 {
    content: "";
    position: absolute;
    min-height: 100%;
    min-width: 80%;
    top: 0;
    background-image: url(../assets/background-img/feature-bg-icon.png);
    background-repeat: no-repeat;
    background-position: center;
}


/*
////////////////////////////////////////////
/////////////  Pricing Page Style
////////////////////////////////////////////
*/

/* ///////////////////////////////
  //// Pricing-top Section */

.pricing {
    /* background: url("../assets/images/pricing.png") center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important; */
}

/* .pricing h1,
.pricing p,
.pricing p span {
    margin: 0 0 10px 0;
    font-size: 50px;
    font-weight: 700;
    font-family: inherit;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

.pricing p {
    color: #066CBF;
}

.pricing p span {
    color: #fff;
}


@media (max-width: 992px) {
    .pricing {
        height: calc(100vh - 70px);
    }
}

@media (max-width: 768px) {
    .pricing {
        height: 60vh;
    }

    .pricing h1,
    .pricing p,
    .pricing p span {
        font-size: 30px;
        line-height: 36px;
    }

}

@media (max-width: 480px) {
    .pricing {
        height: 60vh;
    }

    .pricing h1,
    .pricing p,
    .pricing span {
        font-size: 30px;
        line-height: 36px;
    }

} */


.pricing h1 {
    margin: 0 0 10px 0;
    font-size: 40px;
    font-weight: 600;
    font-family: inherit;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    text-transform: uppercase;
}

.pricing p {
    margin-bottom: 30px;
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
}


@media (max-width: 992px) {
    .pricing {
        height: calc(100vh - 70px);
    }

    .pricing h1 {
        font-size: 30px;
        line-height: 36px;
    }

}

@media (max-width: 768px) {
    .pricing {
        height: 60vh;
    }

    .pricing h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .pricing p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .pricing {
        height: 40vh;
    }

    .pricing h1 {
        font-size: 20px;
        line-height: 36px;
    }

    .pricing p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

/* ///////////////////////////////
  //// Pricing-box Section style*/

.pricing-packages {
    position: relative;
}

.pricing-packages .container {
    position: relative;
}

.pricing-packages .price-section-title h2 {
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    text-decoration-line: underline;
    color: #243451;
}

.pricing-packages .price-box .card {
    background: #FFFFFF;
    box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    padding: 1rem 0 0.5rem 0;
}

.pricing-packages .price-box .card .card-body .card-title {
    font-weight: 700;
}

.pricing-packages .price-box .card .card-body .card-subtitle {
    font-weight: 700;
    margin: 2rem 0;
}

.pricing-packages .price-box .card .card-body .card-text {
    font-weight: 600;
    color: #4283FF;
}

.pricing-packages .price-box .card .card-body .card-link {
    background: #4283FF;
    border-radius: 68px;
    color: #fff;
    padding: 0.5rem 3rem;
}

.pricing-packages .pricing-section-bg-icon1 {
    content: "";
    position: absolute;
    min-height: 50%;
    min-width: 80%;
    top: 0;
    left: 0;
    background-image: url(../assets/background-img/pricing-background-icon1.png);
    background-repeat: no-repeat;
    background-position: left;
}

.pricing-packages .pricing-section-bg-icon2 {
    content: "";
    position: absolute;
    min-height: 50%;
    min-width: 80%;
    bottom: 0;
    right: 0;
    background-image: url(../assets/background-img/pricing-background-icon2.png);
    background-repeat: no-repeat;
    background-position: right;
}




/* ///////////////////////////////
  //// Pricing-top Section */

/* .pricing-packages {}

.pricing-packages .container {
    position: relative;
}

.pricing-packages .card {
    background: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 7px;
}

.pricing-packages .card .card-head {
    padding: 1rem 1rem;
    overflow: hidden;
}

.pricing-packages .card .card-body {
    overflow: hidden;
    z-index: 30;
}

.pricing-packages .card .card-head h2 {
    color: #fff;
    padding: 1rem 2rem;
    z-index: 20;
    position: relative;
}

.pricing-packages .card .card-head .svg-img {
    display: inline-block;
    position: absolute;
    width: 100%;
    padding-bottom: 100%;
    vertical-align: middle;
    overflow: hidden;
    top: 0;
    left: 0;
}

.pricing-packages .card .card-head .svg-img svg {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    fill: radial-gradient(50% 95.69% at 79.04% 50%, #2B2F35 0%, #2B2F35 100%);
}


.pricing-packages .card .card-body .btn-select-plan {
    background: radial-gradient(47.46% 571.63% at 97.46% 83.82%, #516BEF 0%, #279CFB 100%);
    border-radius: 5px;
    font-size: 1.5rem;
    padding: 0.5rem 2rem;
    letter-spacing: 2px;
    color: #FFFFFF;
    text-decoration: none;
}
 */

/* background Icon  */

/* .pricing-packages .pricing-section-bg-icon1 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    top: 0;
    right: -10;
    background-image: url(../assets/background-img/Vector\ 26.png);
    background-repeat: no-repeat;
    background-position: right;
}

.pricing-packages .pricing-section-bg-icon2 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 50%;
    top: 130;
    left: -20;
    background-image: url(../assets/background-img/Vector\ 27.png);
    background-repeat: no-repeat;
    background-position: left;
}

.pricing-packages .pricing-section-bg-icon3 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    top: 180;
    right: -60;
    background-image: url(../assets/background-img/Vector\ 27.png);
    background-repeat: no-repeat;
    background-position: center;
}

.pricing-packages .pricing-section-bg-icon4 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    bottom: 15;
    left: -20;
    background-image: url(../assets/background-img/Vector\ 26.png);
    background-repeat: no-repeat;
    background-position: left;
}

.pricing-packages .pricing-section-bg-icon5 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    bottom: 15;
    right: -20;
    background-image: url(../assets/background-img/Vector\ 33.png);
    background-repeat: no-repeat;
    background-position: right;
}

*/
/*
////////////////////////////////////////////
/////////////  talk to Expert Button
////////////////////////////////////////////
*/

.expert-section .expert-btn {

    position: relative;
}

.expert-section .expert-btn a {
    background: #FFCA00;
    color: #000;
    padding: 0.8rem 1rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    border-radius: 10px 10px 0px 0px;
    float: right;
    right: -15;
    text-decoration: none;
}

/*
////////////////////////////////////////////
/////////////  Contact Page Style
////////////////////////////////////////////
*/

/* ///////////////////////////////
  //// Contact-top Section */

.contact {}


.contact {
    /* background: url("../assets/images/contact.png") center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important; */
}

.contact h1 {
    margin: 0 0 10px 0;
    font-size: 60px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.contact .p {
    margin-bottom: 30px;
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 1.5rem;
    color: #FFFFFF;
}

.contact .btn-get-started {
    font-family: inherit;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 2px;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 47px;
    transition: ease-in-out 0.3s;
    color: #fff;
    background: #EEC733;
    float: right;
    text-decoration: none;
}

.contact .btn-get-started:hover {
    background: #4ea5e0;
}

.contact .email-id {
    font-size: 1.3rem;
}

.contact .email-id a {
    text-decoration-line: underline;
    color: #FFB800;
}

@media (max-width: 992px) {
    .contact {
        height: calc(100vh - 70px);
    }
}

@media (max-width: 768px) {
    .contact {
        height: 60vh;
    }

    .contact h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .contact .p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .contact {
        height: 60vh;
    }

    .contact h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .contact .p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

/* ///////////////////////////////
  //// Contact us Section */

.Contact-section-main .contact-title h1 {
    font-weight: 700;
    font-size: 3rem;
    text-decoration-line: underline;
    color: #A8A8A8;
}

.Contact-section-main .contact-desc {
    font-size: 1.2rem;
}

.Contact-section-main .form-box label,
.Contact-section-main .form-box input,
.Contact-section-main .form-box textarea {
    display: block;
    width: 100%;
}

.Contact-section-main .form-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.Contact-section-main .form-box ul li {
    padding: 0 0.3em;
}

.Contact-section-main .form-box span {
    font-weight: 700;
    color: #102a43;
    line-height: 35px;
    line-height: 2.5rem;
    font-size: 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.Contact-section-main .form-box input[type="submit"] {
    background: #666ce5;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 5px;
    margin-top: 1em;
}

.form-box .container {
    width: 500px;
    margin: 2em auto;
    position: relative;
}

.Contact-section-main .form-box form {
    /* background-color: ; */
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.Contact-section-main .form-box .required-star {
    color: #fc4366;
}

.Contact-section-main .form-box input,
.Contact-section-main .form-box textarea {
    width: 100%;
    padding: 9px 20px;
    border: 1px solid #e1e2eb;
    background-color: #fff;
    color: #102a43;
    caret-color: #829ab1;
    box-sizing: border-box;
    font-size: 14px;
    font-size: 1rem;
    line-height: 29px;
    line-height: 2rem;
    box-shadow: inset 0 2px 4px 0 rgba(206, 209, 224, 0.2);
    border-radius: 3px;
}


.Contact-section-main .contact-section-bg-icon1 {
    content: "";
    position: absolute;
    min-height: 110px;
    min-width: 80%;
    top: 0;
    background-image: url(../assets/background-img/contact-bg-icon.png);
    background-repeat: no-repeat;
    background-position: left;
}

.Contact-section-main .contact-section-bg-icon2 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 93%;
    top: 0;
    background-image: url(../assets/background-img/contact-bg-icon.png);
    background-repeat: no-repeat;
    background-position: right;
}

.Contact-section-main .contact-section-bg-icon3 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 20%;
    bottom: 0;
    background-image: url(../assets/background-img/contact-bg-icon.png);
    background-repeat: no-repeat;
    background-position: bottom;
}


.live-chat-section .chat-btn {
    position: relative;
}

.live-chat-section .chat-btn a {
    color: #fff;
    padding: 0.5rem 2rem;
    font-weight: 500;
    position: relative;
    background: #FF922D;
    border-radius: 10px 10px 0px 0px;
    float: right;
    text-decoration: none;
}

.live-chat-section .chat-btn a .btn-txt {
    font-size: 1.1rem;
    color: white;
}

.live-chat-section .chat-btn a .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 5px 10px;
    border-radius: 50%;
    background: red;
    color: white;
}


/*
////////////////////////////////////////////
/////////////  Registration Page Style
////////////////////////////////////////////
*/



/* ///////////////////////////////
  //// Registration Form Section */

.registration-head {}

.registration-head {
    /* background: url("../assets/images/registration-image.png") center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important; */
    /* margin-top: 66px !important;  */
}

.registration-head h1,
.registration-head h1 span {
    margin: 0 0 10px 0;
    font-size: 35px;
    font-weight: 700;
    font-family: inherit;
    font-style: normal;
    text-transform: uppercase;
    color: #fff;
}


.registration-head ul li,
.registration-head ul li span {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
    font-family: inherit;
    font-style: normal;
    text-transform: uppercase;
    color: #fff;
}

.registration-head ul li span,
.registration-head h1 span {
    color: #EEC733;
}

.registration-head p span {
    color: #fff;
}


@media (max-width: 992px) {
    .registration-head {
        height: calc(100vh - 70px);
    }
}

@media (max-width: 768px) {
    .registration-head {
        height: 60vh;
    }

    .registration-head h1,
    .registration-head h1 span{
        font-size: 28px;
        line-height: 28px;
    }


    .registration-head ul li,
    .registration-head ul li span {
        font-size: 18px;
        line-height: 28px;
    }

}

@media (max-width: 480px) {
    .registration-head {
        height: 60vh;
    }

    .registration-head h1,
    .registration-head h1 span {
        font-size: 25px;
        line-height: 25px;
    }

    .registration-head ul li,
    .registration-head ul li span {
        font-size: 16px;
        line-height: 25px;
        font-weight: 500;
    }

    .registration-head ul {
        margin-left: 15px;
    }

}


/* ///////////////////////////////
  //// Registration Form Section */

.registration-form-section {}

.registration-form-section .registration-form-container {
    background: #FFFFFF;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.25);
    border-radius: 2px;
    position: relative;
}

.registration-form-section .registration-form-title h1,
.registration-form-section .registration-form-title h1 span {
    font-size: 30px;
    font-weight: 700;
    font-family: inherit;
    font-style: normal;
    text-transform: uppercase;
    color: #000;
}

.registration-form-section .registration-form-title h1 span {
    color: #EEC733;
}

/* form design  */
#success_message {
    display: none;
}

.registration-form-section form label {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: #000000;
}

.registration-form-section form .first-name span {
    background: #FF9191;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.35);

}

.registration-form-section form .email span {
    background: #8CCFFF;
    border-radius: 3px 0px 0px 3px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.35);

}

.registration-form-section form .user-name span {
    background: #F691FF;
    border-radius: 3px 0px 0px 3px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.35);

}

.registration-form-section form .user-password span {
    background: #8CCFFF;
    border-radius: 3px 0px 0px 3px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.35);

}

.registration-form-section form .domain-name span {
    background: #FFE455;
    border-radius: 3px 0px 0px 3px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.35);

}

.registration-form-section form .sbm-btn button {
    background: radial-gradient(47.46% 571.63% at 97.46% 83.82%, #516BEF 0%, #279CFB 100%);
    border-radius: 5px;
    border: 0;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 0.5rem 2rem;
    color: #FFFFFF;
}

.registration-form-section form .already-account div {
    font-size: 0.82rem;
}

.registration-form-section form input {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: #000000;
    background: #FFFFFF;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    border: 0;
    padding: 1rem 1rem;
}

.registration-form-section form input:focus {
    border: 0;
    outline: none;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
}

.registration-form-section .checkbox-txt {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #000000;
    background: #FFFFFF;
}

.registration-form-section form small {
    font-size: 0.7rem;
    color: rgb(0, 0, 0, .65);
}

.registration-form-section .registration-section-bg-icon1 {
    content: "";
    position: absolute;
    min-height: 90px;
    min-width: 73%;
    background-image: url(../assets/background-img/reg-circle-lg.png);
    background-repeat: no-repeat;
    background-position: center;
}

.registration-form-section .registration-section-title-line {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 90%;
    background-image: url(../assets/background-img/reg-title-line.png);
    background-repeat: no-repeat;
    background-position: center;
}

.registration-form-section .registration-section-bg-icon2 {
    content: "";
    position: absolute;
    min-height: 500px;
    min-width: 80%;
    top: 150;
    right: 0;
    background-image: url({{url('assets/background-img/reg-circle-lg.png')}});
    background-repeat: no-repeat;
    background-position: right;
}

.registration-form-section .registration-section-bg-icon3 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 220px;
    bottom: 0;
    left: 0;
    background-image: url({{url('assets/background-img/reg-tringle.png')}});
    background-repeat: no-repeat;
    background-position: bottom;
}

/* ///////////////////////////////
  //// Offer title Section */

.offer-title-section label {
    margin-right: -15;
    padding: 1rem 1rem;
    font-size: 1.2rem;
    color: #fff;
    background: #FF6900;
    border-radius: 5px 0px 0px 5px;
}

/* ///////////////////////////////
  //// Offer box Form Section */


.offer-box-section {
    background-color: #FFF7F7;
}

.offer-box-section .card {
    background: #FFFFFF;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    position: relative;
}

.offer-box-section .card-header {
    background: #279CFB;
    color: #279CFB;
    height: 40px;
    border-radius: 8px 8px 0px 0px;
}

.offer-box-section .card-body {
    position: relative;

}

.offer-box-section .card-body ul {
    padding-left: 2rem;

}

.offer-box-section .card-body ul,
p {
    margin: 1rem 0;

}

.offer-box-section .offer-section-bg-icon1 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    top: 0;
    background-image: url(../assets/background-img/reg-circle-sm.png);
    background-repeat: no-repeat;
    background-position: center;
}

.offer-box-section .offer-section-bg-icon2 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    background-image: url(../assets/background-img/reg-circle-sm.png);
    background-repeat: no-repeat;
    background-position: right;
}

.offer-box-section .offer-section-bg-icon3 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    background-image: url(../assets/background-img/reg-circle-sm.png);
    background-repeat: no-repeat;
    background-position: left;
}

.offer-box-section .offer-section-bg-icon4 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    background-image: url(../assets/background-img/reg-circle-sm.png);
    background-repeat: no-repeat;
    background-position: center;
}

.offer-box-section .offer-section-bg-icon5 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    background-image: url(../assets/background-img/reg-circle-sm.png);
    background-repeat: no-repeat;
    background-position: center;
}

.offer-box-section .offer-section-bg-icon6 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    background-image: url(../assets/background-img/reg-circle-sm.png);
    background-repeat: no-repeat;
    background-position: left;
}



/*
////////////////////////////////////////////
/////////////  Demo Page Style
////////////////////////////////////////////
*/
.demo {
    /* background: url("../assets/images/pricing.png") center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important; */
}

.demo h1 {
    margin: 0 0 10px 0;
    font-size: 50px;
    font-weight: 700;
    font-family: inherit;
    font-style: normal;
    text-align: center;
    color: #fff;
}

.demo p {
    margin-bottom: 30px;
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 1.5rem;
    color: #FFFFFF;
}



@media (max-width: 992px) {
    .demo {
        height: calc(100vh - 70px);
    }
}

@media (max-width: 768px) {
    .demo {
        height: 60vh;
    }

    .demo h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .demo p {
        font-size: 1.3rem;
    }

}

@media (max-width: 480px) {
    .demo {
        height: 60vh;
    }

    .demo h1 {
        font-size: 30px;
    }

    .demo p {
        font-size: 1.1rem;
    }

}

/* ///////////////////////////////
  //// demo Form Section */

.demo-form-section {
    position: relative;
}


.demo-form-section .form-box label,
.demo-form-section .form-box input {
    display: block;
    width: 100%;
}

.demo-form-section .form-box label {
    font-family: Arial, Helvetica, sans-serif;
}

.demo-form-section .form-box ul {
    list-style: none;
    margin: 0;
    padding: 0;

}

.demo-form-section .form-box ul li {
    padding: 0 0.3em;
}

.demo-form-section .form-box span {
    font-weight: 700;
    color: #102a43;
    line-height: 35px;
    line-height: 2.5rem;
    font-size: 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.demo-form-section .form-box input[type="submit"] {
    background: radial-gradient(47.46% 571.63% at 97.46% 83.82%, #516BEF 0%, #279CFB 100%);
    border-radius: 5px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 5px;
    margin-top: 1em;
}

.demo-form-section .form-box {
    margin-top: -70px;
}

.demo-form-section .form-box .container {
    width: 500px;
    margin: 2em auto;
    position: relative;


}

.demo-form-section .form-box form {
    /* background-color: ; */
    padding: 20px 40px 40px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;

}

.demo-form-section .form-box .required-star {
    color: #fc4366;
}

.demo-form-section .form-box input {
    width: 100%;
    padding: 9px 20px;
    border: 1px solid #e1e2eb;
    background-color: #fff;
    color: #102a43;
    caret-color: #829ab1;
    box-sizing: border-box;
    font-size: 14px;
    font-size: 1rem;
    line-height: 29px;
    line-height: 2rem;
    box-shadow: inset 0 2px 4px 0 rgba(206, 209, 224, 0.2);
    border-radius: 3px;
}

.demo-form-section .demo-form-title {
    position: relative;
}

.demo-form-section .demo-form-section-bg-icon1222 {
    content: "";
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    top: 200;
    transform: rotate();
    background-image: url(../assets/background-img/bg_bluelayer3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* ////////////////////////// */
.demo-form-section .demo-form-title-bg-icon1 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    top: -75;
    left: 0;
    background-image: url(../assets/background-img/demo-form-title-bg-icon.png);
    background-repeat: no-repeat;
    background-position: left;

}

.demo-form-section .demo-form-title-bg-icon2 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    top: -60;
    right: 0;
    background-image: url(../assets/background-img/demo-form-title-bg-icon.png);
    background-repeat: no-repeat;
    background-position: right;
}



.demo-form-section .demo-form-body-bg-icon1 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    top: 15;
    left: 20;
    background-image: url(../assets/background-img/demo-form-body-bg-icon.png);
    background-repeat: no-repeat;
    background-position: left;

}

.demo-form-section .demo-form-body-bg-icon2 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    bottom: 0;
    right: 20;
    background-image: url(../assets/background-img/demo-form-body-bg-icon.png);
    background-repeat: no-repeat;
    background-position: right;
}

.demo-form-section .contact-section-bg-icon3 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 80%;
    bottom: -40;
    left: 20;
    background-image: url(../assets/background-img/contact-bg-icon.png);
    background-repeat: no-repeat;
    background-position: left;

}




/* ///////////////////////////////
  //// Pay Method Section */

.payment-section {
    background-color: #041974;
}

.payment-section .pay-method {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 800;
    text-transform: capitalize;
    color: #FFFFFF;

}


/*
////////////////////////////////////////////
/////////////  Error Page Style
////////////////////////////////////////////
*/



/* ///////////////////////////////
  //// Error Top Section */



.error {}

.error h1 {
    margin: 0 0 10px 0;
    font-size: 50px;
    font-weight: 700;
    font-family: inherit;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}



@media (max-width: 992px) {
    .error {
        height: calc(100vh - 70px);
    }
}

@media (max-width: 768px) {

    .error h1 {
        font-size: 30px;
        line-height: 36px;
    }


}

@media (max-width: 480px) {

    .error h1 {
        font-size: 30px;
        line-height: 36px;
    }

}

/* ///////////////////////////////
  //// Error Main Section */

.error-main-section p {
    font-weight: 700;
    color: rgb(0, 0, 0, 0.5);
}

.error-main-section a {
    background: #0C238A !important;
    border-radius: 9px;
    color: #fff;
    text-decoration: none;
}


/*
////////////////////////////////////////////
/////////////  Comming Soon Page Style
////////////////////////////////////////////
*/



/* ///////////////////////////////
  //// Comming Soon Top Section */

.comming-soon {}

.comming-soon h1 {
    margin: 0 0 10px 0;
    font-size: 50px;
    font-weight: 700;
    font-family: inherit;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 992px) {
    .comming-soon {
        height: calc(100vh - 70px);
    }
}

@media (max-width: 768px) {

    .comming-soon h1 {
        font-size: 30px;
        line-height: 36px;
    }

}

@media (max-width: 480px) {

    .comming-soon h1 {
        font-size: 30px;
        line-height: 36px;
    }

}


/* ///////////////////////////////
  //// Comming Soon Main Section */


.comming-soon-main-section {
    position: relative;
}

.comming-soon-main-section h2 {
    text-align: center;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: #534AFF;
}

@media only screen and (max-width: 840px) {
    .comming-soon-main-section h2 {
        text-align: center;
        font-size: 25px;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: #534AFF;
    }
}

.comming-soon-main-section p {
    font-weight: 700;
    color: rgb(0, 0, 0, 0.5);
}

.comming-soon-main-section .email-notification .input-group {
    background: #FFFFFF;
    border: 1px solid #AFAFAF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

.comming-soon-main-section .email-notification .input-group {
    border: 0;
}

.comming-soon-main-section .email-notification input:focus,
.comming-soon-main-section .email-notification input:active {
    border: 0;
    outline: none;
    box-shadow: none;
}


.comming-soon-main-section .comming-soon-section-bg-icon1 {
    content: "";
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    bottom: -100;
    left: 0;
    background-image: url(../assets/background-img/comming-bg4x.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;

}



/*
////////////////////////////////////////////
/////////////  subpage Page Style
////////////////////////////////////////////
*/

/* ///////////////////////////////
  //// subpage Top Section */


.subpage {
    /* background: url("../assets/images/pricing.png") center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important; */
}

.subpage h1 {
    margin: 0 0 10px 0;
    font-size: 50px;
    font-weight: 700;
    font-family: inherit;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

.subpage p {
    margin-bottom: 30px;
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
}



@media (max-width: 992px) {
    .subpage {
        height: calc(100vh - 70px);
    }
}

@media (max-width: 768px) {
    .subpage {
        height: 60vh;
    }

    .subpage h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .subpage p {
        font-size: 1.5rem;
        line-height: 36px;
    }

}

@media (max-width: 480px) {
    .subpage {
        height: 60vh;
    }

    .subpage h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .subpage p {
        font-size: 1.3rem;
        line-height: 36px;
    }

}

/* ///////////////////////////////
  //// subpage Main Section */


.subpage-main-section {
    background-color: #FFF7FE;
    position: relative;
}

.subpage-main-section .subpage-desc-illustration {
    text-align: center;
    justify-content: center;
    justify-items: center;
}

@media only screen and (max-width: 992px) {

    .subpage-main-section .subpage-desc-illustration img {
        width: 17rem;
    }
}

@media only screen and (max-width: 480px) {

    .subpage-main-section .subpage-desc-illustration img {
        width: 15rem;
    }
}

.subpage-main-section .subpage-desc {
    background: #FFFEFE;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
    border-radius: 2px;
}

.subpage-main-section .subpage-desc ul {
    padding-left: 2.5rem;
}

.subpage-main-section .subpage-desc ul li {
    font-size: 15px;
    font-family: Arial;
    padding: 2px 0;
}

.subpage-main-section .small-line::after {
    content: "";
    width: 60%;
    height: 3px;
    display: inline-block;
    background: rgb(0, 0, 0, 0.5);
    margin: 4px 10px;
}

.subpage-main-section .input-box input:active,
.subpage-main-section .input-box input:focus {
    border: 1px solid #000;
    box-shadow: none;
}

.subpage-main-section .submit-btn button {
    background: radial-gradient(117.39% 683.55% at -42.19% 21.74%, rgba(0, 21, 211, 0) 0%, #0016DE 65.77%);
    border-radius: 4px;
    color: #FFF;
    font-weight: 500;
    letter-spacing: 2px;
}

.subpage-main-section .subpage-section-bg-icon1 {
    content: " ";
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    top: -220;
    right: 20;
    background-image: url(../assets/background-img/subpage_bg_dots.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: auto;

}

.subpage-main-section .subpage-section-bg-icon2 {
    content: " ";
    position: absolute;
    min-height: 70%;
    min-width: 100%;
    bottom: 50;
    background-image: url(../assets/background-img/subpage_Polygon.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: auto;
}

/*
////////////////////////////////////////////
/////////////  Payment Page Style
////////////////////////////////////////////
*/

/* ///////////////////////////////
  //// Payment Top Section */

.payment {}


.payment h1 {
    margin: 0 0 10px 0;
    font-size: 40px;
    font-weight: 600;
    font-family: inherit;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    text-transform: uppercase;
}

.payment p {
    margin-bottom: 30px;
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
}


@media (max-width: 992px) {
    .payment {
        height: calc(100vh - 70px);
    }

    .payment h1 {
        font-size: 30px;
        line-height: 36px;
    }

}

@media (max-width: 768px) {
    .payment {
        height: 60vh;
    }

    .payment h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .payment p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .payment {
        height: 40vh;
    }

    .payment h1 {
        font-size: 20px;
        line-height: 36px;
    }

    .payment p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

/* ///////////////////////////////
  //// Payment method Section */

.payment-method {
    background-color: #DFDFDF;
}

.payment-method .payment-section-title h2 {
    font-weight: 700;
    font-size: 2rem;
    color: #243451;
}

.payment-method .payment-detail {
    background: conic-gradient(from 270deg at 103.82% 100%, #07239B 0deg, rgba(80, 48, 200, 0) 360deg);
    border-radius: 7px;
    color: #fff;
}

.payment-method .payment-detail .pay-desc-title {}

.payment-method .payment-detail .total-payment span {
    font-weight: 600;
    font-size: 3.5rem;
    color: #FFB800;
}

.payment-method .payment-detail .Enjoy-msg {
    font-weight: 400;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
}

.payment-method .payment-detail .pay-feature {
    font-weight: 600;
    font-size: 1.2rem;
    color: #FFB800;
}

.payment-method .payment-detail .guaranti-msg {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 7px;
}

.payment-method .payment-bailing-detail {
    background: #FFFFFF;
    border-radius: 5px;
}

/* ///////////////////////////////
  //// Payment input Section */

.panel {
    width: 90%;
    margin: 2em auto;
}

.panel-body {
    /* width: 90%; */
    /* margin: 2em auto; */
}

label {
    font-weight: 400;
}

.helper-text {
    color: #E91E63;
    font-size: 12px;
    margin-top: 5px;
    height: 12px;
    display: block;
}

.helper-text-green {
    color: green;
}

.payment-bailing-detail {
    position: relative;
}

.payment-bailing-detail .panel-body .input-field {
    outline: none;
    box-shadow: none;
    border: 0;
    border-bottom: 2px solid rgb(143, 143, 143, 0.5);
    border-radius: 0 !important;
    background-color: transparent;
}

.payment-bailing-detail .panel-body .input-field:focus,
.payment-bailing-detail .panel-body .input-field:active {
    border-bottom: 2.5px solid #009688;
}


/* Hosted Payment Fields styles*/
.hosted-field-focus {
    outline: none;
    background-image: linear-gradient(#009688, #009688), linear-gradient(#d2d2d2, #d2d2d2);
    animation: input-highlight 0.5s forwards;
    box-shadow: none;
    background-size: 0 2px, 100% 1px;
}


.payment-bailing-detail .payment-section-bg-icon1 {
    content: " ";
    position: absolute;
    min-height: 15%;
    min-width: 100%;
    top: 0;
    left: 0;
    background-image: url(../assets/background-img/Ellipse\ 32.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: auto;

}

.payment-bailing-detail .payment-section-bg-icon2 {
    content: " ";
    position: absolute;
    min-height: 50%;
    min-width: 100%;
    bottom: -350;
    background-image: url(../assets/background-img/Ellipse\ 31.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: auto;
}

/*
//////////////////////////////////////////////////////////////
/////////////  Thank You Page Style
//////////////////////////////////////////////////////////////
*/

/* //////////////////////////////////////////////////////////
  //// thank you Top Section */

.thankyou {}


.thankyou h1 {
    margin: 0 0 10px 0;
    font-size: 40px;
    font-weight: 600;
    font-family: inherit;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    text-transform: uppercase;
}

.thankyou p {
    margin-bottom: 30px;
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
}


@media (max-width: 992px) {
    .thankyou {
        height: calc(100vh - 70px);
    }

    .thankyou h1 {
        font-size: 30px;
        line-height: 36px;
    }

}

@media (max-width: 768px) {
    .thankyou {
        height: 60vh;
    }

    .thankyou h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .thankyou p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .thankyou {
        height: 40vh;
    }

    .thankyou h1 {
        font-size: 20px;
        line-height: 36px;
    }

    .thankyou p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

/* //////////////////////////////////////////////////////////
  //// thank you Top Section */

@font-face {
    font-family: KaushanScript;
    src: url(../assets/text_font/KaushanScript-Regular.ttf);
}

.thankyou_main_section .thankyou-box h1 {
    font-family: KaushanScript;
    font-size: 4.5em;
    font-weight: 700;
    color: #5892FF;
    margin: 0;
    text-align: center;
    padding: 1rem 0 1rem 0;
}

.thankyou_main_section .thankyou-box i {
    font-size: 6em;
    font-weight: 900;
    color: #fff;
    text-align: center;
}

.thankyou_main_section .thankyou-box .chack-mark-span {
    width: 110px;
    height: 110px;
    background: #0826A4;
    border-radius: 50%;
    display: block;
    position: relative;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
    overflow: hidden;
}

.thankyou_main_section .thankyou-box .chack-mark-span i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
    font-size: 6rem;
}

.thankyou_main_section .thankyou-box .Back-to-home-btn {
    text-decoration: none;
    background: conic-gradient(from 270deg at 103.82% 100%, #07239B 0deg, rgba(80, 48, 200, 0) 360deg);
    filter: drop-shadow(0px 2px 5px #FFD9D9);
    border-radius: 7px;
    color: #fff;
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

.thankyou_main_section .thankyou-box .Back-to-home-btn i {

    color: #fff;
    font-size: 1.2rem;
}


/*
//////////////////////////////////////////////////////////////
/////////////  Login Page Style
//////////////////////////////////////////////////////////////
*/

/* //////////////////////////////////////////////////////////
  //// Login Top Section */

.login {}

.login h1 {
    margin: 0 0 10px 0;
    font-size: 40px;
    font-weight: 600;
    font-family: inherit;
    font-style: normal;
    text-align: center;
    color: #fff;
}

.login p {
    margin-bottom: 30px;
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
}

@media (max-width: 992px) {
    .login {
        height: calc(100vh - 70px);
    }

    .login h1 {
        font-size: 30px;
        line-height: 36px;
    }

}

@media (max-width: 768px) {
    .login {
        height: 60vh;
    }

    .login h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .login p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .login {
        height: 40vh;
    }

    .login h1 {
        font-size: 20px;
        line-height: 36px;
    }

    .login p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

/* //////////////////////////////////////////////////////////
  //// Login Top Section */

.login-main-section {
    background: #F2EFE7;
    position: relative;
}

.login-main-section .login-box {
    background: #FFFFFF;
    border-radius: 10px;
    position: relative;
}

.login-main-section .login-box .login-title {
    font-weight: 600;
}

.login-main-section .login-box .login-sub-title {
    color: #5E5E5E;
    font-size: 1.4rem;
    font-family: 700;
}

.login-main-section .login-box .login-form label {
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
    font-size: 1.3rem;
}

.login-main-section .login-box .login-form input {
    border: 2px solid #C8C8C8;
    border-radius: 6px;
    padding: 1.5rem 0.5rem;
}

.login-main-section .login-box .login-form input::placeholder {
    color: rgba(0, 0, 0, 0.2);
    font-weight: 600;
}


.login-main-section .login-box .login-form input:focus,
.login-main-section .login-box .login-form input:active {
    outline: 0;
    box-shadow: none;
}

.login-main-section .login-box .login-form .pass_show {
    position: relative
}

.login-main-section .login-box .login-form .pass_show .ptxt {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 1;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
    ;
    margin-top: -15px;
    cursor: pointer;
    transition: .3s ease all;
    font-size: 1.2rem;
}

.login-main-section .login-box .login-form .pass_show .ptxt:hover {
    color: #333333;
}

.login-main-section .login-box .login-form .passwoard-status label {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    font-size: 1rem;
}

.login-main-section .login-box .login-form .passwoard-status span,
.login-main-section .login-box .login-form .passwoard-status a {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    font-size: 1.1rem;
}

.login-main-section .login-box .login-form .login-btn button {
    background: conic-gradient(from 270deg at 103.82% 100%, #07239B 0deg, rgba(80, 48, 200, 0) 360deg);
    filter: drop-shadow(0px 2px 5px #FFD9D9);
    border-radius: 7px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
}

.login-main-section .login-box .login-footer .line::after {
    content: "";
    width: 100%;
    height: 3px;
    display: inline-block;
    background: rgb(0, 0, 0, 0.5);
}

.login-main-section .login-section-bg-icon1 {
    content: "";
    position: absolute;
    min-height: 200px;
    min-width: 50%;
    /* top: 0; */
    background-image: url(../assets/background-img/contact-bg-icon.png);
    background-repeat: no-repeat;
    background-position: left;
}

.login-main-section .login-section-bg-icon2 {
    content: "";
    position: absolute;
    min-height: 140px;
    min-width: 95%;
    /* top: 0; */
    background-image: url(../assets/background-img/login-bg-icon.png);
    background-repeat: no-repeat;
    background-position: right;
}

.login-main-section .login-section-bg-icon3 {
    content: "";
    position: absolute;
    min-height: 600px;
    min-width: 95%;
    /* bottom: 0; */
    background-image: url(../assets/background-img/contact-bg-icon.png);
    background-repeat: no-repeat;
    background-position: center;
}


.login-main-section .login-section-bg-icon1 {
    content: "";
    position: absolute;
    min-height: 100px;
    min-width: 80%;
    top: -60;
    left: -10;
    background-image: url(../assets/background-img/Ellipse\ 32.png);
    background-repeat: no-repeat;
    background-position: center;
}

.about-section-main .about-section-bg-icon2 {
    content: "";
    position: absolute;
    min-height: 100px;
    min-width: 100%;
    top: -60;
    right: 0;
    background-image: url(../assets/background-img/Ellipse\ 31.png);
    background-repeat: no-repeat;
    background-position: right;
}

.about-section-main .about-section-bg-icon3 {
    content: "";
    position: absolute;
    min-height: 150%;
    min-width: 80%;
    bottom: -30;
    left: 0;
    background-image: url(../assets/background-img/Ellipse\ 30.png);
    background-repeat: no-repeat;
    background-position: left;
}


/*
//////////////////////////////////////////////////////////////
/////////////  FAQs Page Style
//////////////////////////////////////////////////////////////
*/

/* //////////////////////////////////////////////////////////
  //// FAQs Top Section */

  .faqs {}

  .faqs h1 {
      margin: 0 0 10px 0;
      font-size: 40px;
      font-weight: 600;
      font-family: inherit;
      font-style: normal;
      text-align: center;
      text-transform: uppercase;
      color: #fff;
      text-transform: uppercase;
  }

  .faqs p {
      margin-bottom: 30px;
      font-family: inherit;
      font-style: normal;
      font-weight: 400;
      font-size: 1.6rem;
      color: #FFFFFF;
  }

  @media (max-width: 992px) {
      .faqs {
          height: calc(100vh - 70px);
      }

      .faqs h1 {
          font-size: 30px;
          line-height: 36px;
      }

  }

  @media (max-width: 768px) {
      .faqs {
          height: 60vh;
      }

      .faqs h1 {
          font-size: 30px;
          line-height: 36px;
      }

      .faqs p {
          font-size: 18px;
          line-height: 24px;
          margin-bottom: 30px;
      }
  }

  @media (max-width: 480px) {
      .faqs {
          height: 40vh;
      }

      .faqs h1 {
          font-size: 20px;
          line-height: 36px;
      }

      .faqs p {
          font-size: 15px;
          line-height: 24px;
          margin-bottom: 30px;
      }
  }

  /* //////////////////////////////////////////////////////////
    //// FAQs Top Section */

    .faqs-main-section {

  }

  .faqs-main-section  h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #373d51;
    padding: 3rem 0 1.3rem 0;
    margin: 0;
  }

  .faqs-main-section .accordion a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 700;
    border-bottom: 1px solid #e5e5e5;
  }

  .faqs-main-section .accordion a:hover,
  .faqs-main-section .accordion a:hover::after {
    cursor: pointer;
    color: #03b5d2;
  }

  .faqs-main-section .accordion a:hover::after {
    border: 1px solid #03b5d2;
  }

  .faqs-main-section  .accordion a.active {
    color: #03b5d2;
    border-bottom: 1px solid #03b5d2;
  }

  .faqs-main-section  .accordion a::after {
    font-family: 'Ionicons';
    content: '+';
    position: absolute;
    float: right;
    right: 1rem;
    font-size: 1.2rem;
    color: #ffffff;
    padding: 5px;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #7288a2;
    text-align: center;
    background-color: #041870;
  }

  .faqs-main-section  .accordion a.active::after {
    font-family: 'Ionicons';
    content: '-';
    color: #03b5d2;
    border: 1px solid #03b5d2;
  }

  .faqs-main-section  .accordion .content {
    display: none;
    padding: 1rem;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
  }

  .faqs-main-section .accordion .content p {
    font-size: 1.2rem;
    font-weight: 300;
  }

  .faqs-bottom-section{
    position: relative;
    background-color: #041870;
  }

  .faqs-bottom-section p{
    font-size: 1.4rem;
  }

  .faqs-bottom-section .faqs-bottom-section-bg1{
    position: absolute;
    content: " ";
    min-height: 100px;
    min-width: 200px;
    background-image: url(../assets/background-img/faqs-bg-2x.png);
    background-repeat: no-repeat;
    background-position: left;
  }

  .faqs-bottom-section .faqs-bottom-section-bg2{
    position: absolute;
    content: " ";
    min-height: 250px;
    min-width: 100%;
    background-image: url(../assets/background-img/faqs-bg2.png);
    background-repeat: no-repeat;
    background-position: right;
  }
