* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #1a8fe3;
    --primary-color-half: rgba(26, 143, 227, 0.502);
    --secondary-color: #6c757d;
    --black-color: #000000;
    --black-color-half: rgb(0, 0, 0, 0.5);
    --yallow-color: #FFCC55;
    --danger-color: #C00000;
    --green-color: #49C39C;
    --green-color-half: rgb(73, 195, 156, 0.5);
    --gray-color: #ECECEC;
    --white-color: #FFFF;
}
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: 90px;
}

#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: 1.7rem;
    /* / letter-spacing: 0.2em; / */
    color: #000000;
    /* / text-shadow: 0px 2px 2px 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;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    font-size: 1.3rem;
    /* / 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 Service'
    }

    25% {
        content: 'Training Service'
    } 

    50% {
        content: 'Mentoring Service'
    }

    75% {
        content: 'Coaching Service'
    }

    100% {
        content: 'Counselling Service'
    }
}

.word_box {
    /* width: 160px; */
    display: inline-block;
}
.word {
    color: #1539D1;
    display: inline-block;
    margin: auto;
}

.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: #FFFFFF;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    color: #000;
    font-size: 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 300;
    padding: 6px 17px;
    letter-spacing: 0.05em;
    margin: 6px;
}

#header-section .header-btn-div .demo-btn {
    font-size: 1.3rem;
    font-weight: 600;
}

#header-section .header-btn-div .learner-btn,
#header-section .header-btn-div .edu-btn {
    font-size: 1.2rem;
    padding: 6px 45px;
}

#header-section .header-btn-div .reg-btn,
#header-section .header-btn-div .login-btn {
    font-size: 1rem;
}

#header-section .header-btn-div a:hover {
    display: inline-block;
    background: #f4f2f2;
    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 .dropbtn {
    background: #FFFFFF;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    color: #000;
    font-size: 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 300;
    padding: 6px 17px;
    letter-spacing: 0.05em;
    margin: 6px;
    cursor: pointer;
}

#header-section .dropdown {
    position: relative;
    /* display: inline-block; */
    z-index: 1;
}

#header-section .dropdown-content {
    display: none;
    /* position: absolute; */
    overflow: auto;
    text-align: center;
}

#header-section .dropdown-content a {
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

#header-section .show {
    display: flex;
    justify-content: space-evenly;
    z-index: 1;
}

#header-section .header-below-text h4 {
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

#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(../assets/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.5rem 0;
    font-family: sans-serif;
}

.registration-section .registrtion-block .input-part input[type=submit] {
    padding: 0.3rem 5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(0, 0, 0, 0.7);
    border: 0;
    margin: 0.5rem 0;
}

.registration-section .registrtion-block .input-part input[type=number]::-webkit-outer-spin-button,
.registration-section .registrtion-block .input-part input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.registration-section .registrtion-block .input-part input[type=number]::-webkit-inner-spin-button {
    -moz-appearance: textfield;
}

.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;
}

.signup {
    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;
}

.signup: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("../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;
}

/* Material Resources Pages design  */

.knowledge-center .resource-details-section .page-title {
    font-weight: 700;
    color: #066CBF;
    font-size: 24px;
}

.knowledge-center .resource-details-section .section-title h3 {
    font-size: 28px;
    font-weight: 700;
}

.knowledge-center .resource-details-section .picture-box {
    border: 0;
}

.knowledge-center .resource-details-section ul li h5 {
    font-size: 16px;
    font-weight: 600;
}

.knowledge-center .resource-details-section ul li p {
    font-size: 14px;
    font-weight: 500;
}

.knowledge-center .resource-details-section .vertical {
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -ms-transform-origin: right top 0;
    -moz-transform-origin: right top 0;
    -webkit-transform-origin: right top 0;
    transform-origin: right top 0;
    font-family: "Megrim", cursive;
    right: 99%;
    color: #EEC733;
    padding-top: 2vw;
    padding-right: 2vw;
    font-size: 4.3vw;
    white-space: nowrap;
    text-transform: uppercase;
    cursor: vertical-text;
    position: absolute;
    display: block;
    height: auto;
    direction: rtl;
    z-index: 11;
  }
  
  .knowledge-center .resource-details-section .wrapv {
    background: rgba(255, 255, 255, 0.5);
    z-index: 5;
    position: absolute;
    align-items: center;
    display: block;
    top: 0px;
    left: 0px;
    height: 100%;
    /* width: 10vw; */
  }


/* ///////////////////////////////
  //// 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(../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(../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;
    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;
}


/*
////////////////////////////////////////////
/////////////  Our Expert Page Style
////////////////////////////////////////////
*/



/* ///////////////////////////////
  //// Expert-top Section */
.expert {
    /* background: url("../assets/images/viizard-top-bg-image.png") center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important; */
}

.expert 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;
}

.expert p {
    margin-bottom: 30px;
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
}

.expert .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;
}

.expert .btn-read-more:hover {
    background: #4ea5e0;
}

@media (max-width: 992px) {
    .expert {
        height: calc(100vh - 70px);
    }

    .expert h1 {
        font-size: 30px;
        line-height: 36px;
    }

}

@media (max-width: 768px) {
    .expert {
        height: 60vh;
    }

    .expert h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .expert p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .expert {
        height: 40vh;
    }

    .expert h1 {
        font-size: 20px;
        line-height: 36px;
    }

    .expert p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}


/* ///////////////////////////////
  //// Our Expert main Section */
.our-expert-section {}

.our-expert-section .small-line {
    text-align: center;
    content: "";
    width: 80%;
    height: 5px;
    color: #03176C;
}

.our-expert-section .line::after {
    content: "";
    width: 100%;
    height: 5px;
    display: inline-block;
    background: rgb(0, 0, 0, 0.5);
}

.our-expert-section .section-title {
    text-align: center;
    font-family: inherit;
    font-weight: 700;
    font-size: 3rem;
    color: #03176C;
    text-transform: uppercase;
}

.our-expert-section .search-bar .input-group {
    border: 2px solid #03186F;
    border-radius: 58px;
    width: auto;
    float: right;
}

.our-expert-section .search-bar .input-group-text i {
    color: #03186F;
}

.our-expert-section .search-bar .input-group span,
.our-expert-section .search-bar .input-group input {
    background-color: transparent;
    border: none;
}

.our-expert-section .search-bar .input-group input {
    width: auto;
}

/* filteration-section */
.our-expert-section .filteration-section .filter-header span {
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.6);

}

.our-expert-section .filteration-section .filter-header a {
    font-size: 1.1rem;
    text-decoration: none;
    color: #03186F;
}

.our-expert-section .filteration-section .filter-checkbox h4 {
    font-size: 1.4rem;
    text-decoration: none;
    color: #03186F;
}

.our-expert-section .filteration-section .filter-checkbox input[type=checkbox].ckb {
    z-index: -1;
    opacity: 0;
}

.our-expert-section .filteration-section .filter-checkbox input[type=checkbox].ckb+label {
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s;
    color: #626981;
}

.our-expert-section .filteration-section .filter-checkbox input[type=checkbox].ckb+label:hover {
    color: #2c5481;
}

.our-expert-section .filteration-section .filter-checkbox input[type=checkbox].ckb+label::before {
    transition: all 0.3s;
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    /* margin: 20px 5px; */
}

.our-expert-section .filteration-section .filter-checkbox input[type=checkbox].ckb:checked+label::before {
    transition: all 0.3s;
    border-color: #2c5481;
    background-color: #2c5481;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
    box-shadow: 2px 2px 10px 0px #9ebcff;
}



/* experts-section */
.experts-section {
    position: relative;
}

.experts-section .card {
    background: #FFFFFF;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}

.experts-section .card img {
    border-radius: 5px;
}

.experts-section .card .card-body .card-title {
    color: #000000;
}

.experts-section .card .card-body .card-text {
    color: #03176C;
}

.experts-section .card .card-body .card-link {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.8rem;
}

.experts-section .card .card-body .card-stars {
    text-decoration: none;
}

.experts-section .card .card-body .card-stars span {
    font-size: 1rem;
}

.experts-section .card .card-body .checked {
    color: orange;
}

.pager li {
    list-style: none;
    display: inline-block;
}

.pager li a {
    margin: 2rem 0;
    text-decoration: none;
    border: 1px solid #0016DE;
    font-size: 1.1rem;
    padding: 0.3rem 1rem;
    border-radius: 20px;
}

.pager li a:hover {
    background-color: #066CBF;
    color: #fff;
}

.experts-section .blueline-expert-bg-image1 {
    content: "";
    position: absolute;
    min-height: 30%;
    min-width: 96%;
    background-image: url(../assets/background-img/experts-bg-tringle2.png);
    background-repeat: no-repeat;
    background-position: bottom;
}

.experts-section .blueline-expert-bg-image2 {
    content: "";
    position: absolute;
    min-height: 54%;
    min-width: 96%;
    background-image: url(../assets/background-img/experts-bg-tringle2.png);
    background-repeat: no-repeat;
    background-position: bottom;
}

.experts-section .blueline-expert-bg-image3 {
    content: "";
    position: absolute;
    min-height: 80%;
    min-width: 96%;
    background-repeat: no-repeat;
    background-position: bottom;
}


/* Queies  */

@media only screen and (max-width: 480px) {
    .our-expert-section .section-title {
        font-size: 2rem;
    }
}


/*
////////////////////////////////////////////
/////////////  Profile Page Style
////////////////////////////////////////////
*/


/* ///////////////////////////////
  //// Profile-head Section */

.profile {
    /* background: url("../assets/images/viizard-top-bg-image.png") center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important; */
}

.profile 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;
}

.profile p {
    margin-bottom: 30px;
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
}

.profile .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;
}

.profile .btn-read-more:hover {
    background: #4ea5e0;
}

@media (max-width: 992px) {
    .profile {
        height: calc(100vh - 70px);
    }

    .profile h1 {
        font-size: 30px;
        line-height: 36px;
    }

}

@media (max-width: 768px) {
    .profile {
        height: 60vh;
    }

    .profile h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .profile p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .profile {
        height: 40vh;
    }

    .profile h1 {
        font-size: 20px;
        line-height: 36px;
    }

    .profile p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}


/* ///////////////////////////////
  //// Profile1-top Section */


.profile1-top-section {
    background-color: #fff;
}

.profile1-top-section .profile-card .profile-image-box {
    border: 2px solid #FFFFFF;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: 50%;
    width: 11rem !important;
    height: 11rem !important;
    text-align: center;
    justify-content: center;
    align-self: center;
    position: relative;
    display: inline-block;
}

.profile1-top-section .profile-card .profile-image-box img {
    object-fit: cover;
}


.profile1-top-section .profile-card .profile-image-box .status-offline {
    position: absolute;
    content: " ";
    bottom: 19px;
    right: 8px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 3px rgba(12, 118, 42, 1);
    border: 4px solid #fff;
    background-color: #fff;
    color: #0C762A;
}

.profile1-top-section .profile-card .profile-image-box .status-online {
    position: absolute;
    content: " ";
    bottom: 19px;
    right: 8px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 3px rgba(12, 118, 42, 1);
    border: 4px solid #fff;
    background-color: #0C762A;
    color: #0C762A;
}


/* .profile1-top-section .online-status {
    position: absolute;
    content: " ";
    right: 30%;
    bottom: 20%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 5px solid #0C762A;
    background-color: #fff;
} */
@media only screen and (max-width:768px) {
    .profile1-top-section .profile-card .profile-image-box {
        width: 10rem !important;
        height: 10rem !important;

    }
}

@media only screen and (max-width:480px) {
    .profile1-top-section .profile-card .profile-image-box {
        width: 8rem !important;
        height: 8rem !important;

    }

    .profile1-top-section .profile-card .profile-image-box .status-offline {
        bottom: 15px;
        right: 5px;
        width: 22px;
        height: 22px;
    }

    .profile1-top-section .profile-card .profile-image-box .status-online {
        bottom: 15px;
        right: 5px;
        width: 22px;
        height: 22px;
    }
}

.profile1-top-section .profile-card .card-body .card-link,
.profile1-top-section .profile-card .card-body .card-text {
    color: rgba(57, 57, 57, 0.6);
    font-size: 1.2rem;
}

.profile1-top-section .profile-short-desc .card-body .card-text {
    color: rgba(57, 57, 57, 0.6);
    font-weight: 600;
    font-size: 1.1rem;
}

.profile1-top-section .profile-education-details .list-group-item {
    align-items: center;
}

.profile1-top-section .profile-education-details .list-group-item img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    margin-right: 10px;
}

.profile1-top-section .profile-top-buttons a {
    border-radius: 82px;
    padding: 1rem auto;
    color: #393939;
    font-weight: 600;
    font-size: 1.2rem;
    height: auto;
}

.profile1-top-section .profile-top-buttons .light-blue {
    background: #D1F4FF;
    border-radius: 82px;
    padding: 1rem auto;
    color: #393939;
    font-weight: 500;
    font-size: 1.1rem;
}

.profile1-top-section .profile-top-buttons .dark-blue {
    background: #0066FF;
    border-radius: 82px;
    padding: 1rem auto;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
}

.profile1-top-section .profile-top-buttons a i {
    font-weight: 600;
    font-size: 1.2rem;
}

/* ///////////////////////////////
  //// Profile1 Main Section */

.profile1-main-section {}

.profile1-main-section .row-box {
    background-color: #fff;
    border-radius: 8px;
    margin: 15px 0;
    position: relative;
}

.profile1-main-section .row-box .row-box-title {
    color: #393939;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: underline;
}

.profile1-main-section .row-box .row-box-desc {
    color: #393939;
    font-size: 1rem;
}

.profile1-main-section .row-box-desc-ul {
    flex-direction: row;
    flex-flow: row wrap;
    color: #393939;
    font-size: 1rem;
}

.profile1-main-section .row-box-desc-ul li {
    flex: 50%;
}

.profile1-main-section .row-box .profile-main-title-bg-icon {
    content: "";
    position: absolute;
    min-height: 50px;
    min-width: 50px;
    background-image: url(../assets/background-img/profile-bg-circle.png);
    background-repeat: no-repeat;
    background-position: left;
}



/* // Search Bar \\ */
.profile1-main-section .search-bar .input-group {
    border-radius: 58px;
    width: 100%;
    background-color: #F4F6FF;
}

.profile1-main-section .search-bar .input-group-text i {
    color: #03186F;
}

.profile1-main-section .search-bar .input-group span,
.profile1-main-section .search-bar .input-group input {
    background-color: transparent;
    border: none;
}

.profile1-main-section .search-bar .input-group input {
    width: auto;
}

/* // Contact Box \\ */

.profile1-main-section .contact-box input,
.profile1-main-section .contact-box textarea {
    background: #F4F6FF;
    border-radius: 10px;
    border: 0;
    margin: 10px 0;
    box-shadow: none;
}

.profile1-main-section .contact-box input[type=submit] {
    padding: 0.5rem 2.5rem;
}

/* // Audio Box \\ */
.profile1-main-section .audio-box .card {
    background: #F4F6FF;
    border-radius: 10px;
}

.profile1-main-section .audio-box .list-group-item {
    background: #F4F6FF;
}

.profile1-main-section .card .list-group-item .card-stars {
    text-decoration: none;
}

.profile1-main-section .card .list-group-item .checked {
    color: orange;
}

.profile1-main-section .audio-box .card audio {
    max-height: 100%;
    max-width: 100%;
    margin: auto;
    object-fit: contain;
}

/* // Video Box \\ */

.profile1-main-section .video-box .card video {
    border-radius: 10px;
}

.profile1-main-section .video-box .card .list-group {
    flex-direction: row;
    flex-flow: row wrap;
}

.profile1-main-section .video-box .card .list-group li span {
    font-size: 1.8rem;
    color: #03186F;
}

.profile1-main-section {}

@media only screen and (max-width: 768px) {}

@media only screen and (max-width: 576px) {
    .profile1-main-section .row-box-desc-ul li {
        flex: 100%;
    }
}

/*
////////////////////////////////////////////
/////////////  Profile Review Style
////////////////////////////////////////////
*/


/* ///////////////////////////////
  //// Profile Review Main Section */

.profile-review-main-section,
.profile-review-main-section .profile-review-title {
    position: relative;
}

.profile-review-main-section .profile-review-title h2 {
    font-weight: 600;
    font-size: 2rem;
    color: #182B4E;
}


.profile-review-main-section .carousel-item {
    padding: 10px;
    cursor: -webkit-grabbing;
}


.profile-review-main-section .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #fff;
    border-radius: 10px;
    margin: 5px;
    position: relative;
    top: 50px;
}

.profile-review-main-section .carousel-indicators li.active {
    background: #8E7AFF;
    width: 15px;
    height: 15px;
    top: 48px;
}

@media only screen and (max-width: 650px) {
    .profile-review-main-section .carousel-item img {
        height: auto;
    }

    .profile-review-main-section .carousel-item {
        padding: 10px 0 10px 0;
        cursor: -webkit-grabbing;
    }

}


/* //////////////  */

.profile-review-main-section .container .card {
    background: #FFFFFF;
    border-radius: 6px;
}

.profile-review-main-section .container .profile-details {
    display: flex;
    align-items: center;
    padding: 20px;
    position: relative;
    right: 0;
    left: 0;
    bottom: 0;
}

.profile-review-main-section .container .profile-details img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-position: center;
    object-fit: cover;
    margin-right: 10px;
}

.profile-review-main-section .container .profile-details h2 {
    color: #334454;
    font-size: 1.2rem;
    padding: 0;
    margin: 0;
}

.profile-review-main-section .container .profile-details p {
    color: #a1b2bc;
    font-size: 0.8rem;
    padding: 0;
    margin: 0;
}

.profile-review-main-section .container .profile-details p b {
    font-style: italic;
}

.profile-review-main-section .container .profile-details .profile-text {
    padding: 10px 0 0px 0;
}

.profile-review-main-section .card .card-footer {
    background-color: transparent;
    border-top: none;
}

.profile-review-main-section .card .card-footer .card-stars {
    text-decoration: none;
}

.profile-review-main-section .card .card-footer .card-stars span {
    font-size: 1rem;
}

.profile-review-main-section .card .card-footer .checked {
    color: orange;
}


.profile-review-main-section .profile-review-main-section-bg {
    content: "";
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    background-image: url(../assets/background-img/review-bg-line2.png);
    background-repeat: no-repeat;
    background-position: center;
}

.profile-review-main-section .profile-review-main-section-bg-circle {
    content: "";
    position: absolute;
    min-height: 80px;
    min-width: 80%;
    background-image: url(../assets/background-img/review-title-bg-circle.png);
    background-repeat: no-repeat;
    background-position: center;
}



/*
////////////////////////////////////////////
/////////////  Profile2  Style
////////////////////////////////////////////
*/


/* ///////////////////////////////
  //// Profile2 top Section */


.profile2-top-section {}

.profile2-top-section .profile-card {
    background: #FFFFFF;
    box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    margin-top: -30px;
}

.profile2-top-section .profile-card .profile-image-box {
    border: 2px solid #FFFFFF;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: 50%;
    width: 10rem !important;
    height: 10rem !important;
    text-align: center;
    justify-content: center;
    align-self: center;
    position: relative;
    display: inline-block;
}

.profile2-top-section .profile-card .profile-image-box img {
    object-fit: cover;
    border-radius: 50%;
    width: 10rem !important;
    height: 10rem !important;
}

@media only screen and (max-width:768px) {
    .profile2-top-section .profile-card .profile-image-box {
        width: 8rem !important;
        height: 8rem !important;
    }
    .profile2-top-section .profile-card .profile-image-box img {
        width: 8rem !important;
        height: 8rem !important;
    }
}

@media only screen and (max-width:480px) {
    .profile2-top-section .profile-card .profile-image-box {
        width: 7rem !important;
        height: 7rem !important;
    }
    .profile2-top-section .profile-card .profile-image-box img {
        width: 7rem !important;
        height: 7rem !important;
    }
}

.profile2-top-section .profile-card .card-body .card-link,
.profile2-top-section .profile-card .card-body .card-text {
    color: rgba(57, 57, 57, 0.6);
    font-size: 1.2rem;
}

.profile2-top-section .profile-card .buttons-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile2-top-section .profile-card .card-body .message-btn,
.profile2-top-section .profile-card .card-body .follow-btn {
    border-radius: 82px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 1.1rem;
    height: auto;
    width: 12rem;
    text-decoration: none;
}

.profile2-top-section .bluelight-btn {
    background: #D1F4FF;
    color: #393939;
}

.profile2-top-section .blue-btn {
    background: #0066FF;
    color: #fff;
}

.profile2-top-section .profile-short-desc .card-body .card-text {
    color: rgba(57, 57, 57, 0.6);
    font-weight: 600;
    font-size: 1.1rem;
}

.profile2-top-section .profile-education-details2,
.profile2-top-section .profile-education-details2 .list-group-item {
    background-color: #D9D9D9;
}

.profile2-top-section .profile-education-details2 .list-group {
    display: flex;
    flex-direction: row;
    flex-flow: row wrap;
}

.profile2-top-section .profile-education-details2 .list-group-item {
    align-items: center;
    flex: 50%;
}

.profile2-top-section .profile-education-details2 .list-group-item img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    margin-right: 10px;
}

.profile2-top-section .profile-education-details2 .card,
.profile2-top-section .profile-short-desc {
    background-color: transparent;
}
.profile2-top-section .search-bar .input-group span,
.profile2-top-section .search-bar .input-group input {
    background-color: transparent;
    border: none;
}
.profile2-top-section .search-bar .input-group {
    background: #FFFFFF;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 43px;
    width: auto;
    float: right;
}

.profile2-top-section .more-btn,
.profile2-top-section .contact-btn{
    border-radius: 82px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 1rem;
    height: auto;
    text-decoration: none;
    width: 170px;
}
.profile2-top-section .review-btn{
    border-radius: 82px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 1rem;
    height: auto;
    text-decoration: none;
    width: 340px;
}

.profile2-top-section .profile-top-buttons a {
    border-radius: 82px;
    padding: 1rem auto;
    color: #393939;
    font-weight: 600;
    font-size: 1.2rem;
    height: auto;
}


@media only screen and (max-width: 576px) {
    .profile2-top-section .profile-education-details2 .list-group {
        display: flex;
        flex-direction: column;
        flex-flow: row wrap;
    }

    .profile2-top-section .profile-education-details2 .list-group-item {
        align-items: center;
        flex: 100%;
    }
}

/* ///////////////////////////////
  //// Profile1 Main Section */

  .profile2-main-section {}

  .profile2-main-section .row-box {
      background-color: #fff;
      border-radius: 8px;
      margin: 15px 0;
      position: relative;
  }

  .profile2-main-section .row-box .row-box-title {
      color: #393939;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: underline;
  }

  .profile2-main-section .row-box .row-box-desc {
      color: #393939;
      font-size: 1rem;
  }

  .profile2-main-section .row-box-desc-ul {
      flex-direction: row;
      flex-flow: row wrap;
      color: #393939;
      font-size: 1rem;
  }

  .profile2-main-section .row-box-desc-ul li {
      flex: 50%;
  }


  /* // Contact Box \\ */

  .profile2-main-section .contact-box input,
  .profile2-main-section .contact-box textarea {
      background: #F4F6FF;
      border-radius: 10px;
      border: 0;
      margin: 10px 0;
      box-shadow: none;
  }

  .profile2-main-section .contact-box input[type=submit] {
      padding: 0.5rem 2.5rem;
  }

  /* // Audio Box \\ */
  .profile2-main-section .audio-box .card {
      border-radius: 10px;
  }

  .profile2-main-section .card .list-group-item .card-stars {
      text-decoration: none;
  }

  .profile2-main-section .card .list-group-item .checked {
      color: orange;
  }

  .profile2-main-section .audio-box .card audio {
      max-height: 100%;
      max-width: 100%;
      margin: auto;
      object-fit: contain;
  }

  /* // Video Box \\ */

  .profile2-main-section .video-box .card video {
      border-radius: 10px;
  }

  .profile2-main-section .video-box .card .list-group {
      flex-direction: row;
      flex-flow: row wrap;
  }

  .profile2-main-section .video-box .card .list-group li {
      /* flex: 50%; */
  }

  .profile2-main-section .video-box .card .list-group li span {
      font-size: 1.8rem;
      color: #03186F;
  }

  .profile2-main-section {}

  @media only screen and (max-width: 768px) {}

  @media only screen and (max-width: 576px) {
      .profile2-main-section .row-box-desc-ul li {
          flex: 100%;
      }
  }




































/*
//////////////////////////////////////////////////////////////
/////////////  Teacher Page Style
//////////////////////////////////////////////////////////////
*/

/* //////////////////////////////////////////////////////////
  //// teacher create test Section */
.create-test-section {
    margin: 10rem 0;
}

.create-test-section label {
    border: 1px solid #000;
    font-size: 1.1rem;
    color: #000;
    width: 100%;
    height: auto;
}

.create-test-section a {
    border: 1px solid #000;
    font-size: 1rem;
    color: #000;
    text-decoration: none;
    width: 100%;
    height: auto;
}

.create-test-section .multiple-choice {
    background-color: yellow;
}

.create-test-section .check-box {
    background-color: #00b0f0;
}

.create-test-section .true-false {
    background-color: #bfbfbf;
}

.create-test-section .essay-question {
    background-color: #ffc000;
}

/* //////////////////////////////////////////////////////////
  //// teacher ADD Question Section */

.Add-question-section {
    margin: 2rem 0;
}

.Add-question-section input {
    border: 1px solid #000;
}

.Add-question-section input:active,
.Add-question-section input:focus {
    border: 1px solid #000;
    box-shadow: none;
}

.Add-question-section .guidline-btn {
    background-color: #0070c0;
    color: #fff;
    text-decoration: none;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 0.5rem 0;
}

.Add-question-section .add-question-btn {
    background-color: #92d050;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    width: 100%;
    height: auto;
    text-align: center;
}

/* //////////////////////////////////////////////////////////
  //// guidline-desc-box Section */

.guidline-desc-box {
    background-color: #0070c0;
    color: #fff;
}

.guidline-desc-box p {
    color: #fff;
    font-size: 1.1rem;
}

.guidline-desc-box p span {
    color: #fff;
    font-size: 1.1rem;
}

/* //////////////////////////////////////////////////////////
  //// Multiple Question Section */

.create-question .container {
    background-color: #fff2cc;
}

.create-question .question-div input {
    width: 100%;
    height: auto;
    text-decoration: none;
    border: 1px solid #000;
    color: #000;
    font-size: 1.1rem;
    background-color: transparent;
}

.create-question .question-div input::placeholder {
    color: #000;
    font-size: 1.1rem;

}

.create-question a span {
    font-size: 1.2rem;
    font-weight: 700;
}

.create-question .answer-div {
    width: 100%;
    height: auto;
    border: 1px solid #000;
    display: inline-flex;
    justify-content: space-between;
    border-radius: 5px;
    padding: 0 1rem;
    margin: 1rem 0 0 0;
}

.create-question .answer-div label {
    color: #000;
    font-size: 1.1rem;
}

.create-question .answer-div label span {
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
}

.create-question .answer-div input {
    transform: scale(2);
}

.add-another-question .add-anoter-question-btn {
    width: 100%;
    height: auto;
    border: 1px solid #000;
}

.add-another-question .bottom-question-btn {
    width: 100%;
    height: auto;
    border: 2px solid #000;
    display: inline;
    font-size: 1rem;
}

@media only screen and (max-width:768px) {
    .add-another-question .bottom-question-btn {
        display: block;
        margin-bottom: 0.5rem;
    }
}

.add-another-question .bottom-question-btn .bi-arrow-counterclockwise {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffc000;
}

.add-another-question .bottom-question-btn .bi-arrow-clockwise {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0070c0;
}

.add-another-question .bottom-question-btn .bi-x-circle {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgb(188, 10, 10);
}

/* //////////////////////////////////////////////////////////
  //// True False Question Section */

.true-false-create-question .container {
    background-color: #fff2cc;

}

.true-false-create-question .true-false-question .input-group {
    margin-top: 1rem;
    border: 1px solid #000;
}

.true-false-create-question .true-false-question .input-group-prepend span,
.true-false-create-question .true-false-question .input-group input,
.true-false-create-question .true-false-question .input-group .input-group-text {
    background-color: transparent;
    border: none;
}

.true-false-create-question .true-false-question .input-group {
    margin-top: 1rem;
}

.true-false-create-question .true-false-question .input-group input[type=radio] {
    transform: scale(1.5);
    margin-left: 6px;
}


/* //////////////////////////////////////////////////////////
  //// True False Question Section */
.essay-create-question {}

.essay-create-question .input-group span,
.essay-create-question .input-group input,
.essay-create-question .input-group textarea {
    border: none;
    background-color: transparent;
}

.essay-create-question .input-group textarea:active,
.essay-create-question .input-group textarea:focus {
    box-shadow: none;
}

.essay-create-question .input-group {
    border: 1px solid #000;
    background-color: transparent;
}

/*
//////////////////////////////////////////////////////////////
///////////// From Student Test Page Style
//////////////////////////////////////////////////////////////
*/

/* //////////////////////////////////////////////////////////
  //// MCQs Question Section */

.student-instruction-section {
    margin: 2rem 0 0 0;
}

.student-instruction-section input {
    border: 1px solid #000;
}

.student-instruction-section input:active,
.student-instruction-section input:focus {
    border: 1px solid #000;
    box-shadow: none;
}

.student-instruction-section .guidline-btn {
    color: rgb(0, 8, 255);
    border: 1px solid #000;
    text-decoration: none;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 0.5rem 0;
}

.mcqs-qestion-section {}

.mcqs-qestion-section .question-div {
    margin: 0.5rem 0;

}

.mcqs-qestion-section a {
    width: 100%;
    height: auto;
    text-decoration: none;
    border: 1px solid #000;
    color: #000;
    font-size: 1rem;
}

.mcqs-qestion-section a span {
    color: #000;
    font-size: 1rem;
}

.student-test-submit {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #f96902;
    background-image: linear-gradient(#fff 3%, #fcce8e 20%, #f96902 50%);
    color: rgb(255, 255, 255);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}


/* //////////////////////////////////////////////////////////
  //// MCQs Answer Section */

.mcqs-answer-section {
    margin: 1rem 0 0 0;
}

.mcqs-answer-section .container-top {
    background-color: #fff2cc;
}

.mcqs-answer-section a {
    width: 100%;
    height: auto;
    text-decoration: none;
    border: 1px solid #000;
    color: #000;
    font-size: 1.1rem;
    background-color: transparent;
}

.mcqs-answer-section a span {
    font-size: 1.2rem;
    font-weight: 700;
}

.mcqs-answer-section .answer-div {
    width: 100%;
    height: auto;
    border: 1px solid #000;
    display: inline-flex;
    justify-content: space-between;
    border-radius: 5px;
    padding: 0 1rem;
    margin: 1rem 0 0 0;
}

.mcqs-answer-section .answer-div label {
    color: #000;
    font-size: 1.1rem;
}

.mcqs-answer-section .answer-div label span {
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
}

.mcqs-answer-section .answer-div input {
    transform: scale(2);
}

/* .mcqs-answer-section .save_and_continue_btn button{
    background-color: rgb(0, 0, 0, 0.1);
    border: 1px solid #000;
    padding: 0.5rem 1rem;
    border-radius: 5px;
} */
.save_and_continue_btn button {
    background-color: rgb(0, 0, 0, 0.1);
    border: 1px solid #000;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.save_and_continue_btn button i {
    color: #2b9806;
    font-size: larger;
}

/* //////////////////////////////////////////////////////////
  //// True False Section */

.true-false-qestion-section {
    /* margin: 10rem 0; */
}

.true-false-qestion-section .question-div {}

.true-false-qestion-section .question-div label {
    width: 100%;
    height: auto;
    text-decoration: none;
    border: 1px solid #000;
    color: #000;
    font-size: 1rem;
    background-color: transparent;
}

.true-false-qestion-section .question-div label span {
    font-size: 1rem;
    font-weight: 700;
}

.true-false-qestion-section .answer-div input {
    transform: scale(2);
}

.true-false-qestion-section .answer-div label {
    font-size: 1.4rem;
    font-weight: 500;
}


/* //////////////////////////////////////////////////////////
  //// Dropdown Question Section */

.dropdown-create-question {}

.dropdown-create-question .container {
    background-color: #fff2cc;
}

.dropdown-create-question .true-false-question .input-group {
    margin-top: 1rem;
    border: 1px solid #000;
}

.dropdown-create-question .true-false-question .input-group-prepend span,
.dropdown-create-question .true-false-question .input-group input,
.dropdown-create-question .true-false-question .input-group .input-group-text,
.dropdown-create-question .true-false-question select {
    background-color: transparent;
    border: none;
}

.dropdown-create-question .true-false-question select {
    border: 1px solid #000;
    border-radius: 0;
}

.dropdown-create-question .true-false-question select option {
    background-color: rgb(255, 255, 255);
    margin: 2rem 0;
    font-size: 1rem;
}

.dropdown-create-question .true-false-question select:focus {
    box-shadow: none;
}

.dropdown-create-question .true-false-question .input-group {
    margin-top: 1rem;
}

.dropdown-create-question .true-false-question .input-group input[type=radio] {
    transform: scale(1.5);
    margin-left: 6px;
}

.dropdown-create-question .true-false-question .input-group input[type=checkbox] {
    transform: scale(1.5);
    margin-left: 6px;
}

/* ///////////////////////////////
  //// Our Courses main Section */
  .our-Courses-section {}

  .our-Courses-section .small-line {
      text-align: center;
      content: "";
      width: 80%;
      height: 5px;
      color: #03176C;
  }

  .our-Courses-section .line::after {
      content: "";
      width: 100%;
      height: 5px;
      display: inline-block;
      background: rgb(0, 0, 0, 0.5);
  }

  .our-Courses-section .section-title {
      text-align: center;
      font-family: inherit;
      font-weight: 700;
      font-size: 3rem;
      color: #03176C;
      text-transform: uppercase;
  }

  .our-Courses-section .search-bar .input-group {
      border: 2px solid #03186F;
      border-radius: 58px;
      width: auto;
      float: right;
  }

  .our-Courses-section .search-bar .input-group-text i {
      color: #03186F;
  }

  .our-Courses-section .search-bar .input-group span,
  .our-Courses-section .search-bar .input-group input {
      background-color: transparent;
      border: none;
  }

  .our-Courses-section .search-bar .input-group input {
      width: auto;
  }

  /* filteration-section */
  .our-Courses-section .filteration-section .filter-header span {
      font-size: 1.3rem;
      color: rgba(0, 0, 0, 0.6);

  }

  .our-Courses-section .filteration-section .filter-header a {
      font-size: 1.1rem;
      text-decoration: none;
      color: #03186F;
  }

  .our-Courses-section .filteration-section .filter-checkbox h4 {
      font-size: 1.4rem;
      text-decoration: none;
      color: #03186F;
  }

  .our-Courses-section .filteration-section .filter-checkbox input[type=checkbox].ckb {
      z-index: -1;
      opacity: 0;
  }

  .our-Courses-section .filteration-section .filter-checkbox input[type=checkbox].ckb+label {
      font-size: 1.2rem;
      display: inline-flex;
      align-items: center;
      user-select: none;
      cursor: pointer;
      transition: all 0.3s;
      color: #626981;
  }

  .our-Courses-section .filteration-section .filter-checkbox input[type=checkbox].ckb+label:hover {
      color: #2c5481;
  }

  .our-Courses-section .filteration-section .filter-checkbox input[type=checkbox].ckb+label::before {
      transition: all 0.3s;
      content: "";
      display: inline-block;
      width: 1em;
      height: 1em;
      flex-shrink: 0;
      flex-grow: 0;
      border: 1px solid #adb5bd;
      border-radius: 0.25em;
      margin-right: 0.5em;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 50% 50%;
      /* margin: 20px 5px; */
  }

  .our-Courses-section .filteration-section .filter-checkbox input[type=checkbox].ckb:checked+label::before {
      transition: all 0.3s;
      border-color: #2c5481;
      background-color: #2c5481;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
      box-shadow: 2px 2px 10px 0px #9ebcff;
  }



  /* experts-section */
  .all-courses-section {
      position: relative;
  }

  .all-courses-section .card {
      background: #FFFFFF;
      box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
      border-radius: 5px;
  }

  .all-courses-section .card img {
      border-radius: 5px;
  }

  .all-courses-section .card .card-body {
    padding: 0.5rem;
}

.all-courses-section .card .card-body p{
    margin: 0;
}

.all-courses-section .card .card-footer a{
    /* padding: 0.5rem 1rem; */
}
  .all-courses-section .card .card-body .card-title {
      color: #000000;
  }

  .all-courses-section .card .card-body .card-text {
      color: #03176C;
  }

  .all-courses-section .card .card-body .card-link {
      color: rgba(0, 0, 0, 0.5);
      font-size: 0.8rem;
  }

  .all-courses-section .card .card-body .card-stars {
      text-decoration: none;
  }

  .all-courses-section .card .card-body .card-stars span {
      font-size: 1rem;
  }

  .all-courses-section .card .card-body .checked {
      color: orange;
  }

  .pager li {
      list-style: none;
      display: inline-block;
  }

  .pager li a {
      margin: 2rem 0;
      text-decoration: none;
      border: 1px solid #0016DE;
      font-size: 1.1rem;
      padding: 0.3rem 1rem;
      border-radius: 20px;
  }

  .pager li a:hover {
      background-color: #066CBF;
      color: #fff;
  }

  .all-courses-section .blueline-expert-bg-image1 {
      content: "";
      position: absolute;
      min-height: 30%;
      min-width: 96%;
      background-image: url(../assets/background-img/experts-bg-tringle2.png);
      background-repeat: no-repeat;
      background-position: bottom;
  }

  .all-courses-section .blueline-expert-bg-image2 {
      content: "";
      position: absolute;
      min-height: 54%;
      min-width: 96%;
      background-image: url(../assets/background-img/experts-bg-tringle2.png);
      background-repeat: no-repeat;
      background-position: bottom;
  }

  .all-courses-section .blueline-expert-bg-image3 {
      content: "";
      position: absolute;
      min-height: 80%;
      min-width: 96%;
      background-image: url(../assets/background-img/experts-bg-tringle2.png);
      background-repeat: no-repeat;
      background-position: bottom;
  }


  /* Queies  */
  @media only screen and (max-width: 768px) {
      .all-courses-section .section-title {
          font-size: 2rem;
      }
  }

  @media only screen and (max-width: 480px) {
      .all-courses-section .section-title {
          font-size: 1.5rem;
      }
  }


/* //////////////////////////////////////////// */
.border-btn {
    border: 1px solid #FF9F67;
    color: #FF9F67;
    background: none;
    border-radius: 5px;
    text-transform: capitalize;
    padding: 8px 30px;
    -moz-user-select: none;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0;
    position: relative;
    transition: color 0.4s linear;
    position: relative;
    overflow: hidden;
    margin: 0
}

.border-btn i {
    font-size: 16px;
    margin-right: 10px;
    color: #C86FFF;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.border-btn::before {
    border: 1px solid transparent;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 101%;
    height: 101%;
    background: #FF9F67;
    z-index: -1;
    transition: transform 0.5s;
    transition-timing-function: ease;
    transform-origin: 0 0;
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    transform: scaleY(0);
    border-radius: 0
}

.border-btn:hover::before {
    transform: scaleY(1);
    border: 1px solid transparent;
    color: #fff
}

.border-btn.border-btn2 {
    width: 100%;
    text-align: center;
    border: 1px solid #E2E4FF;
    color: #4255A4
}

.border-btn.border-btn2:hover {
    color: #fff
}

.border-btn2 {
    width: 100%
}

  .border-btn.border-btn2 {
    width: 100%;
    text-align: center;
    border: 1px solid #696b86;
    color: #6c5ebd;
    text-decoration: none;

}

.border-btn.border-btn2:hover {
    color: #fff;
}

.border-btn2 {
    width: 100%
}


.properties:hover .border-btn2 {
    color: #fff;
    background: #FF9F67;
    border: 1px solid #FF9F67;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s
}

.price span {
    cursor: pointer;
    font-weight: 700;
    color: #FF9F67;
    font-size: 23px
}


.wishlist-button{
  color: #000000;
  background: none;
  padding: 10px;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 0;
  position: relative;
}


/*
////////////////////////////////////////////
/////////////  Our Course Details Page Style
////////////////////////////////////////////
*/



/* ///////////////////////////////
  //// Expert-top Section */
  .details-page {

}

.details-page 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;
}

.details-page p {
    margin-bottom: 30px;
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
}

.details-page .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;
}

.details-page .btn-read-more:hover {
    background: #4ea5e0;
}

@media (max-width: 992px) {
    .details-page {
        height: calc(100vh - 70px);
    }

    .details-page h1 {
        font-size: 30px;
        line-height: 36px;
    }

}

@media (max-width: 768px) {
    .details-page {
        height: 60vh;
    }

    .details-page h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .details-page p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .details-page {
        height: 40vh;
    }

    .details-page h1 {
        font-size: 20px;
        line-height: 36px;
    }

    .details-page p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}


.our-course-detail-section .small-line {
    text-align: center;
    content: "";
    width: 80%;
    height: 5px;
    color: #03176C;
}

.our-course-detail-section .line::after {
    content: "";
    width: 100%;
    height: 5px;
    display: inline-block;
    background: rgb(0, 0, 0, 0.5);
}

.our-course-detail-section .section-title {
    text-align: center;
    font-family: inherit;
    font-weight: 700;
    font-size: 3rem;
    color: #03176C;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .our-course-detail-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .our-course-detail-section .section-title {
        font-size: 1.5rem;
    }
}



/*--------------------------------------------------------------
# Subject details
--------------------------------------------------------------*/
.subject-detail .content h2 {
    font-weight: 700;
    font-size: 35px;
    line-height: 60px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  .subject-detail .content h3 {
    font-weight: 500;
    line-height: 32px;
    font-size: 24px;
  }
  .subject-detail .content p:last-child {
    margin-bottom: 0;
  }

  @media only screen and (max-width: 768px) {
    .subject-detail .content h2 {
        font-size: 30px;
      }
  }

  @media only screen and (max-width: 480px) {
    .subject-detail .content h2 {
        font-size: 28px;
      }
  }

  /*--------------------------------------------------------------
  # Subject Detail List
  --------------------------------------------------------------*/
  .subject-delail-list {
    padding-top: 0;
  }
  .subject-delail-list .icon-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 1px 0 0px 60px;
  }
  .subject-delail-list .icon-box i {
    font-size: 35px;
    float: left;
    color: #01b1d7;
  }
  .subject-delail-list .icon-box p {
    font-size: 16px;
    color: #848484;
    margin-left: 60px;
  }
  .subject-delail-list .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 300px;
  }

  @media only screen and (max-width: 768px) {
    .subject-delail-list .icon-box i {
        font-size: 30px;
      }
  }

  .entry-meta {
    margin-bottom: 15px;
    color: #72afce;
  }
   .entry-meta ul {
    display: block;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0 0 0 60px;
  }
   .entry-meta ul li + li {
    /* padding-left: 20px; */
  }
   .entry-meta li .time-icon {
    font-size: 18px;
    margin: 0 8px;
    line-height: 0;
  }
   .entry-meta a {
    color: #777777;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
  }




/*
////////////////////////////////////////////
/////////////  Profile Page Style
////////////////////////////////////////////
*/


/* ///////////////////////////////
  //// Profile-head Section */

.profile {
    /* background: url("../assets/images/viizard-top-bg-image.png") center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important; */
}

.profile 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;
}

.profile p {
    margin-bottom: 30px;
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
}

.profile .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;
}

.profile .btn-read-more:hover {
    background: #4ea5e0;
}

@media (max-width: 992px) {
    .profile {
        height: calc(100vh - 70px);
    }

    .profile h1 {
        font-size: 30px;
        line-height: 36px;
    }

}

@media (max-width: 768px) {
    .profile {
        height: 60vh;
    }

    .profile h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .profile p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .profile {
        height: 40vh;
    }

    .profile h1 {
        font-size: 20px;
        line-height: 36px;
    }

    .profile p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}


/* ///////////////////////////////
  //// Profile1-top Section */


.profile1-top-section {
    background-color: #fff;
}

.profile1-top-section .profile-card .profile-image-box {
    border: 2px solid #FFFFFF;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: 50%;
    width: 11rem !important;
    height: 11rem !important;
    text-align: center;
    justify-content: center;
    align-self: center;
    position: relative;
    display: inline-block;
}

.profile1-top-section .profile-card .profile-image-box img {
    object-fit: cover;
}


.profile1-top-section .profile-card .profile-image-box .status-offline {
    position: absolute;
    content: " ";
    bottom: 19px;
    right: 8px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 3px rgba(12, 118, 42, 1);
    border: 4px solid #fff;
    background-color: #fff;
    color: #0C762A;
}

.profile1-top-section .profile-card .profile-image-box .status-online {
    position: absolute;
    content: " ";
    bottom: 19px;
    right: 8px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 3px rgba(12, 118, 42, 1);
    border: 4px solid #fff;
    background-color: #0C762A;
    color: #0C762A;
}


/* .profile1-top-section .online-status {
    position: absolute;
    content: " ";
    right: 30%;
    bottom: 20%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 5px solid #0C762A;
    background-color: #fff;
} */
@media only screen and (max-width:768px) {
    .profile1-top-section .profile-card .profile-image-box {
        width: 10rem !important;
        height: 10rem !important;

    }
}

@media only screen and (max-width:480px) {
    .profile1-top-section .profile-card .profile-image-box {
        width: 8rem !important;
        height: 8rem !important;

    }

    .profile1-top-section .profile-card .profile-image-box .status-offline {
        bottom: 15px;
        right: 5px;
        width: 22px;
        height: 22px;
    }

    .profile1-top-section .profile-card .profile-image-box .status-online {
        bottom: 15px;
        right: 5px;
        width: 22px;
        height: 22px;
    }
}

.profile1-top-section .profile-card .card-body .card-link,
.profile1-top-section .profile-card .card-body .card-text {
    color: rgba(57, 57, 57, 0.6);
    font-size: 1.2rem;
}

.profile1-top-section .profile-short-desc .card-body .card-text {
    color: rgba(57, 57, 57, 0.6);
    font-weight: 600;
    font-size: 1.1rem;
}

.profile1-top-section .profile-education-details .list-group-item {
    align-items: center;
}

.profile1-top-section .profile-education-details .list-group-item img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    margin-right: 10px;
}

.profile1-top-section .profile-top-buttons a {
    border-radius: 82px;
    padding: 1rem auto;
    color: #393939;
    font-weight: 600;
    font-size: 1.2rem;
    height: auto;
}

.profile1-top-section .profile-top-buttons .light-blue {
    background: #D1F4FF;
    border-radius: 82px;
    padding: 1rem auto;
    color: #393939;
    font-weight: 500;
    font-size: 1.1rem;
}

.profile1-top-section .profile-top-buttons .dark-blue {
    background: #0066FF;
    border-radius: 82px;
    padding: 1rem auto;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
}

.profile1-top-section .profile-top-buttons a i {
    font-weight: 600;
    font-size: 1.2rem;
}

/* ///////////////////////////////
  //// Profile1 Main Section */

.profile1-main-section {}

.profile1-main-section .row-box {
    background-color: #fff;
    border-radius: 8px;
    margin: 15px 0;
    position: relative;
}

.profile1-main-section .row-box .row-box-title {
    color: #393939;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: underline;
}

.profile1-main-section .row-box .row-box-desc {
    color: #393939;
    font-size: 1rem;
}

.profile1-main-section .row-box-desc-ul {
    flex-direction: row;
    flex-flow: row wrap;
    color: #393939;
    font-size: 1rem;
}

.profile1-main-section .row-box-desc-ul li {
    flex: 50%;
}

.profile1-main-section .row-box .profile-main-title-bg-icon {
    content: "";
    position: absolute;
    min-height: 50px;
    min-width: 50px;
    background-image: url(../assets/background-img/profile-bg-circle.png);
    background-repeat: no-repeat;
    background-position: left;
}



/* // Search Bar \\ */
.profile1-main-section .search-bar .input-group {
    border-radius: 58px;
    width: 100%;
    background-color: #F4F6FF;
}

.profile1-main-section .search-bar .input-group-text i {
    color: #03186F;
}

.profile1-main-section .search-bar .input-group span,
.profile1-main-section .search-bar .input-group input {
    background-color: transparent;
    border: none;
}

.profile1-main-section .search-bar .input-group input {
    width: auto;
}

/* // Contact Box \\ */

.profile1-main-section .contact-box input,
.profile1-main-section .contact-box textarea {
    background: #F4F6FF;
    border-radius: 10px;
    border: 0;
    margin: 10px 0;
    box-shadow: none;
}

.profile1-main-section .contact-box input[type=submit] {
    padding: 0.5rem 2.5rem;
}

/* // Audio Box \\ */
.profile1-main-section .audio-box .card {
    background: #F4F6FF;
    border-radius: 10px;
}

.profile1-main-section .audio-box .list-group-item {
    background: #F4F6FF;
}

.profile1-main-section .card .list-group-item .card-stars {
    text-decoration: none;
}

.profile1-main-section .card .list-group-item .checked {
    color: orange;
}

.profile1-main-section .audio-box .card audio {
    max-height: 100%;
    max-width: 100%;
    margin: auto;
    object-fit: contain;
}

/* // Video Box \\ */

.profile1-main-section .video-box .card video {
    border-radius: 10px;
}

.profile1-main-section .video-box .card .list-group {
    flex-direction: row;
    flex-flow: row wrap;
}

.profile1-main-section .video-box .card .list-group li span {
    font-size: 1.8rem;
    color: #03186F;
}

.profile1-main-section {}

@media only screen and (max-width: 768px) {}

@media only screen and (max-width: 576px) {
    .profile1-main-section .row-box-desc-ul li {
        flex: 100%;
    }
}

/*
////////////////////////////////////////////
/////////////  Profile Review Style
////////////////////////////////////////////
*/


/* ///////////////////////////////
  //// Profile Review Main Section */

.profile-review-main-section,
.profile-review-main-section .profile-review-title {
    position: relative;
}

.profile-review-main-section .profile-review-title h2 {
    font-weight: 600;
    font-size: 2rem;
    color: #182B4E;
}


.profile-review-main-section .carousel-item {
    padding: 10px;
    cursor: -webkit-grabbing;
}


.profile-review-main-section .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #fff;
    border-radius: 10px;
    margin: 5px;
    position: relative;
    top: 50px;
}

.profile-review-main-section .carousel-indicators li.active {
    background: #8E7AFF;
    width: 15px;
    height: 15px;
    top: 48px;
}

@media only screen and (max-width: 650px) {
    .profile-review-main-section .carousel-item img {
        height: auto;
    }

    .profile-review-main-section .carousel-item {
        padding: 10px 0 10px 0;
        cursor: -webkit-grabbing;
    }

}


/* //////////////  */

.profile-review-main-section .container .card {
    background: #FFFFFF;
    border-radius: 6px;
}

.profile-review-main-section .container .profile-details {
    display: flex;
    align-items: center;
    padding: 20px;
    position: relative;
    right: 0;
    left: 0;
    bottom: 0;
}

.profile-review-main-section .container .profile-details img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-position: center;
    object-fit: cover;
    margin-right: 10px;
}

.profile-review-main-section .container .profile-details h2 {
    color: #334454;
    font-size: 1.2rem;
    padding: 0;
    margin: 0;
}

.profile-review-main-section .container .profile-details p {
    color: #a1b2bc;
    font-size: 0.8rem;
    padding: 0;
    margin: 0;
}

.profile-review-main-section .container .profile-details p b {
    font-style: italic;
}

.profile-review-main-section .container .profile-details .profile-text {
    padding: 10px 0 0px 0;
}

.profile-review-main-section .card .card-footer {
    background-color: transparent;
    border-top: none;
}

.profile-review-main-section .card .card-footer .card-stars {
    text-decoration: none;
}

.profile-review-main-section .card .card-footer .card-stars span {
    font-size: 1rem;
}

.profile-review-main-section .card .card-footer .checked {
    color: orange;
}


.profile-review-main-section .profile-review-main-section-bg {
    content: "";
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.profile-review-main-section .profile-review-main-section-bg-circle {
    content: "";
    position: absolute;
    min-height: 80px;
    min-width: 80%;
    background-image: url(../assets/background-img/review-title-bg-circle.png);
    background-repeat: no-repeat;
    background-position: center;
}



/*
////////////////////////////////////////////
/////////////  Profile2  Style
////////////////////////////////////////////
*/


/* ///////////////////////////////
  //// Profile2 top Section */


.profile2-top-section {}

.profile2-top-section .profile-card {
    background: #FFFFFF;
    box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    margin-top: -30px;
}

.profile2-top-section .profile-card .profile-image-box {
    border: 2px solid #FFFFFF;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: 50%;
    width: 10rem !important;
    height: 10rem !important;
    text-align: center;
    justify-content: center;
    align-self: center;
    position: relative;
    display: inline-block;
}



@media only screen and (max-width:768px) {
    .profile2-top-section .profile-card .profile-image-box {
        width: 8rem !important;
        height: 8rem !important;
    }
}

@media only screen and (max-width:480px) {
    .profile2-top-section .profile-card .profile-image-box {
        width: 7rem !important;
        height: 7rem !important;
    }
}

.profile2-top-section .profile-card .card-body .card-link,
.profile2-top-section .profile-card .card-body .card-text {
    color: rgba(57, 57, 57, 0.6);
    font-size: 1.2rem;
}

.profile2-top-section .profile-card .buttons-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile2-top-section .profile-card .card-body .message-btn,
.profile2-top-section .profile-card .card-body .follow-btn {
    border-radius: 82px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 1.1rem;
    height: auto;
    width: 12rem;
    text-decoration: none;
}

.profile2-top-section .bluelight-btn {
    background: #D1F4FF;
    color: #393939;
}

.profile2-top-section .blue-btn {
    background: #0066FF;
    color: #fff;
}

.profile2-top-section .profile-short-desc .card-body .card-text {
    color: rgba(57, 57, 57, 0.6);
    font-weight: 600;
    font-size: 1.1rem;
}

.profile2-top-section .profile-education-details2,
.profile2-top-section .profile-education-details2 .list-group-item {
    background-color: #D9D9D9;
}

.profile2-top-section .profile-education-details2 .list-group {
    display: flex;
    flex-direction: row;
    flex-flow: row wrap;
}

.profile2-top-section .profile-education-details2 .list-group-item {
    align-items: center;
    flex: 50%;
}

.profile2-top-section .profile-education-details2 .list-group-item img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    margin-right: 10px;
}

.profile2-top-section .profile-education-details2 .card,
.profile2-top-section .profile-short-desc {
    background-color: transparent;
}

.profile2-top-section .search-bar .input-group span,
.profile2-top-section .search-bar .input-group input {
    background-color: transparent;
    border: none;
}

.profile2-top-section .search-bar .input-group {
    background: #FFFFFF;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 43px;
    width: auto;
    float: right;
}

.profile2-top-section .more-btn,
.profile2-top-section .contact-btn {
    border-radius: 82px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 1rem;
    height: auto;
    text-decoration: none;
    width: 170px;
}

.profile2-top-section .review-btn {
    border-radius: 82px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 1rem;
    height: auto;
    text-decoration: none;
    width: 340px;
}

.profile2-top-section .profile-top-buttons a {
    border-radius: 82px;
    padding: 1rem auto;
    color: #393939;
    font-weight: 600;
    font-size: 1.2rem;
    height: auto;
}


@media only screen and (max-width: 576px) {
    .profile2-top-section .profile-education-details2 .list-group {
        display: flex;
        flex-direction: column;
        flex-flow: row wrap;
    }

    .profile2-top-section .profile-education-details2 .list-group-item {
        align-items: center;
        flex: 100%;
    }
}

/* ///////////////////////////////
  //// Profile1 Main Section */

.profile2-main-section {}

.profile2-main-section .row-box {
    background-color: #fff;
    border-radius: 8px;
    margin: 15px 0;
    position: relative;
}

.profile2-main-section .row-box .row-box-title {
    color: #393939;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: underline;
}

.profile2-main-section .row-box .row-box-desc {
    color: #393939;
    font-size: 1rem;
}

.profile2-main-section .row-box-desc-ul {
    flex-direction: row;
    flex-flow: row wrap;
    color: #393939;
    font-size: 1rem;
}

.profile2-main-section .row-box-desc-ul li {
    flex: 50%;
}


/* // Contact Box \\ */

.profile2-main-section .contact-box input,
.profile2-main-section .contact-box textarea {
    background: #F4F6FF;
    border-radius: 10px;
    border: 0;
    margin: 10px 0;
    box-shadow: none;
}

.profile2-main-section .contact-box input[type=submit] {
    padding: 0.5rem 2.5rem;
}

/* // Audio Box \\ */
.profile2-main-section .audio-box .card {
    border-radius: 10px;
}

.profile2-main-section .card .list-group-item .card-stars {
    text-decoration: none;
}

.profile2-main-section .card .list-group-item .checked {
    color: orange;
}

.profile2-main-section .audio-box .card audio {
    max-height: 100%;
    max-width: 100%;
    margin: auto;
    object-fit: contain;
}

/* // Video Box \\ */

.profile2-main-section .video-box .card video {
    border-radius: 10px;
}

.profile2-main-section .video-box .card .list-group {
    flex-direction: row;
    flex-flow: row wrap;
}

.profile2-main-section .video-box .card .list-group li {
    /* flex: 50%; */
}

.profile2-main-section .video-box .card .list-group li span {
    font-size: 1.8rem;
    color: #03186F;
}

.profile2-main-section {}

@media only screen and (max-width: 768px) {}

@media only screen and (max-width: 576px) {
    .profile2-main-section .row-box-desc-ul li {
        flex: 100%;
    }
}




































/*
//////////////////////////////////////////////////////////////
/////////////  Teacher Page Style
//////////////////////////////////////////////////////////////
*/

/* //////////////////////////////////////////////////////////
  //// teacher create test Section */
.create-test-section {
    margin: 10rem 0;
}

.create-test-section label {
    border: 1px solid #000;
    font-size: 1.1rem;
    color: #000;
    width: 100%;
    height: auto;
}

.create-test-section a {
    border: 1px solid #000;
    font-size: 1rem;
    color: #000;
    text-decoration: none;
    width: 100%;
    height: auto;
}

.create-test-section .multiple-choice {
    background-color: yellow;
}

.create-test-section .check-box {
    background-color: #00b0f0;
}

.create-test-section .true-false {
    background-color: #bfbfbf;
}

.create-test-section .essay-question {
    background-color: #ffc000;
}

/* //////////////////////////////////////////////////////////
  //// teacher ADD Question Section */

.Add-question-section {
    margin: 2rem 0;
}

.Add-question-section input {
    border: 1px solid #000;
}

.Add-question-section input:active,
.Add-question-section input:focus {
    border: 1px solid #000;
    box-shadow: none;
}

.Add-question-section .guidline-btn {
    background-color: #0070c0;
    color: #fff;
    text-decoration: none;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 0.5rem 0;
}

.Add-question-section .add-question-btn {
    background-color: #92d050;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    width: 100%;
    height: auto;
    text-align: center;
}

/* //////////////////////////////////////////////////////////
  //// guidline-desc-box Section */

.guidline-desc-box {
    background-color: #0070c0;
    color: #fff;
}

.guidline-desc-box p {
    color: #fff;
    font-size: 1.1rem;
}

.guidline-desc-box p span {
    color: #fff;
    font-size: 1.1rem;
}

/* //////////////////////////////////////////////////////////
  //// Multiple Question Section */

.create-question .container {
    background-color: #fff2cc;
}

.create-question .question-div input {
    width: 100%;
    height: auto;
    text-decoration: none;
    border: 1px solid #000;
    color: #000;
    font-size: 1.1rem;
    background-color: transparent;
}

.create-question .question-div input::placeholder {
    color: #000;
    font-size: 1.1rem;

}

.create-question a span {
    font-size: 1.2rem;
    font-weight: 700;
}

.create-question .answer-div {
    width: 100%;
    height: auto;
    border: 1px solid #000;
    display: inline-flex;
    justify-content: space-between;
    border-radius: 5px;
    padding: 0 1rem;
    margin: 1rem 0 0 0;
}

.create-question .answer-div label {
    color: #000;
    font-size: 1.1rem;
}

.create-question .answer-div label span {
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
}

.create-question .answer-div input {
    transform: scale(2);
}

.add-another-question .add-anoter-question-btn {
    width: 100%;
    height: auto;
    border: 1px solid #000;
}

.add-another-question .bottom-question-btn {
    width: 100%;
    height: auto;
    border: 2px solid #000;
    display: inline;
    font-size: 1rem;
}

@media only screen and (max-width:768px) {
    .add-another-question .bottom-question-btn {
        display: block;
        margin-bottom: 0.5rem;
    }
}

.add-another-question .bottom-question-btn .bi-arrow-counterclockwise {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffc000;
}

.add-another-question .bottom-question-btn .bi-arrow-clockwise {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0070c0;
}

.add-another-question .bottom-question-btn .bi-x-circle {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgb(188, 10, 10);
}

/* //////////////////////////////////////////////////////////
  //// True False Question Section */

.true-false-create-question .container {
    background-color: #fff2cc;

}

.true-false-create-question .true-false-question .input-group {
    margin-top: 1rem;
    border: 1px solid #000;
}

.true-false-create-question .true-false-question .input-group-prepend span,
.true-false-create-question .true-false-question .input-group input,
.true-false-create-question .true-false-question .input-group .input-group-text {
    background-color: transparent;
    border: none;
}

.true-false-create-question .true-false-question .input-group {
    margin-top: 1rem;
}

.true-false-create-question .true-false-question .input-group input[type=radio] {
    transform: scale(1.5);
    margin-left: 6px;
}


/* //////////////////////////////////////////////////////////
  //// True False Question Section */
.essay-create-question {}

.essay-create-question .input-group span,
.essay-create-question .input-group input,
.essay-create-question .input-group textarea {
    border: none;
    background-color: transparent;
}

.essay-create-question .input-group textarea:active,
.essay-create-question .input-group textarea:focus {
    box-shadow: none;
}

.essay-create-question .input-group {
    border: 1px solid #000;
    background-color: transparent;
}

/*
//////////////////////////////////////////////////////////////
///////////// From Student Test Page Style
//////////////////////////////////////////////////////////////
*/

/* //////////////////////////////////////////////////////////
  //// MCQs Question Section */

.student-instruction-section {
    margin: 2rem 0 0 0;
}

.student-instruction-section input {
    border: 1px solid #000;
}

.student-instruction-section input:active,
.student-instruction-section input:focus {
    border: 1px solid #000;
    box-shadow: none;
}

.student-instruction-section .guidline-btn {
    color: rgb(0, 8, 255);
    border: 1px solid #000;
    text-decoration: none;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 0.5rem 0;
}

.mcqs-qestion-section {}

.mcqs-qestion-section .question-div {
    margin: 0.5rem 0;

}

.mcqs-qestion-section a {
    width: 100%;
    height: auto;
    text-decoration: none;
    border: 1px solid #000;
    color: #000;
    font-size: 1rem;
}

.mcqs-qestion-section a span {
    color: #000;
    font-size: 1rem;
}

.student-test-submit {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #f96902;
    background-image: linear-gradient(#fff 3%, #fcce8e 20%, #f96902 50%);
    color: rgb(255, 255, 255);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}


/* //////////////////////////////////////////////////////////
  //// MCQs Answer Section */

.mcqs-answer-section {
    margin: 1rem 0 0 0;
}

.mcqs-answer-section .container-top {
    background-color: #fff2cc;
}

.mcqs-answer-section a {
    width: 100%;
    height: auto;
    text-decoration: none;
    border: 1px solid #000;
    color: #000;
    font-size: 1.1rem;
    background-color: transparent;
}

.mcqs-answer-section a span {
    font-size: 1.2rem;
    font-weight: 700;
}

.mcqs-answer-section .answer-div {
    width: 100%;
    height: auto;
    border: 1px solid #000;
    display: inline-flex;
    justify-content: space-between;
    border-radius: 5px;
    padding: 0 1rem;
    margin: 1rem 0 0 0;
}

.mcqs-answer-section .answer-div label {
    color: #000;
    font-size: 1.1rem;
}

.mcqs-answer-section .answer-div label span {
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
}

.mcqs-answer-section .answer-div input {
    transform: scale(2);
}

.save_and_continue_btn button {
    background-color: rgb(0, 0, 0, 0.1);
    border: 1px solid #000;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.save_and_continue_btn button i {
    color: #2b9806;
    font-size: larger;
}

/* //////////////////////////////////////////////////////////
  //// True False Section */

.true-false-qestion-section {
    /* margin: 10rem 0; */
}

.true-false-qestion-section .question-div {}

.true-false-qestion-section .question-div label {
    width: 100%;
    height: auto;
    text-decoration: none;
    border: 1px solid #000;
    color: #000;
    font-size: 1rem;
    background-color: transparent;
}

.true-false-qestion-section .question-div label span {
    font-size: 1rem;
    font-weight: 700;
}

.true-false-qestion-section .answer-div input {
    transform: scale(2);
}

.true-false-qestion-section .answer-div label {
    font-size: 1.4rem;
    font-weight: 500;
}

/* //////////////////////////////////////////////////////////
  //// Video Answer Section */

.video-answer-section {}

.video-answer-section a {
    height: auto;
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    background-color: #ffc000;
    padding: 0.3rem 0.5rem;
}

.video-answer-section label span {
    font-size: 1.2rem;
    font-weight: 700;
}

.video-answer-section .answer-div {
    width: 100%;
    height: auto;
    border: 1px solid #000;
    display: inline-flex;
    justify-content: space-between;
    border-radius: 5px;
    padding: 0.3rem 0.3rem 0.3rem 1rem;
    margin: 1rem 0 0 0;
}

.video-answer-section .answer-div label {
    color: #000;
    font-size: 1.1rem;
}

.video-answer-section .answer-div label span {
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
}


/* //////////////////////////////////////////////////////////
  //// Audio Question Answer Section */

.audio-answer-section {}

.audio-answer-section .answer-div {
    width: 100%;
    height: auto;
    border: 1px solid #000;
    display: inline-flex;
    justify-content: space-between;
    border-radius: 5px;
    padding: 0.3rem 0.3rem 0.3rem 1rem;
    margin: 1rem 0 0 0;
}

.audio-answer-section .answer-div label {
    color: #000;
    font-size: 1.1rem;
}

.audio-answer-section .answer-div label span {
    color: #000;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Audio player  */

.audio-answer-section .audio-player audio {
    max-height: 100%;
    max-width: 100%;
    margin: auto;
    object-fit: contain;
}

/* Audio Record Control Buttons  */
.audio-answer-section .recording-control-btn {
    display: flex;
    flex-direction: row;
}

.audio-answer-section .recording-control-btn a {
    background-color: #4fcc5f;
    color: #fff;
    padding: 0.3rem 0.5rem;
    margin: 0.3rem;
    font-size: 0.8rem;
    text-decoration: none;
    border-radius: 3px;
    height: 50px;
}

.audio-answer-section .recording-control-btn .lightcolor {
    background-color: #8cdd97;
    color: #000;
    padding: 0.3rem 0.5rem;
    margin: 0.3rem;
    font-size: 0.8rem;
    text-decoration: none;
    height: 50px;
}

/* Audio File Upload  */
.audio-answer-section .upload-audio-file .form-group {
    font-size: 0.9rem;
}

.audio-answer-section .upload-audio-file .form-group input[type=file] {
    color: #000;
    border: 2px solid rgb(0, 0, 0, 0.2);
    padding: 0.2rem;
    width: 100%;
    border-radius: 5px;
}

/* process Buttons  */
.audio-answer-section .process-question-btn {
    width: 95px;
    height: 70px;
    border: 1px solid #000;
    display: inline-flex;
    font-size: 0.8rem;
    text-align: left;
}

@media only screen and (max-width:768px) {
    .audio-answer-section .process-question-btn {
        margin-bottom: 0.5rem;
    }
}

@media only screen and (max-width:480px) {

    .audio-answer-section .recording-control-btn a,
    .audio-answer-section .recording-control-btn .lightcolor {
        font-size: 0.7rem;
        margin: 0.1rem;
        height: 40px;
    }

    .audio-answer-section .process-question-btn {
        width: 90px;
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
}

.audio-answer-section .process-question-btn .bi-arrow-counterclockwise {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffc000;
}

.audio-answer-section .process-question-btn .bi-arrow-clockwise {
    font-size: 1.7rem;
    font-weight: 700;
    color: #0070c0;
}

.audio-answer-section .process-question-btn .bi-x-circle {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(188, 10, 10);
}

/* //////////////////////////////////////////////////////////
  //// Instruction for Question paper Section */

.question-paper-intruction {}

.question-paper-intruction .label1 {
    background-color: #4da7ff;
    font-size: 1.1rem;
    font-weight: 600;
}

.question-paper-intruction .label2 {
    border: 1px solid #000;
    font-size: 1.1rem;
    font-weight: 600;
}

.question-paper-intruction .table .table-head {
    background-color: #8200ff;
    color: #fff;
}

.question-paper-intruction .table .table-content {}

.multi-question-paper .question-paper {
    /* line-height: 10px; */

}

.multi-question-paper .question-paper-detail p {
    font-size: 1.2rem;
    line-height: 15px;
}

.multi-question-paper .question-paper-detail p span {
    font-size: 1.2rem;
    font-weight: 600;
}

.multi-question-paper .question-paper p {
    font-size: 1.1rem;
}

.multi-question-paper .question-paper p span {
    font-size: 1.1rem;
    font-weight: 600;
}

.multi-question-paper .question-paper li {
    font-size: 1rem;
    list-style: none;
    /* margin: 0 0 0 2rem; */
}

.multi-question-paper .question-paper li span {
    font-size: 1rem;
    font-weight: 600;
}

.multi-question-paper .answer-sheet {}

.multi-question-paper .answer-sheet .answer-div {
    width: 100%;
    height: auto;
    /* border: 1px solid #000; */
    display: inline-flex;
    justify-content: space-around;
    padding: 0 0.5rem;
    margin: 0.4rem 0 0 0;
}

/* .multi-question-paper .answer-sheet .answer-div label {
    color: #000;
    font-size: 1.1rem;
} */

.multi-question-paper .answer-sheet .answer-div label span {
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
}

/* .multi-question-paper .answer-sheet .answer-div input {
    transform: scale(2);
    margin: 0 0.5rem;
} */


/* //////////////////////// */
.multi-question-paper .answer-sheet ul {
    padding: 0;
    margin: 0;
    clear: both;
}

.multi-question-paper .answer-sheet li {
    list-style-type: none;
    list-style-position: outside;
    padding: 0 10px;
    float: left;
}

.multi-question-paper .answer-sheet input[type="checkbox"]:not(:checked),
.multi-question-paper .answer-sheet input[type="checkbox"]:checked {
    position: absolute;
    left: -9999%;
}

.multi-question-paper .answer-sheet input[type="checkbox"]+label {
    display: inline-block;
    padding: 0 7px;
    cursor: pointer;
    border: 2px solid black;
    color: black;
    background-color: white;
    /* margin-bottom: 10px; */
}

.multi-question-paper .answer-sheet input[type="checkbox"]:checked+label {
    border: 2px solid black;
    color: white;
    background-color: #4472c4;
}



/* process Buttons  */
.multi-question-paper .process-question-btn {
    width: 100%;
    height: fit-content;
    border: 1px solid #000;
    display: flex;
    flex-direction: row;
    font-size: 1.1rem;
    margin: 0 0.5rem 0 0;
}

@media only screen and (max-width:768px) {
    .multi-question-paper .process-question-btn {
        margin-bottom: 0.5rem;
    }
}

@media only screen and (max-width:480px) {

    .multi-question-paper .process-question-btn {
        width: 100%;
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
}

.multi-question-paper .process-question-btn .bi-arrow-clockwise {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0070c0;
}

.multi-question-paper .process-question-btn .bi-x-circle {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(188, 10, 10);
}



/* //////////////////////////////////////////////////////////
  //// Instruction for Question paper Section */

.true-false-question-paper .question-paper-detail p {
    font-size: 1.2rem;
    line-height: 15px;
}

.true-false-question-paper .question-paper-detail p span {
    font-size: 1.2rem;
    font-weight: 600;
}

.true-false-question-paper .question-paper p {
    font-size: 1.1rem;
}

.true-false-question-paper .question-paper p span {
    font-size: 1.1rem;
    font-weight: 600;
}

.true-false-question-paper .question-paper li {
    font-size: 1rem;
    list-style: none;
    /* margin: 0 0 0 2rem; */
}

.true-false-question-paper .question-paper li span {
    font-size: 1rem;
    font-weight: 600;
}

.true-false-question-paper .answer-sheet {}

.true-false-question-paper .answer-sheet .answer-div {
    width: 100%;
    height: auto;
    /* border: 1px solid #000; */
    display: inline-flex;
    justify-content: space-around;
    padding: 0 0.5rem;
    margin: 0.4rem 0 0 0;
}

/* .multi-question-paper .answer-sheet .answer-div label {
  color: #000;
  font-size: 1.1rem;
} */

.true-false-question-paper .answer-sheet .answer-div label span {
    color: #000;
    font-size: 1.2em;
    font-weight: 600;
}

/* .multi-question-paper .answer-sheet .answer-div input {
  transform: scale(2);
  margin: 0 0.5rem;
} */



/* ///////////Radio Box///////////// */
.true-false-question-paper .answer-sheet ul {
    padding: 0;
    margin: 0;
    clear: both;
}

.true-false-question-paper .answer-sheet li {
    list-style-type: none;
    list-style-position: outside;
    padding: 0 10px;
    float: left;
}

.true-false-question-paper .answer-sheet input[type="radio"]:not(:checked),
.true-false-question-paper .answer-sheet input[type="radio"]:checked {
    position: absolute;
    left: -9999%;
}

.true-false-question-paper .answer-sheet input[type="radio"]+label {
    display: inline-block;
    padding: 0 5px;
    cursor: pointer;
    border: 2px solid black;
    color: white;
    background-color: white;
    font-size: 12px;
    /* margin-bottom: 10px; */

    /* width: 20px;
    height: 20px;
    content: " "; */
}

.true-false-question-paper .answer-sheet input[type="radio"]:checked+label {
    border: 2px solid black;
    color: #4472c4;
    background-color: #4472c4;
}

/* process Buttons  */
.true-false-question-paper .process-question-btn {
    width: 100%;
    height: fit-content;
    border: 1px solid #000;
    display: flex;
    flex-direction: row;
    font-size: 1.1rem;
    margin: 0 0.5rem 0 0;
}

@media only screen and (max-width:768px) {
    .true-false-question-paper .process-question-btn {
        margin-bottom: 0.5rem;
    }
}

@media only screen and (max-width:480px) {

    .true-false-question-paper .process-question-btn {
        width: 100%;
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
}

.true-false-question-paper .process-question-btn .bi-arrow-clockwise {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0070c0;
}

.true-false-question-paper .process-question-btn .bi-x-circle {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(188, 10, 10);
}

/* //////////////////////////////////////////////////////////
  //// Dropdown Question Section */

.dropdown-create-question {}

.dropdown-create-question .container {
    background-color: #fff2cc;
}

.dropdown-create-question .true-false-question .input-group {
    margin-top: 1rem;
    border: 1px solid #000;
}

.dropdown-create-question .true-false-question .input-group-prepend span,
.dropdown-create-question .true-false-question .input-group input,
.dropdown-create-question .true-false-question .input-group .input-group-text,
.dropdown-create-question .true-false-question select {
    background-color: transparent;
    border: none;
}

.dropdown-create-question .true-false-question select {
    border: 1px solid #000;
    border-radius: 0;
}

.dropdown-create-question .true-false-question select option {
    background-color: rgb(255, 255, 255);
    margin: 2rem 0;
    font-size: 1rem;
}

.dropdown-create-question .true-false-question select:focus {
    box-shadow: none;
}

.dropdown-create-question .true-false-question .input-group {
    margin-top: 1rem;
}

.dropdown-create-question .true-false-question .input-group input[type=radio] {
    transform: scale(1.5);
    margin-left: 6px;
}

.dropdown-create-question .true-false-question .input-group input[type=checkbox] {
    transform: scale(1.5);
    margin-left: 6px;
}

.cluster-page {
    margin-top: 2rem;

}

.cluster-page .cluster-course-detail {
    background-color: #fff;
    min-height: 3rem;
    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.3);
}

.cluster-page .cluster-course-detail .course-title-section {
    background-color: #fff;
    color: #FFE455;
    padding: 1rem 1rem;
}

.cluster-page .cluster-course-detail .course-title-section h2 {
    background-color: #fff;
    color: #FFE455;
    /* padding: 1rem 1rem; */
    font-weight: 700;
    font-size: 2.5rem;
}

.cluster-page .cluster-course-detail .course-detail-section {
    background-color: rgb(55, 19, 148);
    color: #fff;
    padding: 1rem 1rem;
}

.cluster-page .cluster-course-detail .course-detail-section .input-group {
    color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 2px #8da9c4;
}

.cluster-page .cluster-course-detail .course-detail-section .input-group .input-group-append {
    background-color: transparent;
}

.cluster-page .cluster-course-detail .course-detail-section .input-group label {
    background-color: transparent;
}


.cluster-page .cluster-course-detail .course-detail-section .price-box {
    color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 2px #8da9c4;
}

.cluster-page .cluster-course-detail .course-detail-section .price-box .course-price {
    background-color: #fff;
    color: #0016DE;
    width: 100%;
    border-radius: 0;
    font-weight: 700;
}

.cluster-page .cluster-course-detail .course-detail-section .price-box .price-value {
    background-color: transparent;
    color: #fff;
    border-radius: 0;
}

/* //////Anamated Text////// */

@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap');

.cluster-page .waviy {
    position: relative;
    -webkit-box-reflect: below -10px linear-gradient(transparent, rgba(0, 0, 0, .2));
    font-size: 18px;
}

.cluster-page .waviy span {
    font-family: 'Alfa Slab One', cursive;
    position: relative;
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    animation: waviy 1.5s infinite;
    animation-delay: calc(.1s * var(--i));

}

@keyframes waviy {

    0%,
    40%,
    100% {
        transform: translateY(0)
    }

    20% {
        transform: translateY(-10px)
    }
}

/* //////////////////////////////////////////////////////////
  //// Cluster Section */

  .cluster-page {
      margin-top: 2rem;

  }

  .cluster-page .cluster-course-detail {
      background-color: #fff;
      min-height: 3rem;
      box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.3);
  }

  .cluster-page .cluster-course-detail .course-title-section {
      background-color: #fff;
      color: #FFE455;
      padding: 1rem 1rem;
  }

  .cluster-page .cluster-course-detail .course-title-section h2 {
      background-color: #fff;
      color: #FFE455;
      font-weight: 700;
      font-size: 2.5rem;
  }

  .cluster-page .cluster-course-detail .course-detail-section {
      background-color: rgb(55, 19, 148);
      color: #fff;
      padding: 1rem 1rem;
  }

  .cluster-page .cluster-course-detail .course-detail-section .input-group {
      color: #fff;
      border-radius: 5px;
      box-shadow: 0px 0px 5px 2px #8da9c4;
  }

  .cluster-page .cluster-course-detail .course-detail-section .input-group .input-group-append {
      background-color: transparent;
  }

  .cluster-page .cluster-course-detail .course-detail-section .input-group label {
      background-color: transparent;
  }


  .cluster-page .cluster-course-detail .course-detail-section .price-box {
      color: #fff;
      border-radius: 5px;
      box-shadow: 0px 0px 5px 2px #8da9c4;
  }

  .cluster-page .cluster-course-detail .course-detail-section .price-box .course-price {
      background-color: #fff;
      color: #0016DE;
      width: 100%;
      border-radius: 0;
      font-weight: 700;
  }

  .cluster-page .cluster-course-detail .course-detail-section .price-box .price-value {
      background-color: transparent;
      color: #fff;
      border-radius: 0;
  }

  /* //////Anamated Text////// */

  @import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap');

  .cluster-page .waviy {
      position: relative;
      -webkit-box-reflect: below -10px linear-gradient(transparent, rgba(0, 0, 0, .2));
      font-size: 18px;
  }

  .cluster-page .waviy span {
      font-family: 'Alfa Slab One', cursive;
      position: relative;
      display: inline-block;
      color: #fff;
      text-transform: uppercase;
      animation: waviy 1.5s infinite;
      animation-delay: calc(.1s * var(--i));

  }

  @keyframes waviy {

      0%,
      40%,
      100% {
          transform: translateY(0)
      }

      20% {
          transform: translateY(-10px)
      }
  }

  /* //////////////////////////////////////////////////////////
    //// Cluster Section */

  .cluster-page .cluster-row {
      background-color: #fff;
      min-height: 4rem;
      border-radius: 10px;
      box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.3);
  }

  .cluster-page .cluster-row .cluster-Name {
      background-color: #5f9ea0;
      background-image: linear-gradient(to bottom, #0ff, #1e90ff);
      border-radius: 5px 0 0 5px;
  }

  .cluster-page .cluster-row .cluster-Name p {
      font-weight: 600;
      color: #555;
  }

  .cluster-page .cluster-row .cluster-Name h2 {
      font-weight: 800;
      color: #000;
      font-size: 1.8rem;
  }

  .cluster-page .cluster-row .cluster-detail {
      background-color: #fff;
      border-radius: 0 5px 5px 0;
  }

  @media only screen and (max-width:768px) {
      .cluster-page .cluster-row {
          min-height: 2rem;
      }
      .cluster-page .cluster-row .cluster-Name {
          background-color: #92d050;
          border-radius: 5px 5px 0 0;
      }

      .cluster-page .cluster-row .cluster-detail {
          background-color: #fff;
          border-radius: 0 0 5px 5px;
      }

      .cluster-page .cluster-row .cluster-Name h2 {
          font-size: 1.5rem;
      }
  }


  *,
  *:before,
  *:after {
      -webkit-box-sizing: inherit;
      -moz-box-sizing: inherit;
      box-sizing: inherit;
  }

  .cluster-page .meter {
      background: #ccc;
      -webkit-border-radius: 25px;
      -moz-border-radius: 25px;
      border-radius: 25px;
      box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
      display: block;
      height: 20px;
      margin-bottom:5px;
      padding: 2px;
      position: relative;
  }

  .cluster-page .meter>span {
      display: block;
      height: 100%;
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px;
      border-top-left-radius: 20px;
      border-bottom-left-radius: 20px;
      background-color: #2bc253;
      background-image: linear-gradient(to top, #2bc253 37%, #54f054 69%);
      box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3) inset 0 -2px 6px rgba(0, 0, 0, 0.4);
      position: relative;
      overflow: hidden;
      transition: width 2s ease-out;
  }

  .cluster-page .cadetblue>span {
      background-color: #5f9ea0;
      background-image: linear-gradient(to bottom, #0ff, #1e90ff);
  }

  .cluster-page .cluster-row .cluster-detail p {
      color: #555;
      font-weight: 600;
  }

  .cluster-page .cluster-row .cluster-detail .date-box .input-group,
  .cluster-page .cluster-row .cluster-detail .date-box .input-group-prepend,
  .cluster-page .cluster-row .cluster-detail .date-box label,
  .cluster-page .cluster-row .cluster-detail .date-box .input-group-text {
      border: 0;
      background: transparent;
      border-radius: 0;
  }

  .cluster-page .cluster-row .cluster-detail .date-box label {
      border-bottom: 2px solid #000;
  }

  .cluster-page .cluster-row .cluster-detail .cluster-register-btn a {
      padding: .3rem 1rem;
      border-radius: 20px;
      font-weight: 600;
      background-color: #5f9ea0;
      background-image: linear-gradient(to bottom, #0ff, #1e90ff);
      color: #555;
  }

  .cluster-page .cluster-row .cluster-detail .cluster-register-btn a:hover {
      background-color: #009688;
      color: #fff;
      box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
  }


  @media only screen and (max-width:768px) {
      .cluster-page .meter {
          height: 15px;
      }
  }
  .cluster-page .cluster-page-section-bg1 {
      content: "";
      position: absolute;
      min-height: 100%;
      min-width: 95%;
      /*background-image: url(../assets/background-img/Vector\ 35.png);*/
      background-repeat: no-repeat;
      background-position: bottom;
  }
  .cluster-page .cluster-page-section-bg2 {
      content: "";
      position: absolute;
      min-height: 20%;
      min-width: 98%;
      /*background-image: url(../assets/background-img/blue-circle.png);*/
      background-repeat: no-repeat;
      background-position: right;
      box-orient: 0;
  }
  .cluster-page .cluster-page-section-bg3 {
      content: "";
      position: absolute;
      min-height: 60%;
      min-width: 50%;
      /*background-image: url(../assets/background-img/blue-circle.png);*/
      background-repeat: no-repeat;
      background-position: center;
  }
  .cluster-page .cluster-page-section-bg4 {
      content: "";
      position: absolute;
      min-height: 95%;
      min-width: 70%;
      /*background-image: url(../assets/background-img/feature-bg-icon.png);*/
      background-repeat: no-repeat;
      background-position: left;
  }
  .cluster-page .cluster-page-section-bg5 {
      content: "";
      position: absolute;
      min-height: 95%;
      min-width: 95%;
      /*background-image: url(../assets/background-img/Vector\ 27.png);*/
      background-repeat: no-repeat;
      background-position: right;
  }

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link,
.card-table .pagination li a {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #333;
  background-color: #fff;
  border: 1px solid #e3ebf6;
}

.page-link:hover,
.card-table .pagination li a:hover {
  z-index: 2;
  color: #0d0d0d;
  text-decoration: none;
  background-color: #edf2f9;
  border-color: #e3ebf6;
}

.page-link:focus,
.card-table .pagination li a:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0rem #212529;
}

.page-item:first-child .page-link,
.page-item:first-child .card-table .pagination li a,
.card-table .pagination li .page-item:first-child a,
.card-table .pagination li:first-child .page-link,
.card-table .pagination li:first-child a {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link,
.page-item:last-child .card-table .pagination li a,
.card-table .pagination li .page-item:last-child a,
.card-table .pagination li:last-child .page-link,
.card-table .pagination li:last-child a {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link,
.page-item.active .card-table .pagination li a,
.card-table .pagination li .page-item.active a,
.card-table .pagination li.active .page-link,
.card-table .pagination li.active a {
  z-index: 3;
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}

.page-item.disabled .page-link,
.page-item.disabled .card-table .pagination li a,
.card-table .pagination li .page-item.disabled a,
.card-table .pagination li.disabled .page-link,
.card-table .pagination li.disabled a {
  color: #95aac9;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #e3ebf6;
}

.pagination-lg .page-link,
.pagination-lg .card-table .pagination li a,
.card-table .pagination li .pagination-lg a {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link,
.pagination-lg .page-item:first-child .card-table .pagination li a,
.card-table .pagination li .pagination-lg .page-item:first-child a,
.pagination-lg .card-table .pagination li:first-child .page-link,
.pagination-lg .card-table .pagination li:first-child a,
.card-table .pagination .pagination-lg li:first-child .page-link,
.card-table .pagination .pagination-lg li:first-child a {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link,
.pagination-lg .page-item:last-child .card-table .pagination li a,
.card-table .pagination li .pagination-lg .page-item:last-child a,
.pagination-lg .card-table .pagination li:last-child .page-link,
.pagination-lg .card-table .pagination li:last-child a,
.card-table .pagination .pagination-lg li:last-child .page-link,
.card-table .pagination .pagination-lg li:last-child a {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link,
.pagination-sm .card-table .pagination li a,
.card-table .pagination li .pagination-sm a {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link,
.pagination-sm .page-item:first-child .card-table .pagination li a,
.card-table .pagination li .pagination-sm .page-item:first-child a,
.pagination-sm .card-table .pagination li:first-child .page-link,
.pagination-sm .card-table .pagination li:first-child a,
.card-table .pagination .pagination-sm li:first-child .page-link,
.card-table .pagination .pagination-sm li:first-child a {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link,
.pagination-sm .page-item:last-child .card-table .pagination li a,
.card-table .pagination li .pagination-sm .page-item:last-child a,
.pagination-sm .card-table .pagination li:last-child .page-link,
.pagination-sm .card-table .pagination li:last-child a,
.card-table .pagination .pagination-sm li:last-child .page-link,
.card-table .pagination .pagination-sm li:last-child a {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.course-request-model .modal-content{
    background-color: #4472c4;
    border-radius: 40px;
    border: none;
    padding: 15px 0;
}
.course-request-model .modal-content .modal-header{
    border: none;
}
.course-request-model .modal-content .modal-header .course-title{
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

.course-request-model .modal-content .modal-header .course-title2{
    font-size: 1.1rem;
}

.course-request-model .modal-content .modal-body .date-box .input-group,
.course-request-model .modal-content .modal-body .date-box .input-group-prepend,
.course-request-model .modal-content .modal-body .date-box label,
.course-request-model .modal-content .modal-body .date-box .input-group-text {
    border: 0;
    background: transparent;
    border-radius: 0;
    color: #fff;
    font-weight: normal;
}

.course-request-model .modal-content .modal-body .content-field input::-webkit-outer-spin-button,
.course-request-model .modal-content .modal-body .content-field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.course-request-model .modal-content .modal-body .content-field input[type=number] {
  -moz-appearance: textfield;
}

.course-request-model .modal-content .modal-body .date-box label {
    border: 2px solid #FF922D;
}

.course-request-model .modal-content .modal-body .content-field input{
    border: 2px solid #FF922D;
    border-radius: 0;
    background-color: transparent;
    color: #fff;
    margin: 12px 0;
}
.course-request-model .modal-content .modal-body .content-field textarea{
    border: 2px solid #FF922D;
    border-radius: 0;
    background-color: transparent;
    color: #fff;
    margin: 12px 0;
}
.course-request-model .modal-content .modal-body .content-field .request-message {
    margin: 0 0 12px 0;
    width: 100%;
    font-weight: 400;
    display: block;
}
.course-request-model .modal-content .modal-body .content-field button {
    border-radius: 0;
    background-color: #00b0f0;
    color: #fff;
}

.course-request-model .modal-content .modal-body .content-field input::placeholder {
    color: #fff;
}

.expertCaptcha div {
  padding: 0.3rem 2.3rem;
}
.package-selection .card .card-title {
    font-size: 16px;
    font-weight: 700;
    color: rgba(26, 143, 227);
}

.package-selection .card .card-text {
    font-size: 14px;
}

.package-selection .card .card-text a {
    font-size: 14px;
}

.package-selection .card .btn {
    box-shadow: none;
}

.package-selection .card .border-left-right {
    border-left: 2px solid #ECECEC;
    border-right: 2px solid #ECECEC;
}

.package-selection .card .border-left {
    border-left: 2px solid #ECECEC;
}

@media only screen and (max-width: 575px) {
    .package-selection .card .card-title {
        font-size: 14px;
    }

    .package-selection .card h6.card-subtitle {
        font-size: 14px;
    }

    .package-selection .card .card-text {
        font-size: 14px;
    }
}

@media only screen and (max-width: 768px) {
    .package-selection .card .border-left-right {
        border-left: 0;
        border-right: 2px solid #ECECEC;
    }

    .package-selection .card .border-left {
        border-left: 0;
    }
}

/* =======User Profile Section======= */

/* ----------------------------------------------------------------------------------------- */
/* My Profile section */
.userProfile .profile-header-img img {
    max-width: 100%;
}

.userProfile .profile-header {
    position: relative;
    overflow: hidden;
}

.userProfile .profile-header .media-section .card .card-header span {
    font-size: 14px;
    font-weight: 600;
}

.userProfile .profile-header .media-section video {
    height: 120px;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.20);
    -webkit-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.20);
    -o-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.20);
}

.userProfile .profile-header .media-section audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-panel {
    background-color: var(--white-color);
    padding: 0px;
    height: 20px;
}

.userProfile .profile-header .media-section audio::-webkit-media-controls-panel {
    margin: 0 auto;
    height: 20px;
}

.userProfile .profile-header audio {
    height: 20px;
    padding: 0px;
}


/* .userProfile .profile-header .profile-header-cover {
    background-size: 100% auto;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.userProfile .profile-header .profile-header-cover:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white-color);
} */

.userProfile .profile-header .profile-header-content,
.userProfile .profile-header .profile-header-tab,
.userProfile .profile-header-img,
.userProfile .fc-icon {
    position: relative;
}

.userProfile .profile-header .profile-header-tab {
    background: var(--primary-color);
    list-style-type: none;
    margin: 0.25rem 0 0;
    padding: 0 0 0 8.75rem;
    white-space: nowrap;
    height: 35px;
}

.userProfile .profile-header .profile-header-tab>li {
    display: inline-block;
    margin: 0;
}

.userProfile .profile-header .profile-header-tab>li>a {
    display: block;
    color: var(--gray-color);
    line-height: 1.25rem;
    padding: 0.58rem 1rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    border: none;
}

.userProfile .profile-header .profile-header-tab>li.active>a,
.userProfile .profile-header .profile-header-tab>li>a.active {
    color: var(--white-color);
    border-bottom: 2px solid var(--white-color);
}

.userProfile .profile-header .profile-header-content:after,
.userProfile .profile-header .profile-header-content:before {
    content: "";
    display: table;
    clear: both;
}

.userProfile .profile-header .profile-header-content {
    color: var(--white-color);
    padding: 1.25rem;
}

.userProfile .fc th a,
.userProfile .fc-ltr .fc-basic-view .fc-day-top .fc-day-number,
.userProfile .fc-widget-header a {
    color: var(--black-color);
}

.userProfile .profile-header-img {
    float: left;
    width: 7.5rem;
    height: 9.5rem;
    overflow: hidden;
    z-index: 10;
    margin: 0 1.25rem -1.25rem 0;
    padding: 0.1875rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    border-radius: 0.25rem;
    background: transparent;
}

.userProfile .profile-header-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.3125rem;
    color: var(--black-color);
}

.userProfile .profile-header-info p {
    color: var(--black-color);
    font-size: 13px;
}

.userProfile .profile-header-info p i {
    color: var(--secondary-color);
    font-size: 13px;
}

.userProfile .profile-header-info .button-group button {
    font-size: 12px;
    padding: 0;
    width: 25px;
    height: 25px;
    background-color: var(--gray-color);
    border: 0;
}

.userProfile .profile-header-info .button-group button a {
    color: var(--secondary-color);
}

.userProfile .profile-container {
    padding: 1.5625rem;
}

@media (max-width: 967px) {
    .userProfile .profile-header-img {
        width: 7rem;
        height: 9rem;
        margin: 0;
    }

    .userProfile .profile-header-info {
        margin-left: 2.5625rem;
        padding-bottom: 0.2375rem;
    }

    .userProfile .profile-header .profile-header-content {
        color: var(--white-color);
        padding: 1.25rem 1.25rem 0.25rem 1.25rem;
    }

    .userProfile .profile-header .profile-header-tab {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    /* .userProfile .profile-header .profile-header-cover {
        background-position: top;
    } */

    .userProfile .profile-header-img {
        width: 5.75rem;
        height: 6.75rem;
        margin: 0;
    }

    .userProfile .profile-header-info {
        margin-left: 2.6875rem;
        padding-bottom: 0.3375rem;
    }

    .userProfile .profile-header .profile-header-content {
        padding: 1.25rem .2rem 0.25rem .2rem;
    }

    .userProfile .profile-header-info h4 {
        margin: 0 0 0.3125rem;
    }

    .userProfile .profile-header .profile-header-tab {
        /* white-space: nowrap;
        overflow: scroll; */
        padding: 0;
    }

    .userProfile .profile-header .media-section {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .userProfile .profile-header-info {
        margin-left: 2.6875rem;
        padding-bottom:  0.2375rem;
        margin-bottom: 0px;
    }

    .userProfile .profile-header .profile-header-content {
        padding: 1.25rem .2rem 0.25rem .3rem;
    }

    .userProfile .profile-header .profile-header-tab>li>a {
        padding: 0.625rem 0.5rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 375px) {
    .userProfile .profile-header .profile-header-tab>li>a {
        padding: 0.625rem 0.3rem;
        font-size: 0.65rem;
    }

    .userProfile .profile-header audio {
        height: 20px;
        padding: 0px;
        width: 100%;
    }
}


/* =========Profile Body========== */
.userProfile .profile-body {
    height: 60vh;
    overflow: auto;
}

/*----- User Profile PDP ------*/

.userProfile .pdp-creation-steps .card {
    background-color: var(--white-color);
}

.userProfile .pdp-creation-steps .card {
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.20);
    -webkit-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.20);
    -o-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.20);
}

.userProfile .pdp-creation-steps .card:hover {
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.20);
}

.userProfile .pdp-creation-steps .pdp-item {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.userProfile .pdp-creation-steps .pdp-item:last-child {
    border-bottom: none;
}

.userProfile .pdp-creation-steps .pdp-item .pdp-image-box {
    width: 40px;
    height: 40px;
    align-items: center;
    display: flex;
}

.userProfile .pdp-creation-steps .pdp-item .pdp-item-image {
    object-fit: contain;
    width: 35px;
}

.userProfile .pdp-creation-steps .pdp-item .pdp-item-content {
    margin-left: 20px;
}

.userProfile .pdp-creation-steps .pdp-item .pdp-item-content h4 {
    margin: 0;
}

.userProfile .pdp-creation-steps .pdp-item .pdp-item-content h4 {
    left: calc(40% - 12px);
    top: calc(50% - 12px);
    position: absolute;
    font-size: 14px;
    color: var(--black-color);
}

@media only screen and (max-width:992px) {
    .userProfile .pdp-creation-steps .pdp-item .pdp-image-box {
        width: 30px;
        height: 30px;
        align-items: center;
        display: flex;
    }

    .userProfile .pdp-creation-steps .pdp-item .pdp-item-image {
        width: 30px;
    }

    .userProfile .pdp-creation-steps .pdp-item .pdp-item-content h4 {
        left: calc(50% - 12px);
        top: calc(60% - 12px);
        position: absolute;
        font-size: 13px;
    }
}

@media only screen and (max-width:575px) {
    .userProfile .profile-body {
        height: auto;
    }

    .userProfile .pdp-creation-steps .pdp-item .pdp-item-content h4 {
        left: calc(40% - 12px);
        top: calc(50% - 12px);
        position: absolute;
        font-size: 12px;
    }
}

@media only screen and (max-width:375px) {

    .userProfile .pdp-creation-steps .pdp-item .pdp-image-box {
        width: 25px;
        height: 25px;
        align-items: center;
        display: flex;
    }

    .userProfile .pdp-creation-steps .pdp-item .pdp-item-image {
        width: 25px;
    }

    .userProfile .pdp-creation-steps .pdp-item .pdp-item-content h4 {
        left: calc(45% - 12px);
        top: calc(55% - 12px);
        position: absolute;
        font-size: 12px;
    }
}

/* ==================================================================================
 Knowledge Center Styling Code Start  
-----------------------------------------*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#knowledge-hero {
    width: 100%;
    position: relative;
    margin-top: 87px;
    padding: 35px 0 30px 0;
}

#knowledge-hero .hero-img .card-img-overlay h2 {
    font-weight: 800;
    font-size: 36px;
    margin-bottom: 0px;
    letter-spacing: 2px;
    color: #066CBF;
}

#knowledge-hero .hero-img .card-img-overlay p {
    font-size: 12px;
    margin-top: -5px;
}

#knowledge-hero .hero-info h2 {
    color: #000;
    margin-bottom: 15px;
    font-size: 42px;
    font-weight: 700;
}

#knowledge-hero .hero-info .page-info {
    margin-bottom: 25px;
    color: #000;
}

#knowledge-hero .hero-info .page-info h3 {
    color: #066CBF;
    font-weight: 800;
}

#knowledge-hero .hero-info .page-info p {
    color: gray;
}

#knowledge-hero .hero-info .btn-main-page,
#knowledge-hero .hero-info .btn-resources {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 24px;
    border-radius: 10px;
    transition: 0.5s;
    margin: 0 20px 20px 0;
    color: #fff;
}

#knowledge-hero .hero-info .btn-main-page {
    background: #066CBF;
    color: #fff;
}

#knowledge-hero .hero-info .btn-resources {
    box-shadow: 0 .3rem 1rem rgba(0, 0, 0, .15);
    -webkit-box-shadow: 0 .3rem 1rem rgba(0, 0, 0, .15);
    -o-box-shadow: 0 .3rem 1rem rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 .3rem 1rem rgba(0, 0, 0, .15);
    color: #000;
}

#knowledge-hero .hero-info .btn-resources:hover {
    background: #066CBF;
    color: #fff;
}

#knowledge-hero .hero-info .breadcrumbs-section {
    margin: 10px 0px 2px 0px;
}

#knowledge-hero .hero-info .breadcrumbs-section .btn {
    color: #000;
    padding: 1px 0px;
    margin-right: 10px;
    font-size: 14px;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    box-shadow: none;
}

#knowledge-hero .hero-info .breadcrumbs-section .btn:hover {
    border-bottom: 2px solid #066CBF;
}

#knowledge-hero .hero-info .breadcrumbs-section .btn i {
    color: #000;
}

@media (max-width: 992px) {
    #knowledge-hero {
        padding: 33px 0 30px 0;
    }

    #knowledge-hero .hero-info h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    #knowledge-hero {
        padding: 30px 0 20px 0;
    }

    #knowledge-hero .hero-info h2 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    #knowledge-hero .hero-info .page-info {
        margin-bottom: 15px;
        color: #000;
    }
}

@media (max-width: 575px) {
    #knowledge-hero {
        padding: 24px 0 15px 0;
        text-align: center;
    }

    #knowledge-hero .hero-info h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    #knowledge-hero .hero-info .page-info h3 {
        font-size: 24px;
    }

    #knowledge-hero .hero-info .btn-main-page,
    #knowledge-hero .hero-info .btn-resources {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        display: inline-block;
        padding: 7px 10px;
        margin: 0 10px 10px 0;
    }

    #knowledge-hero .hero-info .breadcrumbs-section {
        margin: 10px 0px 10px 0px;
    }

    #knowledge-hero .hero-info .breadcrumbs-section .btn {
        color: #000;
        padding: 1px 0px;
        margin-right: 5px;
        font-size: 12px;
    }
}


/* ----Advertisement Section----- */
.advertisement-section .card {
    font-weight: 700;
    background-color: #066CBF;
    border-radius: 10px;
}

.advertisement-section .card .card-body h4 {
    font-weight: 700;
    color: #fff;
}

.advertisement-section .card .card-body .course-title {
    color: #fff;
}

.advertisement-section .card .card-body .discount-percentage {
    color: #fff;
    font-weight: 800;
    font-size: 35px;
}

.advertisement-section .card .card-body .discount-percentage span {
    color: #EEC733;
    font-weight: 800;
    font-size: 16px;
}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 480px) {
    .advertisement-section .card .card-body .course-title {
        color: #fff;
        font-size: 12;
    }

    .advertisement-section .card .card-body .discount-percentage {
        color: #fff;
        font-weight: 800;
        font-size: 25px;
    }

    .advertisement-section .card .card-body .discount-percentage span {
        color: #EEC733;
        font-weight: 800;
        font-size: 12px;
    }

}

/* -------------Advertisement End---------- */

/* -------Filter Section------- */
.knowledge-center .filter-section {
    /* margin-top: -5px; */
}

.knowledge-center .filter-section input,
.knowledge-center .filter-section select {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.knowledge-center {
    position: relative;
}

.knowledge-center .heading-row .box h1 {
    font-family: inherit;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: #066CBF;
}

.knowledge-center .heading-row .box span {
    font-weight: 700;
    font-size: 24px;
    color: #EEC733;
}

.knowledge-center .heading-row .box p {
    color: gray;
    font-size: 12px;
}

@media (max-width: 575px) {
    .knowledge-center .heading-row .box h1 {
        font-size: 18px;
    }
    
    .knowledge-center .heading-row .box span {
        font-size: 18px;
    }
}


.knowledge-center .category-section .card {
    border: 1px solid light;
    color: #000;
}

.knowledge-center .category-section .card:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    color: #066CBF;
    border: 1px solid #066CBF;
}

.knowledge-center .courses-section .card:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    border: 1px solid #066CBF;
}

.knowledge-center .courses-section .card:hover .card-text {
    color: #066CBF;
}

.knowledge-center .category-section .card .card-icon img {
    height: 50px;
}

.knowledge-center .category-section .card .card-body h5 {
    font-size: 16px;
}

.knowledge-center .courses-section .card .card-body .card-text {
    font-size: 14px;
    line-height: normal;
}

.knowledge-center .courses-section .card .card-body small span {
    font-size: 12px;
    font-weight: 700;
}

.knowledge-center .courses-section .card .card-body small a {
    color: gray;
}

.knowledge-center .courses-section .card .card-footer a {
    color: #bfbfbf;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.knowledge-center .courses-section .card .card-footer a span {
    color: gray;
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.knowledge-center .courses-section .card .card-footer a.selected {
    color: #066CBF;
}

.knowledge-center .courses-section .card .card-footer .card-price {
    color: #EEC733;
    font-weight: 800;
    font-size: 18px;
}

@media only screen and (max-width: 768px) {
    .knowledge-center .category-section .card .card-body h5 {
        font-size: 14px;
    }

}

@media only screen and (max-width: 575px) {
    .knowledge-center .category-section .card .card-body h5 {
        font-size: 12px;
    }

    .knowledge-center .professional-section .title,
    .knowledge-center .seekers-section .title,
    .knowledge-center .resources-section .title {
        font-size: 22px;
    }
}

/* Professionals  */

.knowledge-center .professionals-section .card:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    border: 1px solid #066CBF;
}

.knowledge-center .professionals-section .card:hover .card-text {
    color: #066CBF;
}

.knowledge-center .professionals-section .card .card-body .card-text {
    font-size: 14px;
    line-height: normal;
}

.knowledge-center .professionals-section .card .card-body small span {
    font-size: 12px;
    font-weight: 700;
}

.knowledge-center .professionals-section .card .card-body small a {
    color: gray;
}

.knowledge-center .professionals-section .card .card-footer a {
    color: #bfbfbf;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.knowledge-center .professionals-section .card .card-footer a span {
    color: gray;
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.knowledge-center .professionals-section .card .card-footer a.selected {
    color: #066CBF;
}

.knowledge-center .professionals-section .card .card-footer .card-price {
    color: #EEC733;
    font-weight: 800;
    font-size: 18px;
}

.knowledge-center .professionals-section .collapse.multi-collapse,
.knowledge-center .seekers-section .collapse.multi-collapse {
    position: relative;
}

.knowledge-center .professionals-section .overlay-content,
.knowledge-center .seekers-section .overlay-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    background-color: white;
    border: 1px solid #ddd;
    border-top: 0;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}

/* Professional  */

.knowledge-center .seekers-section .card:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    border: 1px solid #066CBF;
}

.knowledge-center .seekers-section .card:hover .card-text {
    color: #066CBF;
}

.knowledge-center .seekers-section .card .card-body .card-text {
    font-size: 14px;
    line-height: normal;
}

.knowledge-center .seekers-section .card .card-body small span {
    font-size: 12px;
    font-weight: 700;
}

.knowledge-center .seekers-section .card .card-body small a {
    color: gray;
}

.knowledge-center .seekers-section .card .card-footer a {
    color: #bfbfbf;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.knowledge-center .seekers-section .card .card-footer a span {
    color: gray;
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.knowledge-center .seekers-section .card .card-footer a.selected {
    color: #066CBF;
}

.knowledge-center .seekers-section .card .card-footer .card-price {
    color: #EEC733;
    font-weight: 800;
    font-size: 18px;
}

/*--------------------------------------------------------------
# Resource Materials Page Design
--------------------------------------------------------------*/
.knowledge-center .business-section {
    background-color: #F5F5F5;
}

.knowledge-center .business-section .structure-box {
    border-radius: 6px;
    background: #fff;
    transition: ease-in-out 0.2s;
}

.knowledge-center .business-section .structure-box:hover {
    box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.08);
    -o-box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.08);
    background-color: #066CBF;
    color: #ffff;
}

.knowledge-center .business-section .structure-box:hover a {
    color: #EEC733;
}

/* ---------------  */
.knowledge-center .about-us {
    /* background-image: linear-gradient(to right, #fff 40%, #EEC733 40%); */
}

.knowledge-center .about-us .container {
    background-image: linear-gradient(to right, #fff 40%, #EEC733 40%);
    min-height: 360px;
    display: flex;
    align-items: center;
}

.knowledge-center .about-us .video-box {}

@media only screen and (max-width: 992px) {
    .knowledge-center .about-us .container {
        background-image: linear-gradient(to bottom, #fff 30%, #EEC733 30%);
    }
}

@media only screen and (max-width: 575px) {
    .knowledge-center .about-us .container {
        background-image: linear-gradient(to bottom, #fff 20%, #EEC733 20%);
    }
}

.knowledge-center .about-us .desc-box .title {
    color: #066CBF;
    transition: 0.3s;
    font-weight: 800;
}

.knowledge-center .about-us .desc-box .title a:hover {
    color: #68A4C4;
}

.knowledge-center .about-us .video-box {
    position: relative;
}

.knowledge-center .about-us .video-box img {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* -----------------  */

.knowledge-center .resources-page .reading-section .icon-box {
    background-color: #F5F5F5;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding: 20px;
}

.knowledge-center .resources-page .reading-section .icon-box img {
    width: 60px;
    height: 60px;
}

@media only screen and (max-width: 768px) {
    .knowledge-center .resources-page .reading-section .icon-box {
        background-color: #F5F5F5;
        border-radius: 50%;
        width: 90px;
        height: 90px;
        padding: 20px;
    }

    .knowledge-center .resources-page .reading-section .icon-box img {
        width: 50px;
        height: 50px;
    }
}

@media only screen and (max-width: 575px) {
    .knowledge-center .resources-page .reading-section .icon-box {
        background-color: #F5F5F5;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        padding: 10px;
    }

    .knowledge-center .resources-page .reading-section .icon-box img {
        width: 40px;
        height: 40px;
    }
}

/* ---------------  */
.knowledge-center .faqs-section .m-d.expand-list {
    margin: 0;
    padding: 0;
}

.knowledge-center .faqs-section .m-d.expand-list>li {
    list-style-type: none;
    padding: 20px 20px 0px 5px;
    border-bottom: 2px solid #3498db;
    position: relative;
}

.knowledge-center .faqs-section .m-d label[class^="tab"]:hover {
    cursor: pointer;
}

.knowledge-center .faqs-section .m-d input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.knowledge-center .faqs-section .m-d input[class^="tab"] {
    width: 100%;
    height: 40px;
    position: absolute;
    left: 0;
    top: 0;
}

.knowledge-center .faqs-section .m-d input[class^="tab"]:hover {
    cursor: pointer;
    color: #3498db;
}

.knowledge-center .faqs-section .m-d .content {
    height: auto;
    max-height: 0;
    max-width: 100%;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 180ms ease-in-out 0ms;
    font-size: 14px;
}

.knowledge-center .faqs-section .m-d li[data-md-content=""] input[class^="tab"]:checked~.content {
    max-height: 100%;
    transition: all 250ms ease-in-out 0ms;
}

.knowledge-center .faqs-section .m-d input[class^="tab"]:checked~.content {
    margin-bottom: 15px;
    padding-bottom: 20px;
}

.knowledge-center .faqs-section .m-d .open-close-icon {
    display: inline-block;
    position: absolute;
    right: 20px;
    transform: translatey(2px);
}

.knowledge-center .faqs-section .m-d .open-close-icon i {
    position: absolute;
    left: 0;
}

.knowledge-center .faqs-section .m-d .open-close-icon .bi-dash {
    transform: rotate(-90deg);
    transition: transform 150ms ease-in-out 0ms;
    color: #3498db;
}

.knowledge-center .faqs-section .m-d input[class^="tab"]:checked~.open-close-icon .bi-dash {
    transform: rotate(0deg);
    transition: transform 150ms ease-in-out 0ms;
}

.knowledge-center .faqs-section .m-d .open-close-icon .bi-plus {
    opacity: 1;
    transform: rotate(-90deg);
    transition: opacity 50ms linear 0ms, transform 150ms ease-in-out 0ms;
}

.knowledge-center .faqs-section .m-d input[class^="tab"]:checked~.open-close-icon .bi-plus {
    opacity: 0;
    transform: rotate(0deg);
    transition: opacity 50ms linear 0ms, transform 150ms ease-in-out 0ms;
}

/*--------------------------------------------------------------
# Course Destails Page Design
--------------------------------------------------------------*/
.knowledge-center .course-details-section .course-title {
    font-weight: 700;
    color: #066CBF;
}

.knowledge-center .course-details-section .course-features {
    display: grid;
    grid-template-columns: auto auto;
    gap: 5px;
}

.knowledge-center .course-details-section .course-features i {
    font-size: 17px;
}

.knowledge-center .course-details-section .course-features span {
    font-size: 14px;
}

.knowledge-center .course-details-section .picture-box .enroll-users i {
    font-size: 16px;
}

.knowledge-center .course-details-section .picture-box .course-price {
    font-size: 24px;
    font-weight: 900;
    color: #066CBF;
}

.knowledge-center .course-details-section .picture-box .bi-star {
    font-size: 24px;
    font-weight: 900;
}

.knowledge-center .course-details-section .picture-box .bi-star-fill {
    font-size: 16px;
    color: gray;
}

.knowledge-center .course-details-section .picture-box .bi-star-fill.checked {
    color: #EEC733;
}

/* Terms-section  */
.knowledge-center .terms-section .nav-tabs {
    border: 0;
}

.knowledge-center .terms-section .nav-link {
    border: 1px solid #d4d6df;
    padding: 15px;
    transition: 0.3s;
    color: #2a2c39;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
}

.knowledge-center .terms-section .nav-link h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.knowledge-center .terms-section .nav-link span {
    font-size: 14px;
    font-weight: 500;
    padding-top: 10px;
}

.knowledge-center .terms-section .nav-link:hover {
    color: #066CBF;
}

.knowledge-center .terms-section .nav-link.active {
    background: #066CBF;
    color: #fff;
    border-color: #066CBF;
}

.knowledge-center .terms-section .nav-link.active span {
    color: #F5F5F5;
}

@media (max-width: 768px) {
    .knowledge-center .terms-section .nav-link i {
        padding: 0;
        line-height: 1;
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .knowledge-center .terms-section .nav-link {
        padding: 15px;
    }

    .knowledge-center .terms-section .nav-link i {
        font-size: 24px;
    }
}

.knowledge-center .terms-section .tab-content {
    margin-top: 10px;
}

.knowledge-center .terms-section .tab-pane h3 {
    font-weight: 600;
    font-size: 26px;
}

.knowledge-center .terms-section .tab-pane ul {
    list-style: none;
    padding: 0;
}

.knowledge-center .terms-section .tab-pane ul li {
    padding-bottom: 10px;
}

.knowledge-center .terms-section .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #066CBF;
}

.knowledge-center .terms-section .tab-pane p:last-child {
    margin-bottom: 0;
}
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing-page {
    padding-top: 40px;
}

.pricing-page .package-category .box {
    text-align: center;
    transition: all .2s ease-in-out;
}

.pricing-page .package-category .box:hover {
    box-shadow: 0px 10px 20px 0px rgba(11, 35, 65, 0.1);
    background: #fff;
    text-align: center;
}

.pricing-page .package-category .card {
    border: none;
    background: transparent;
}

.pricing-page .package-category .card .card-header,
.pricing-page .package-category .card .card-footer {
    border: none;
    background-color: transparent;
}

.pricing-page .package-category .card .card-header {
    display: flex;
    justify-content: center;
}

.pricing-page .package-category .card .card-header .icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    box-shadow: 0px 3.31px 3.32px 0px #00000005;

    box-shadow: 0px 6.99px 8.21px 0px #00000009;

    box-shadow: 0px 11.89px 16.44px 0px #0000000D;

    box-shadow: 10px 20.72px 33.62px 0px #00000012;

    box-shadow: 10px 51px 94px 0px #0000001C;
}

.pricing-page .package-category .card .card-header .icon-box {
    font-size: 32px;
    color: #066CBF;
}

.pricing-page .package-category h3 {
    font-weight: 600;
    font-size: 24px;
}

.pricing-page .package-category h4 {
    font-size: 46px;
    color: #0b2341;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 25px;
}

.pricing-page .package-category h4 span {
    color: #bababa;
    font-size: 18px;
    display: block;
}

.pricing-page .package-category ul {
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
    margin-bottom: 0;
}

.pricing-page .package-category ul li {
    padding-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.pricing-page .package-category ul li span {
    font-size: 14px;
}

.pricing-page .package-category ul i.bi-check {
    color: #066CBF;
    font-size: 24px;
    padding-right: 4px;
}

.pricing-page .package-category ul i.bi-x {
    color: red;
    font-size: 24px;
    padding-right: 4px;
}

.pricing-page .package-category ul .na span {
    text-decoration: line-through;
}

.pricing-page .package-category .get-started-btn {
    display: inline-block;
    padding: 10px 40px 11px 40px;
    border-radius: 4px;
    color: #066CBF;
    transition: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid #066CBF;
    background: #fff;
    opacity: 0;
}

.pricing-page .package-category .box:hover .get-started-btn,
.pricing-page .package-category .box:focus .get-started-btn {
    opacity: 1;
}

.pricing-page .package-category .get-started-btn:hover {
    background: #066CBF;
    color: #fff;
}

.pricing-page .package-category .featured:hover {
    z-index: 10;
}

.pricing-page .package-category .featured .get-started-btn {
    background: #ed502e;
    color: #fff;
    border-color: #ed502e;
}

.pricing-page .package-category .featured .get-started-btn:hover {
    background: #ef6445;
}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 575px) {

    .pricing-page .package-category .box {
        margin-bottom: 30px;
        box-shadow: 0px 0px 10px 0px rgba(11, 35, 65, 0.1);
        text-align: center;
    }

    .pricing-page .package-category .box .get-started-btn,
    .pricing-page .package-category .box .get-started-btn {
        opacity: 1;
    }
}

.pricing-page .organization-institution-section {
    background-color: #FFB800;
}

.pricing-page .organization-institution-section .card .card-title {
    font-weight: 700;
    font-size: 24px;
}

.pricing-page .organization-institution-section .card .card-footer a {
    background-color: #066CBF;
    color: #fff;
}

.pricing-page .contact-section {
    margin: 70px auto;
}

.pricing-page .contact-section h2 {
    font-size: 28px;
    font-weight: 800;
}

.pricing-page .contact-section h2 span {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(90deg, #00EAF7 -0.1%, #392DB0 112.98%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.pricing-page .contact-section a {
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    color: #fff;
    margin: auto 20px;
    background: linear-gradient(180deg, #2991FB 0%, #392DB0 100%);
}

@media (max-width: 768px) {
    .pricing-page .contact-section h2 {
        font-size: 24px;
        font-weight: 800;
    }

    .pricing-page .contact-section h2 span {
        font-size: 24px;
        font-weight: 800;
    }

    .pricing-page .contact-section a {
        border-radius: 40px;
        font-size: 18px;
        font-weight: 500;
        text-align: left;
        color: #fff;
        margin: auto 10px;
        background: linear-gradient(180deg, #2991FB 0%, #392DB0 100%);
    }
}

@media (max-width: 575px) {
    .pricing-page .contact-section h2 {
        font-size: 16px;
        font-weight: 800;
    }

    .pricing-page .contact-section h2 span {
        font-size: 16px;
        font-weight: 800;
    }

    .pricing-page .contact-section a {
        border-radius: 40px;
        font-size: 14px;
        font-weight: 500;
        margin: auto 10px;
    }

}


/* Package Plan Page Design  */

.pricing-page .package-plan h3 {
    font-weight: 600;
    font-size: 24px;
}

.pricing-page .package-plan .card {
    border: 0;
    box-shadow: 0 2px 40px 0 rgba(205, 205, 205, 0.55);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.pricing-page .package-plan .card:hover {
    box-shadow: 0px 10px 20px 0px #00286440;

    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

.pricing-page .package-plan .card .card-header,
.pricing-page .package-plan .card .card-footer {
    border: 0;
    background-color: transparent;
}

.pricing-page .package-plan .card .card-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    color: #FFB800;
}

.pricing-page .package-plan .card .card-body .card-title {
    font-size: 17px;
    font-weight: 600;
    color: #066CBF;
}

.pricing-page .package-plan .card .card-body .list-group-item {
    font-size: 13px;
    padding: 8px 2px;
}

.pricing-page .package-plan .card .card-footer .explore-btn {
    border: 1px solid #000;
    width: 140px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.pricing-page .package-plan .card .card-footer .explore-btn:hover {
    background-color: #066CBF;
    border: 1px solid #066CBF;

    color: #fff;
}

.pricing-page .user-content-section {
    background-color: #066CBF;
    margin-top: -1px;
}

.pricing-page .user-content-section h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-page .user-content-section h5 {
    color: #fff;
    font-size: 18px;
}

.pricing-page .user-content-section p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* ---------------  */
.pricing-page .faqs-section {
    margin-bottom: 40px;
}

.pricing-page .faqs-section .m-d.expand-list {
    margin: 0;
    padding: 0;
}

.pricing-page .faqs-section .m-d.expand-list>li {
    list-style-type: none;
    padding: 20px 20px 0px 5px;
    border-bottom: 1px solid #000;
    position: relative;
}

.pricing-page .faqs-section .m-d label[class^="tab"]:hover {
    cursor: pointer;
}

.pricing-page .faqs-section .m-d input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.pricing-page .faqs-section .m-d input[class^="tab"] {
    width: 100%;
    height: 40px;
    position: absolute;
    left: 0;
    top: 0;
}

.pricing-page .faqs-section .m-d input[class^="tab"]:hover {
    cursor: pointer;
    color: #3498db;
}

.pricing-page .faqs-section .m-d .content {
    height: auto;
    max-height: 0;
    max-width: 100%;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 180ms ease-in-out 0ms;
    font-size: 14px;
}

.pricing-page .faqs-section .m-d li[data-md-content=""] input[class^="tab"]:checked~.content {
    max-height: 100%;
    transition: all 250ms ease-in-out 0ms;
}

.pricing-page .faqs-section .m-d input[class^="tab"]:checked~.content {
    margin-bottom: 15px;
    padding-bottom: 20px;
}

.pricing-page .faqs-section .m-d .open-close-icon {
    display: inline-block;
    position: absolute;
    right: 20px;
    transform: translatey(2px);
}

.pricing-page .faqs-section .m-d .open-close-icon i {
    position: absolute;
    left: 0;
}

.pricing-page .faqs-section .m-d .open-close-icon .bi-dash {
    transform: rotate(-90deg);
    transition: transform 150ms ease-in-out 0ms;
    color: #3498db;
}

.pricing-page .faqs-section .m-d input[class^="tab"]:checked~.open-close-icon .bi-dash {
    transform: rotate(0deg);
    transition: transform 150ms ease-in-out 0ms;
}

.pricing-page .faqs-section .m-d .open-close-icon .bi-plus {
    opacity: 1;
    transform: rotate(-90deg);
    transition: opacity 50ms linear 0ms, transform 150ms ease-in-out 0ms;
}

.pricing-page .faqs-section .m-d input[class^="tab"]:checked~.open-close-icon .bi-plus {
    opacity: 0;
    transform: rotate(0deg);
    transition: opacity 50ms linear 0ms, transform 150ms ease-in-out 0ms;
}

/* ---------------------------------- */
.pricing-page .package-plan-confirmation .page-title h3{
    font-weight: 600;
    font-size: 24px;
}

.pricing-page .package-plan-confirmation .page-title p{
    font-size: 18px;
}

.pricing-page .package-plan-confirmation .package-types .card {
    border: 0;
}

.pricing-page .package-plan-confirmation .package-types .card .card-header .card-title {
    font-weight: 600;
    font-size: 18px;
}

.pricing-page .package-plan-confirmation .package-types .card .card-header,
.pricing-page .package-plan-confirmation .package-types .card .card-footer {
    border: 0;
    background-color: transparent;
}

.pricing-page .package-plan-confirmation .package-types .card .card-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    color: #FFB800;
}

.pricing-page .package-plan-confirmation .package-types .card .card-body .card-title {
    font-size: 17px;
    font-weight: 600;
    color: #066CBF;
}

.pricing-page .package-plan-confirmation .package-types .card .card-body p {
    font-size: 14px;
}

.pricing-page .package-plan-confirmation .package-types .card .card-body p span {
    font-size: 14px;
    font-weight: 600;
}

.pricing-page .package-plan-confirmation .package-types .card .card-footer .package-cost {
    font-size: 20px;
    font-weight: 800;
    color: #066CBF;
}

.pricing-page .package-plan-confirmation .package-types .card .card-footer .discount-percentage {
    font-size: 14px;
    font-weight: 500;
    padding: 5px 8px;
}

.pricing-page .package-plan-confirmation .package-types .card .card-footer .join-btn {
    background-color: #56CAD8;
    color: #000;
}

.pricing-page .package-plan-confirmation .package-content .section-title {
    font-size: 20px;
    margin: 2px auto 30px auto;
}

.pricing-page .package-plan-confirmation .package-content .text-box .content-area {
    padding-top: 15px;
}

.pricing-page .package-plan-confirmation .package-content .text-box .btn-box {
    margin: 10px auto;
}

.pricing-page .package-plan-confirmation .package-content .text-box .btn-box .join-btn {
    float: right;
    color: #0066FF;
    font-size: 16px;
}
@media only screen and (max-width:768px) {
    .pricing-page .package-plan-confirmation .img-box {
        display: none;
    }

}

@media only screen and (max-width:575px) {
    .pricing-page .package-plan-confirmation .package-types .card .card-header .card-title {
        font-weight: 600;
        font-size: 16px;
    }

    .pricing-page .package-plan-confirmation .package-types .card .card-header,
    .pricing-page .package-plan-confirmation .package-types .card .card-body,
    .pricing-page .package-plan-confirmation .package-types .card .card-footer {
        padding-left: 5px;
        padding-right: 5px;
    }

    .pricing-page .package-plan-confirmation .package-types .card .card-footer .package-cost {
        font-size: 16px;
        font-weight: 700;
        color: #066CBF;
    }

    .pricing-page .package-plan-confirmation .package-types .card .card-footer .discount-percentage {
        font-size: 11px;
        font-weight: 500;
        padding: 5px 6px;
    }
}

/* Payment Checkout Page Design  */
.pricing-page .package-payment-checkout {
    margin-top: 80px;
}

.pricing-page .package-payment-checkout .section-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
}

.pricing-page .package-payment-checkout .summary-box {
    padding: 15px 3px;
    background-color: transparent;
    border: 0;
}

.pricing-page .package-payment-checkout .summary-box ul li {
    background-color: transparent;
    padding: 5px;
    border: 0;
    font-size: 14px;
}

.pricing-page .package-payment-checkout .summary-box ul li span {
    font-size: 14px;
}

.pricing-page .package-payment-checkout .summary-box .total-cost span {
    font-size: 18px;
    font-weight: 800;
}

.pricing-page .package-payment-checkout .summary-box .desc {
    font-size: 12px;
    font-weight: 300;
    color: rgb(0, 0, 0, 0.5);
    padding: 10px;
}

.pricing-page .package-payment-checkout .summary-box .checkout-btn {
    background: linear-gradient(90deg, #00EAF7 -0.1%, #392DB0 112.98%);
    color: #fff;
    padding: 10px 15px;
    font-size: 18px;
    margin: 20px auto;
}

.pricing-page .package-payment-checkout .payment-container {
    display: flex;
}

.pricing-page .package-payment-checkout .payment-container>.payment-radio-container {
    padding: 0.5rem;
}

.pricing-page .package-payment-checkout .payment-container input[type="radio"] {
    display: none;
}

.pricing-page .package-payment-checkout .payment-container input[type="radio"]:not(:disabled)~.pplogo-container {
    cursor: pointer;
}

.pricing-page .package-payment-checkout .payment-container input[type="radio"]:disabled~.pplogo-container {
    color: #066CBF;
    border-color: #066CBF;
    box-shadow: none;
    cursor: not-allowed;
}

.pricing-page .package-payment-checkout .pplogo-container {
    height: 60px;
    display: flex;
    justify-content: canter;
    align-items: center;
    width: 120px;
    background: white;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0px 3px 10px -2px rgba(34, 81, 252, 0.5);
    position: relative;
}

.pricing-page .package-payment-checkout .payment-container input[type="radio"]:checked+.pplogo-container {
    color: white;
    background: #f5f5f5;
    border: 2px solid #066CBF;
}

.pricing-page .package-payment-checkout .payment-container input[type="radio"]:checked+.pplogo-container::after {
    content: "";
    font-family: "Font Awesome 5 Free";
    color: #066CBF;
    border: 1px solid #066CBF;
    font-size: 2.5rem;
    font-weight: 100;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    height: 25px;
    width: 25px;
    line-height: 49px;
    text-align: center;
    border-radius: 50%;
    background: #066CBF;
    box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);
}

.pricing-page .package-payment-checkout .coupon-box input {
    border: 1px solid #000;
}

@media only screen and (max-width: 700px) {
    .pricing-page .package-payment-checkout section {
        flex-direction: column;
    }
}
