.Vue-Toastification__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100%;
    padding: 4px;
    pointer-events: none;
    position: fixed;
    width: 600px;
    z-index: 9999
}

@media only screen and (min-width: 600px) {

    .Vue-Toastification__container.top-center,
    .Vue-Toastification__container.top-left,
    .Vue-Toastification__container.top-right {
        top: 1em
    }

    .Vue-Toastification__container.bottom-center,
    .Vue-Toastification__container.bottom-left,
    .Vue-Toastification__container.bottom-right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        bottom: 1em;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .Vue-Toastification__container.bottom-left,
    .Vue-Toastification__container.top-left {
        left: 1em
    }

    .Vue-Toastification__container.bottom-left .Vue-Toastification__toast,
    .Vue-Toastification__container.top-left .Vue-Toastification__toast {
        margin-right: auto
    }

    @supports not (-moz-appearance: none) {

        .Vue-Toastification__container.bottom-left .Vue-Toastification__toast--rtl,
        .Vue-Toastification__container.top-left .Vue-Toastification__toast--rtl {
            margin-left: auto;
            margin-right: unset
        }
    }

    .Vue-Toastification__container.bottom-right,
    .Vue-Toastification__container.top-right {
        right: 1em
    }

    .Vue-Toastification__container.bottom-right .Vue-Toastification__toast,
    .Vue-Toastification__container.top-right .Vue-Toastification__toast {
        margin-left: auto
    }

    @supports not (-moz-appearance: none) {

        .Vue-Toastification__container.bottom-right .Vue-Toastification__toast--rtl,
        .Vue-Toastification__container.top-right .Vue-Toastification__toast--rtl {
            margin-left: unset;
            margin-right: auto
        }
    }

    .Vue-Toastification__container.bottom-center,
    .Vue-Toastification__container.top-center {
        left: 50%;
        margin-left: -300px
    }

    .Vue-Toastification__container.bottom-center .Vue-Toastification__toast,
    .Vue-Toastification__container.top-center .Vue-Toastification__toast {
        margin-left: auto;
        margin-right: auto
    }
}

@media only screen and (max-width: 600px) {
    .Vue-Toastification__container {
        left: 0;
        margin: 0;
        padding: 0;
        width: 100vw
    }

    .Vue-Toastification__container .Vue-Toastification__toast {
        width: 100%
    }

    .Vue-Toastification__container.top-center,
    .Vue-Toastification__container.top-left,
    .Vue-Toastification__container.top-right {
        top: 0
    }

    .Vue-Toastification__container.bottom-center,
    .Vue-Toastification__container.bottom-left,
    .Vue-Toastification__container.bottom-right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        bottom: 0;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

.Vue-Toastification__toast {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    border-radius: 8px;
    -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1), 0 2px 15px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1), 0 2px 15px 0 rgba(0, 0, 0, .05);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    direction: ltr;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-family: Lato, Helvetica, Roboto, Arial, sans-serif;
    justify-content: space-between;
    margin-bottom: 1rem;
    max-height: 800px;
    max-width: 600px;
    min-height: 64px;
    min-width: 326px;
    overflow: hidden;
    padding: 22px 24px;
    pointer-events: auto;
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.Vue-Toastification__toast--rtl {
    direction: rtl
}

.Vue-Toastification__toast--default {
    background-color: #1976d2;
    color: #fff
}

.Vue-Toastification__toast--info {
    background-color: #2196f3;
    color: #fff
}

.Vue-Toastification__toast--success {
    background-color: #4caf50;
    color: #fff
}

.Vue-Toastification__toast--error {
    background-color: #ff5252;
    color: #fff
}

.Vue-Toastification__toast--warning {
    background-color: #ffc107;
    color: #fff
}

@media only screen and (max-width: 600px) {
    .Vue-Toastification__toast {
        border-radius: 0;
        margin-bottom: .5rem
    }
}

.Vue-Toastification__toast-body {
    font-size: 16px;
    line-height: 24px;
    white-space: pre-wrap;
    word-break: break-word
}

.Vue-Toastification__toast-body,
.Vue-Toastification__toast-component-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.Vue-Toastification__toast.disable-transition {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transition: none !important;
    transition: none !important
}

.Vue-Toastification__close-button {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    opacity: .3;
    outline: none;
    padding: 0 0 0 10px;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition: visibility 0s, opacity .2s linear;
    transition: visibility 0s, opacity .2s linear
}

.Vue-Toastification__close-button:focus,
.Vue-Toastification__close-button:hover {
    opacity: 1
}

.Vue-Toastification__toast:not(:hover) .Vue-Toastification__close-button.show-on-hover {
    opacity: 0
}

.Vue-Toastification__toast--rtl .Vue-Toastification__close-button {
    padding-left: unset;
    padding-right: 10px
}

@-webkit-keyframes scale-x-frames {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    to {
        -webkit-transform: scaleX(0);
        transform: scaleX(0)
    }
}

@keyframes scale-x-frames {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    to {
        -webkit-transform: scaleX(0);
        transform: scaleX(0)
    }
}

.Vue-Toastification__progress-bar {
    -webkit-animation: scale-x-frames linear 1 forwards;
    animation: scale-x-frames linear 1 forwards;
    background-color: hsla(0, 0%, 100%, .7);
    bottom: 0;
    height: 5px;
    left: 0;
    position: absolute;
    -webkit-transform-origin: left;
    transform-origin: left;
    width: 100%;
    z-index: 10000
}

.Vue-Toastification__toast--rtl .Vue-Toastification__progress-bar {
    left: unset;
    right: 0;
    -webkit-transform-origin: right;
    transform-origin: right
}

.Vue-Toastification__icon {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    border: none;
    height: 100%;
    margin: auto 18px auto 0;
    outline: none;
    padding: 0;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    width: 20px
}

.Vue-Toastification__toast--rtl .Vue-Toastification__icon {
    margin: auto 0 auto 18px
}

@-webkit-keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes bounceOutRight {
    40% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(1000px, 0, 0);
        transform: translate3d(1000px, 0, 0)
    }
}

@keyframes bounceOutRight {
    40% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(1000px, 0, 0);
        transform: translate3d(1000px, 0, 0)
    }
}

@-webkit-keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@-webkit-keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@-webkit-keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

.Vue-Toastification__bounce-enter-active.bottom-left,
.Vue-Toastification__bounce-enter-active.top-left {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

.Vue-Toastification__bounce-enter-active.bottom-right,
.Vue-Toastification__bounce-enter-active.top-right {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

.Vue-Toastification__bounce-enter-active.top-center {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

.Vue-Toastification__bounce-enter-active.bottom-center {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

.Vue-Toastification__bounce-leave-active.bottom-left,
.Vue-Toastification__bounce-leave-active.top-left {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

.Vue-Toastification__bounce-leave-active.bottom-right,
.Vue-Toastification__bounce-leave-active.top-right {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

.Vue-Toastification__bounce-leave-active.top-center {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

.Vue-Toastification__bounce-leave-active.bottom-center {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

.Vue-Toastification__bounce-move {
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out
}

@-webkit-keyframes fadeOutTop {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px)
    }
}

@keyframes fadeOutTop {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px)
    }
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px)
    }
}

@-webkit-keyframes fadeOutBottom {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }
}

@keyframes fadeOutBottom {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px)
    }
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes fadeInTop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInTop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInBottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInBottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.Vue-Toastification__fade-enter-active.bottom-left,
.Vue-Toastification__fade-enter-active.top-left {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

.Vue-Toastification__fade-enter-active.bottom-right,
.Vue-Toastification__fade-enter-active.top-right {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

.Vue-Toastification__fade-enter-active.top-center {
    -webkit-animation-name: fadeInTop;
    animation-name: fadeInTop
}

.Vue-Toastification__fade-enter-active.bottom-center {
    -webkit-animation-name: fadeInBottom;
    animation-name: fadeInBottom
}

.Vue-Toastification__fade-leave-active.bottom-left,
.Vue-Toastification__fade-leave-active.top-left {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

.Vue-Toastification__fade-leave-active.bottom-right,
.Vue-Toastification__fade-leave-active.top-right {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

.Vue-Toastification__fade-leave-active.top-center {
    -webkit-animation-name: fadeOutTop;
    animation-name: fadeOutTop
}

.Vue-Toastification__fade-leave-active.bottom-center {
    -webkit-animation-name: fadeOutBottom;
    animation-name: fadeOutBottom
}

.Vue-Toastification__fade-move {
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out
}

@-webkit-keyframes slideInBlurredLeft {
    0% {
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
        -webkit-transform: translateX(-1000px) scaleX(2.5) scaleY(.2);
        transform: translateX(-1000px) scaleX(2.5) scaleY(.2);
        -webkit-transform-origin: 100% 50%;
        transform-origin: 100% 50%
    }

    to {
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
        -webkit-transform: translateX(0) scaleY(1) scaleX(1);
        transform: translateX(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%
    }
}

@keyframes slideInBlurredLeft {
    0% {
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
        -webkit-transform: translateX(-1000px) scaleX(2.5) scaleY(.2);
        transform: translateX(-1000px) scaleX(2.5) scaleY(.2);
        -webkit-transform-origin: 100% 50%;
        transform-origin: 100% 50%
    }

    to {
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
        -webkit-transform: translateX(0) scaleY(1) scaleX(1);
        transform: translateX(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%
    }
}

@-webkit-keyframes slideInBlurredTop {
    0% {
        -webkit-filter: blur(240px);
        filter: blur(240px);
        opacity: 0;
        -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(.2);
        transform: translateY(-1000px) scaleY(2.5) scaleX(.2);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0
    }

    to {
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%
    }
}

@keyframes slideInBlurredTop {
    0% {
        -webkit-filter: blur(240px);
        filter: blur(240px);
        opacity: 0;
        -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(.2);
        transform: translateY(-1000px) scaleY(2.5) scaleX(.2);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0
    }

    to {
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%
    }
}

@-webkit-keyframes slideInBlurredRight {
    0% {
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
        -webkit-transform: translateX(1000px) scaleX(2.5) scaleY(.2);
        transform: translateX(1000px) scaleX(2.5) scaleY(.2);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%
    }

    to {
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
        -webkit-transform: translateX(0) scaleY(1) scaleX(1);
        transform: translateX(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%
    }
}

@keyframes slideInBlurredRight {
    0% {
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
        -webkit-transform: translateX(1000px) scaleX(2.5) scaleY(.2);
        transform: translateX(1000px) scaleX(2.5) scaleY(.2);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%
    }

    to {
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
        -webkit-transform: translateX(0) scaleY(1) scaleX(1);
        transform: translateX(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%
    }
}

@-webkit-keyframes slideInBlurredBottom {
    0% {
        -webkit-filter: blur(240px);
        filter: blur(240px);
        opacity: 0;
        -webkit-transform: translateY(1000px) scaleY(2.5) scaleX(.2);
        transform: translateY(1000px) scaleY(2.5) scaleX(.2);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%
    }

    to {
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%
    }
}

@keyframes slideInBlurredBottom {
    0% {
        -webkit-filter: blur(240px);
        filter: blur(240px);
        opacity: 0;
        -webkit-transform: translateY(1000px) scaleY(2.5) scaleX(.2);
        transform: translateY(1000px) scaleY(2.5) scaleX(.2);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%
    }

    to {
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%
    }
}

@-webkit-keyframes slideOutBlurredTop {
    0% {
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0
    }

    to {
        -webkit-filter: blur(240px);
        filter: blur(240px);
        opacity: 0;
        -webkit-transform: translateY(-1000px) scaleY(2) scaleX(.2);
        transform: translateY(-1000px) scaleY(2) scaleX(.2);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0
    }
}

@keyframes slideOutBlurredTop {
    0% {
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0
    }

    to {
        -webkit-filter: blur(240px);
        filter: blur(240px);
        opacity: 0;
        -webkit-transform: translateY(-1000px) scaleY(2) scaleX(.2);
        transform: translateY(-1000px) scaleY(2) scaleX(.2);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0
    }
}

@-webkit-keyframes slideOutBlurredBottom {
    0% {
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%
    }

    to {
        -webkit-filter: blur(240px);
        filter: blur(240px);
        opacity: 0;
        -webkit-transform: translateY(1000px) scaleY(2) scaleX(.2);
        transform: translateY(1000px) scaleY(2) scaleX(.2);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%
    }
}

@keyframes slideOutBlurredBottom {
    0% {
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%
    }

    to {
        -webkit-filter: blur(240px);
        filter: blur(240px);
        opacity: 0;
        -webkit-transform: translateY(1000px) scaleY(2) scaleX(.2);
        transform: translateY(1000px) scaleY(2) scaleX(.2);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%
    }
}

@-webkit-keyframes slideOutBlurredLeft {
    0% {
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
        -webkit-transform: translateX(0) scaleY(1) scaleX(1);
        transform: translateX(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%
    }

    to {
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
        -webkit-transform: translateX(-1000px) scaleX(2) scaleY(.2);
        transform: translateX(-1000px) scaleX(2) scaleY(.2);
        -webkit-transform-origin: 100% 50%;
        transform-origin: 100% 50%
    }
}

@keyframes slideOutBlurredLeft {
    0% {
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
        -webkit-transform: translateX(0) scaleY(1) scaleX(1);
        transform: translateX(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%
    }

    to {
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
        -webkit-transform: translateX(-1000px) scaleX(2) scaleY(.2);
        transform: translateX(-1000px) scaleX(2) scaleY(.2);
        -webkit-transform-origin: 100% 50%;
        transform-origin: 100% 50%
    }
}

@-webkit-keyframes slideOutBlurredRight {
    0% {
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
        -webkit-transform: translateX(0) scaleY(1) scaleX(1);
        transform: translateX(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%
    }

    to {
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
        -webkit-transform: translateX(1000px) scaleX(2) scaleY(.2);
        transform: translateX(1000px) scaleX(2) scaleY(.2);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%
    }
}

@keyframes slideOutBlurredRight {
    0% {
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
        -webkit-transform: translateX(0) scaleY(1) scaleX(1);
        transform: translateX(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%
    }

    to {
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
        -webkit-transform: translateX(1000px) scaleX(2) scaleY(.2);
        transform: translateX(1000px) scaleX(2) scaleY(.2);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%
    }
}

.Vue-Toastification__slideBlurred-enter-active.bottom-left,
.Vue-Toastification__slideBlurred-enter-active.top-left {
    -webkit-animation-name: slideInBlurredLeft;
    animation-name: slideInBlurredLeft
}

.Vue-Toastification__slideBlurred-enter-active.bottom-right,
.Vue-Toastification__slideBlurred-enter-active.top-right {
    -webkit-animation-name: slideInBlurredRight;
    animation-name: slideInBlurredRight
}

.Vue-Toastification__slideBlurred-enter-active.top-center {
    -webkit-animation-name: slideInBlurredTop;
    animation-name: slideInBlurredTop
}

.Vue-Toastification__slideBlurred-enter-active.bottom-center {
    -webkit-animation-name: slideInBlurredBottom;
    animation-name: slideInBlurredBottom
}

.Vue-Toastification__slideBlurred-leave-active.bottom-left,
.Vue-Toastification__slideBlurred-leave-active.top-left {
    -webkit-animation-name: slideOutBlurredLeft;
    animation-name: slideOutBlurredLeft
}

.Vue-Toastification__slideBlurred-leave-active.bottom-right,
.Vue-Toastification__slideBlurred-leave-active.top-right {
    -webkit-animation-name: slideOutBlurredRight;
    animation-name: slideOutBlurredRight
}

.Vue-Toastification__slideBlurred-leave-active.top-center {
    -webkit-animation-name: slideOutBlurredTop;
    animation-name: slideOutBlurredTop
}

.Vue-Toastification__slideBlurred-leave-active.bottom-center {
    -webkit-animation-name: slideOutBlurredBottom;
    animation-name: slideOutBlurredBottom
}

.Vue-Toastification__slideBlurred-move {
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out
}

.swal2-popup.swal2-toast {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    background: #fff;
    -webkit-box-shadow: 0 0 .625em #d9d9d9;
    box-shadow: 0 0 .625em #d9d9d9;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-y: hidden;
    padding: 1.25em;
    width: auto
}

.swal2-popup.swal2-toast .swal2-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0
}

.swal2-popup.swal2-toast .swal2-title {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    flex-grow: 1;
    font-size: 1em;
    justify-content: flex-start;
    margin: 0 .625em
}

.swal2-popup.swal2-toast .swal2-loading {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.swal2-popup.swal2-toast .swal2-input {
    font-size: 1em;
    height: 2em;
    margin: .3125em auto
}

.swal2-popup.swal2-toast .swal2-validation-message {
    font-size: 1em
}

.swal2-popup.swal2-toast .swal2-footer {
    font-size: .8em;
    margin: .5em 0 0;
    padding: .5em 0 0
}

.swal2-popup.swal2-toast .swal2-close {
    height: .8em;
    line-height: .8;
    position: static;
    width: .8em
}

.swal2-popup.swal2-toast .swal2-content {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    font-size: 1em;
    justify-content: flex-start;
    margin: 0 .625em;
    padding: 0;
    text-align: initial
}

.swal2-popup.swal2-toast .swal2-html-container {
    padding: .625em 0 0
}

.swal2-popup.swal2-toast .swal2-html-container:empty {
    padding: 0
}

.swal2-popup.swal2-toast .swal2-icon {
    height: 2em;
    margin: 0 .5em 0 0;
    min-width: 2em;
    width: 2em
}

.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.8em;
    font-weight: 700
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
        font-size: .25em
    }
}

.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
    height: 2em;
    width: 2em
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
    top: .875em;
    width: 1.375em
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
    left: .3125em
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
    right: .3125em
}

.swal2-popup.swal2-toast .swal2-actions {
    -webkit-box-flex: 1;
    -ms-flex-preferred-size: auto !important;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -ms-flex: 1;
    flex: 1;
    flex-basis: auto !important;
    height: 2.2em;
    height: auto;
    margin: .3125em .3125em 0;
    padding: 0;
    width: auto
}

.swal2-popup.swal2-toast .swal2-styled {
    font-size: 1em;
    margin: .125em .3125em;
    padding: .3125em .625em
}

.swal2-popup.swal2-toast .swal2-styled:focus {
    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(100, 150, 200, .5);
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(100, 150, 200, .5)
}

.swal2-popup.swal2-toast .swal2-success {
    border-color: #a5dc86
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
    border-radius: 50%;
    height: 3em;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 1.6em
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
    border-radius: 4em 0 0 4em;
    left: -.5em;
    top: -.8em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 2em 2em;
    transform-origin: 2em 2em
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
    border-radius: 0 4em 4em 0;
    left: .9375em;
    top: -.25em;
    -webkit-transform-origin: 0 1.5em;
    transform-origin: 0 1.5em
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
    height: 2em;
    width: 2em
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
    height: 2.6875em;
    left: .4375em;
    top: 0;
    width: .4375em
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line] {
    height: .3125em
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
    left: .1875em;
    top: 1.125em;
    width: .75em
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
    right: .1875em;
    top: .9375em;
    width: 1.375em
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
    -webkit-animation: swal2-toast-animate-success-line-tip .75s;
    animation: swal2-toast-animate-success-line-tip .75s
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
    -webkit-animation: swal2-toast-animate-success-line-long .75s;
    animation: swal2-toast-animate-success-line-long .75s
}

.swal2-popup.swal2-toast.swal2-show {
    -webkit-animation: swal2-toast-show .5s;
    animation: swal2-toast-show .5s
}

.swal2-popup.swal2-toast.swal2-hide {
    -webkit-animation: swal2-toast-hide .1s forwards;
    animation: swal2-toast-hide .1s forwards
}

.swal2-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-overflow-scrolling: touch;
    align-items: center;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    left: 0;
    overflow-x: hidden;
    padding: .625em;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition: background-color .1s;
    transition: background-color .1s;
    z-index: 1060
}

.swal2-container.swal2-backdrop-show,
.swal2-container.swal2-noanimation {
    background: rgba(0, 0, 0, .4)
}

.swal2-container.swal2-backdrop-hide {
    background: 0 0 !important
}

.swal2-container.swal2-top,
.swal2-container.swal2-top-left,
.swal2-container.swal2-top-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.swal2-container.swal2-top-left,
.swal2-container.swal2-top-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.swal2-container.swal2-top-end,
.swal2-container.swal2-top-right {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    align-items: flex-start;
    justify-content: flex-end
}

.swal2-container.swal2-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.swal2-container.swal2-center-left,
.swal2-container.swal2-center-start {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    align-items: center;
    justify-content: flex-start
}

.swal2-container.swal2-center-end,
.swal2-container.swal2-center-right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    align-items: center;
    justify-content: flex-end
}

.swal2-container.swal2-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.swal2-container.swal2-bottom-left,
.swal2-container.swal2-bottom-start {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    align-items: flex-end;
    justify-content: flex-start
}

.swal2-container.swal2-bottom-end,
.swal2-container.swal2-bottom-right {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    align-items: flex-end;
    justify-content: flex-end
}

.swal2-container.swal2-bottom-end>:first-child,
.swal2-container.swal2-bottom-left>:first-child,
.swal2-container.swal2-bottom-right>:first-child,
.swal2-container.swal2-bottom-start>:first-child,
.swal2-container.swal2-bottom>:first-child {
    margin-top: auto
}

.swal2-container.swal2-grow-fullscreen>.swal2-modal {
    -ms-flex-item-align: stretch;
    -ms-flex-pack: center;
    align-self: stretch;
    -ms-flex: 1;
    flex: 1
}

.swal2-container.swal2-grow-fullscreen>.swal2-modal,
.swal2-container.swal2-grow-row>.swal2-modal {
    -webkit-box-flex: 1;
    -webkit-box-pack: center;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    justify-content: center
}

.swal2-container.swal2-grow-row>.swal2-modal {
    -ms-flex-line-pack: center;
    -ms-flex-pack: center;
    align-content: center;
    -ms-flex: 1;
    flex: 1
}

.swal2-container.swal2-grow-column {
    -webkit-box-flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-direction: column;
    flex-direction: column
}

.swal2-container.swal2-grow-column.swal2-bottom,
.swal2-container.swal2-grow-column.swal2-center,
.swal2-container.swal2-grow-column.swal2-top {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.swal2-container.swal2-grow-column.swal2-bottom-left,
.swal2-container.swal2-grow-column.swal2-bottom-start,
.swal2-container.swal2-grow-column.swal2-center-left,
.swal2-container.swal2-grow-column.swal2-center-start,
.swal2-container.swal2-grow-column.swal2-top-left,
.swal2-container.swal2-grow-column.swal2-top-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.swal2-container.swal2-grow-column.swal2-bottom-end,
.swal2-container.swal2-grow-column.swal2-bottom-right,
.swal2-container.swal2-grow-column.swal2-center-end,
.swal2-container.swal2-grow-column.swal2-center-right,
.swal2-container.swal2-grow-column.swal2-top-end,
.swal2-container.swal2-grow-column.swal2-top-right {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.swal2-container.swal2-grow-column>.swal2-modal {
    -webkit-box-flex: 1;
    -ms-flex-line-pack: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-content: center;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex: 1;
    flex: 1;
    justify-content: center
}

.swal2-container.swal2-no-transition {
    -webkit-transition: none !important;
    transition: none !important
}

.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal {
    margin: auto
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .swal2-container .swal2-modal {
        margin: 0 !important
    }
}

.swal2-popup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background: #fff;
    border: none;
    border-radius: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: inherit;
    font-size: 1rem;
    justify-content: center;
    max-width: 100%;
    padding: 1.25em;
    position: relative;
    width: 32em
}

.swal2-popup:focus {
    outline: 0
}

.swal2-popup.swal2-loading {
    overflow-y: hidden
}

.swal2-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 1.8em
}

.swal2-title {
    word-wrap: break-word;
    color: #595959;
    font-size: 1.875em;
    font-weight: 600;
    margin: 0 0 .4em;
    max-width: 100%;
    padding: 0;
    position: relative;
    text-align: center;
    text-transform: none
}

.swal2-actions {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1.25em auto 0;
    padding: 0;
    width: 100%;
    z-index: 1
}

.swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
    opacity: .4
}

.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .1)), to(rgba(0, 0, 0, .1)));
    background-image: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1))
}

.swal2-actions:not(.swal2-loading) .swal2-styled:active {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .2)), to(rgba(0, 0, 0, .2)));
    background-image: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2))
}

.swal2-loader {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
    animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
    border-color: #2778c4 transparent;
    border-radius: 100%;
    border-style: solid;
    border-width: .25em;
    display: none;
    height: 2.2em;
    justify-content: center;
    margin: 0 1.875em;
    width: 2.2em
}

.swal2-styled {
    -webkit-box-shadow: none;
    box-shadow: none;
    font-weight: 500;
    margin: .3125em;
    padding: .625em 1.1em
}

.swal2-styled:not([disabled]) {
    cursor: pointer
}

.swal2-styled.swal2-confirm {
    background: initial;
    background-color: #2778c4
}

.swal2-styled.swal2-confirm,
.swal2-styled.swal2-deny {
    border: 0;
    border-radius: .25em;
    color: #fff;
    font-size: 1em
}

.swal2-styled.swal2-deny {
    background: initial;
    background-color: #d14529
}

.swal2-styled.swal2-cancel {
    background: initial;
    background-color: #757575;
    border: 0;
    border-radius: .25em;
    color: #fff;
    font-size: 1em
}

.swal2-styled:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(100, 150, 200, .5);
    box-shadow: 0 0 0 3px rgba(100, 150, 200, .5);
    outline: 0
}

.swal2-styled::-moz-focus-inner {
    border: 0
}

.swal2-footer {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    border-top: 1px solid #eee;
    color: #545454;
    font-size: 1em;
    justify-content: center;
    margin: 1.25em 0 0;
    padding: 1em 0 0
}

.swal2-timer-progress-bar-container {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    bottom: 0;
    height: .25em;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0
}

.swal2-timer-progress-bar {
    background: rgba(0, 0, 0, .2);
    height: .25em;
    width: 100%
}

.swal2-image {
    margin: 1.25em auto;
    max-width: 100%
}

.swal2-close {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background: 0 0;
    border: none;
    border-radius: 5px;
    color: #ccc;
    cursor: pointer;
    font-family: serif;
    font-size: 2.5em;
    height: 1.2em;
    justify-content: center;
    line-height: 1.2;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: color .1s ease-out;
    transition: color .1s ease-out;
    width: 1.2em;
    z-index: 2
}

.swal2-close:hover {
    background: 0 0;
    color: #f27474;
    -webkit-transform: none;
    transform: none
}

.swal2-close:focus {
    -webkit-box-shadow: inset 0 0 0 3px rgba(100, 150, 200, .5);
    box-shadow: inset 0 0 0 3px rgba(100, 150, 200, .5);
    outline: 0
}

.swal2-close::-moz-focus-inner {
    border: 0
}

.swal2-content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    word-wrap: break-word;
    color: #545454;
    font-size: 1.125em;
    font-weight: 400;
    justify-content: center;
    line-height: normal;
    margin: 0;
    padding: 0 1.6em;
    text-align: center;
    z-index: 1
}

.swal2-checkbox,
.swal2-file,
.swal2-input,
.swal2-radio,
.swal2-select,
.swal2-textarea {
    margin: 1em auto
}

.swal2-file,
.swal2-input,
.swal2-textarea {
    background: inherit;
    border: 1px solid #d9d9d9;
    border-radius: .1875em;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .06);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .06);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    font-size: 1.125em;
    -webkit-transition: border-color .3s, -webkit-box-shadow .3s;
    transition: border-color .3s, -webkit-box-shadow .3s;
    transition: border-color .3s, box-shadow .3s;
    transition: border-color .3s, box-shadow .3s, -webkit-box-shadow .3s;
    width: 100%
}

.swal2-file.swal2-inputerror,
.swal2-input.swal2-inputerror,
.swal2-textarea.swal2-inputerror {
    border-color: #f27474 !important;
    -webkit-box-shadow: 0 0 2px #f27474 !important;
    box-shadow: 0 0 2px #f27474 !important
}

.swal2-file:focus,
.swal2-input:focus,
.swal2-textarea:focus {
    border: 1px solid #b4dbed;
    -webkit-box-shadow: 0 0 0 3px rgba(100, 150, 200, .5);
    box-shadow: 0 0 0 3px rgba(100, 150, 200, .5);
    outline: 0
}

.swal2-file::-webkit-input-placeholder,
.swal2-input::-webkit-input-placeholder,
.swal2-textarea::-webkit-input-placeholder {
    color: #ccc
}

.swal2-file::-moz-placeholder,
.swal2-input::-moz-placeholder,
.swal2-textarea::-moz-placeholder {
    color: #ccc
}

.swal2-file:-ms-input-placeholder,
.swal2-input:-ms-input-placeholder,
.swal2-textarea:-ms-input-placeholder {
    color: #ccc
}

.swal2-file::-ms-input-placeholder,
.swal2-input::-ms-input-placeholder,
.swal2-textarea::-ms-input-placeholder {
    color: #ccc
}

.swal2-file::placeholder,
.swal2-input::placeholder,
.swal2-textarea::placeholder {
    color: #ccc
}

.swal2-range {
    background: #fff;
    margin: 1em auto
}

.swal2-range input {
    width: 80%
}

.swal2-range output {
    color: inherit;
    font-weight: 600;
    text-align: center;
    width: 20%
}

.swal2-range input,
.swal2-range output {
    font-size: 1.125em;
    height: 2.625em;
    line-height: 2.625em;
    padding: 0
}

.swal2-input {
    height: 2.625em;
    padding: 0 .75em
}

.swal2-input[type=number] {
    max-width: 10em
}

.swal2-file {
    background: inherit;
    font-size: 1.125em
}

.swal2-textarea {
    height: 6.75em;
    padding: .75em
}

.swal2-select {
    background: inherit;
    color: inherit;
    font-size: 1.125em;
    max-width: 100%;
    min-width: 50%;
    padding: .375em .625em
}

.swal2-checkbox,
.swal2-radio {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background: #fff;
    color: inherit;
    justify-content: center
}

.swal2-checkbox label,
.swal2-radio label {
    font-size: 1.125em;
    margin: 0 .6em
}

.swal2-checkbox input,
.swal2-radio input {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 .4em
}

.swal2-input-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 1em auto
}

.swal2-input-label,
.swal2-validation-message {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.swal2-validation-message {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f0f0f0;
    color: #666;
    font-size: 1em;
    font-weight: 300;
    margin: 0 -2.7em;
    overflow: hidden;
    padding: .625em
}

.swal2-validation-message:before {
    background-color: #f27474;
    border-radius: 50%;
    color: #fff;
    content: "!";
    display: inline-block;
    font-weight: 600;
    height: 1.5em;
    line-height: 1.5em;
    margin: 0 .625em;
    min-width: 1.5em;
    text-align: center;
    width: 1.5em
}

.swal2-icon {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    border: .25em solid #000;
    border-radius: 50%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    cursor: default;
    font-family: inherit;
    height: 5em;
    justify-content: center;
    line-height: 5em;
    margin: 1.25em auto 1.875em;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 5em
}

.swal2-icon .swal2-icon-content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 3.75em
}

.swal2-icon.swal2-error {
    border-color: #f27474;
    color: #f27474
}

.swal2-icon.swal2-error .swal2-x-mark {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
    background-color: #f27474;
    border-radius: .125em;
    display: block;
    height: .3125em;
    position: absolute;
    top: 2.3125em;
    width: 2.9375em
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
    left: 1.0625em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
    right: 1em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.swal2-icon.swal2-error.swal2-icon-show {
    -webkit-animation: swal2-animate-error-icon .5s;
    animation: swal2-animate-error-icon .5s
}

.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark {
    -webkit-animation: swal2-animate-error-x-mark .5s;
    animation: swal2-animate-error-x-mark .5s
}

.swal2-icon.swal2-warning {
    border-color: #facea8;
    color: #f8bb86
}

.swal2-icon.swal2-info {
    border-color: #9de0f6;
    color: #3fc3ee
}

.swal2-icon.swal2-question {
    border-color: #c9dae1;
    color: #87adbd
}

.swal2-icon.swal2-success {
    border-color: #a5dc86;
    color: #a5dc86
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line] {
    border-radius: 50%;
    height: 7.5em;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 3.75em
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
    border-radius: 7.5em 0 0 7.5em;
    left: -2.0635em;
    top: -.4375em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 3.75em 3.75em;
    transform-origin: 3.75em 3.75em
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
    border-radius: 0 7.5em 7.5em 0;
    left: 1.875em;
    top: -.6875em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0 3.75em;
    transform-origin: 0 3.75em
}

.swal2-icon.swal2-success .swal2-success-ring {
    border: .25em solid hsla(98, 55%, 69%, .3);
    border-radius: 50%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 100%;
    left: -.25em;
    position: absolute;
    top: -.25em;
    width: 100%;
    z-index: 2
}

.swal2-icon.swal2-success .swal2-success-fix {
    height: 5.625em;
    left: 1.625em;
    position: absolute;
    top: .5em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: .4375em;
    z-index: 1
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
    background-color: #a5dc86;
    border-radius: .125em;
    display: block;
    height: .3125em;
    position: absolute;
    z-index: 2
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
    left: .8125em;
    top: 2.875em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 1.5625em
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
    right: .5em;
    top: 2.375em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 2.9375em
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip {
    -webkit-animation: swal2-animate-success-line-tip .75s;
    animation: swal2-animate-success-line-tip .75s
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long {
    -webkit-animation: swal2-animate-success-line-long .75s;
    animation: swal2-animate-success-line-long .75s
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right {
    -webkit-animation: swal2-rotate-success-circular-line 4.25s ease-in;
    animation: swal2-rotate-success-circular-line 4.25s ease-in
}

.swal2-progress-steps {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: inherit;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-weight: 600;
    margin: 0 0 1.25em;
    max-width: 100%;
    padding: 0
}

.swal2-progress-steps li {
    display: inline-block;
    position: relative
}

.swal2-progress-steps .swal2-progress-step {
    -ms-flex-negative: 0;
    background: #2778c4;
    border-radius: 2em;
    color: #fff;
    flex-shrink: 0;
    height: 2em;
    line-height: 2em;
    text-align: center;
    width: 2em;
    z-index: 20
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
    background: #2778c4
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step {
    background: #add8e6;
    color: #fff
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line {
    background: #add8e6
}

.swal2-progress-steps .swal2-progress-step-line {
    -ms-flex-negative: 0;
    background: #2778c4;
    flex-shrink: 0;
    height: .4em;
    margin: 0 -1px;
    width: 2.5em;
    z-index: 10
}

[class^=swal2] {
    -webkit-tap-highlight-color: transparent
}

.swal2-show {
    -webkit-animation: swal2-show .3s;
    animation: swal2-show .3s
}

.swal2-hide {
    -webkit-animation: swal2-hide .15s forwards;
    animation: swal2-hide .15s forwards
}

.swal2-noanimation {
    -webkit-transition: none;
    transition: none
}

.swal2-scrollbar-measure {
    height: 50px;
    overflow: scroll;
    position: absolute;
    top: -9999px;
    width: 50px
}

.swal2-rtl .swal2-close {
    left: 0;
    right: auto
}

.swal2-rtl .swal2-timer-progress-bar {
    left: auto;
    right: 0
}

@supports (-ms-accelerator:true) {
    .swal2-range input {
        width: 100% !important
    }

    .swal2-range output {
        display: none
    }
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .swal2-range input {
        width: 100% !important
    }

    .swal2-range output {
        display: none
    }
}

@-webkit-keyframes swal2-toast-show {
    0% {
        -webkit-transform: translateY(-.625em) rotate(2deg);
        transform: translateY(-.625em) rotate(2deg)
    }

    33% {
        -webkit-transform: translateY(0) rotate(-2deg);
        transform: translateY(0) rotate(-2deg)
    }

    66% {
        -webkit-transform: translateY(.3125em) rotate(2deg);
        transform: translateY(.3125em) rotate(2deg)
    }

    to {
        -webkit-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0)
    }
}

@keyframes swal2-toast-show {
    0% {
        -webkit-transform: translateY(-.625em) rotate(2deg);
        transform: translateY(-.625em) rotate(2deg)
    }

    33% {
        -webkit-transform: translateY(0) rotate(-2deg);
        transform: translateY(0) rotate(-2deg)
    }

    66% {
        -webkit-transform: translateY(.3125em) rotate(2deg);
        transform: translateY(.3125em) rotate(2deg)
    }

    to {
        -webkit-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0)
    }
}

@-webkit-keyframes swal2-toast-hide {
    to {
        opacity: 0;
        -webkit-transform: rotate(1deg);
        transform: rotate(1deg)
    }
}

@keyframes swal2-toast-hide {
    to {
        opacity: 0;
        -webkit-transform: rotate(1deg);
        transform: rotate(1deg)
    }
}

@-webkit-keyframes swal2-toast-animate-success-line-tip {
    0% {
        left: .0625em;
        top: .5625em;
        width: 0
    }

    54% {
        left: .125em;
        top: .125em;
        width: 0
    }

    70% {
        left: -.25em;
        top: .625em;
        width: 1.625em
    }

    84% {
        left: .75em;
        top: 1.0625em;
        width: .5em
    }

    to {
        left: .1875em;
        top: 1.125em;
        width: .75em
    }
}

@keyframes swal2-toast-animate-success-line-tip {
    0% {
        left: .0625em;
        top: .5625em;
        width: 0
    }

    54% {
        left: .125em;
        top: .125em;
        width: 0
    }

    70% {
        left: -.25em;
        top: .625em;
        width: 1.625em
    }

    84% {
        left: .75em;
        top: 1.0625em;
        width: .5em
    }

    to {
        left: .1875em;
        top: 1.125em;
        width: .75em
    }
}

@-webkit-keyframes swal2-toast-animate-success-line-long {
    0% {
        right: 1.375em;
        top: 1.625em;
        width: 0
    }

    65% {
        right: .9375em;
        top: 1.25em;
        width: 0
    }

    84% {
        right: 0;
        top: .9375em;
        width: 1.125em
    }

    to {
        right: .1875em;
        top: .9375em;
        width: 1.375em
    }
}

@keyframes swal2-toast-animate-success-line-long {
    0% {
        right: 1.375em;
        top: 1.625em;
        width: 0
    }

    65% {
        right: .9375em;
        top: 1.25em;
        width: 0
    }

    84% {
        right: 0;
        top: .9375em;
        width: 1.125em
    }

    to {
        right: .1875em;
        top: .9375em;
        width: 1.375em
    }
}

@-webkit-keyframes swal2-show {
    0% {
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }

    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    80% {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes swal2-show {
    0% {
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }

    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    80% {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes swal2-hide {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.5);
        transform: scale(.5)
    }
}

@keyframes swal2-hide {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.5);
        transform: scale(.5)
    }
}

@-webkit-keyframes swal2-animate-success-line-tip {
    0% {
        left: .0625em;
        top: 1.1875em;
        width: 0
    }

    54% {
        left: .125em;
        top: 1.0625em;
        width: 0
    }

    70% {
        left: -.375em;
        top: 2.1875em;
        width: 3.125em
    }

    84% {
        left: 1.3125em;
        top: 3em;
        width: 1.0625em
    }

    to {
        left: .8125em;
        top: 2.8125em;
        width: 1.5625em
    }
}

@keyframes swal2-animate-success-line-tip {
    0% {
        left: .0625em;
        top: 1.1875em;
        width: 0
    }

    54% {
        left: .125em;
        top: 1.0625em;
        width: 0
    }

    70% {
        left: -.375em;
        top: 2.1875em;
        width: 3.125em
    }

    84% {
        left: 1.3125em;
        top: 3em;
        width: 1.0625em
    }

    to {
        left: .8125em;
        top: 2.8125em;
        width: 1.5625em
    }
}

@-webkit-keyframes swal2-animate-success-line-long {
    0% {
        right: 2.875em;
        top: 3.375em;
        width: 0
    }

    65% {
        right: 2.875em;
        top: 3.375em;
        width: 0
    }

    84% {
        right: 0;
        top: 2.1875em;
        width: 3.4375em
    }

    to {
        right: .5em;
        top: 2.375em;
        width: 2.9375em
    }
}

@keyframes swal2-animate-success-line-long {
    0% {
        right: 2.875em;
        top: 3.375em;
        width: 0
    }

    65% {
        right: 2.875em;
        top: 3.375em;
        width: 0
    }

    84% {
        right: 0;
        top: 2.1875em;
        width: 3.4375em
    }

    to {
        right: .5em;
        top: 2.375em;
        width: 2.9375em
    }
}

@-webkit-keyframes swal2-rotate-success-circular-line {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    5% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    12% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg)
    }

    to {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg)
    }
}

@keyframes swal2-rotate-success-circular-line {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    5% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    12% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg)
    }

    to {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg)
    }
}

@-webkit-keyframes swal2-animate-error-x-mark {
    0% {
        margin-top: 1.625em;
        opacity: 0;
        -webkit-transform: scale(.4);
        transform: scale(.4)
    }

    50% {
        margin-top: 1.625em;
        opacity: 0;
        -webkit-transform: scale(.4);
        transform: scale(.4)
    }

    80% {
        margin-top: -.375em;
        -webkit-transform: scale(1.15);
        transform: scale(1.15)
    }

    to {
        margin-top: 0;
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes swal2-animate-error-x-mark {
    0% {
        margin-top: 1.625em;
        opacity: 0;
        -webkit-transform: scale(.4);
        transform: scale(.4)
    }

    50% {
        margin-top: 1.625em;
        opacity: 0;
        -webkit-transform: scale(.4);
        transform: scale(.4)
    }

    80% {
        margin-top: -.375em;
        -webkit-transform: scale(1.15);
        transform: scale(1.15)
    }

    to {
        margin-top: 0;
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes swal2-animate-error-icon {
    0% {
        opacity: 0;
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg)
    }

    to {
        opacity: 1;
        -webkit-transform: rotateX(0);
        transform: rotateX(0)
    }
}

@keyframes swal2-animate-error-icon {
    0% {
        opacity: 0;
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg)
    }

    to {
        opacity: 1;
        -webkit-transform: rotateX(0);
        transform: rotateX(0)
    }
}

@-webkit-keyframes swal2-rotate-loading {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes swal2-rotate-loading {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow: hidden
}

body.swal2-height-auto {
    height: auto !important
}

body.swal2-no-backdrop .swal2-container {
    background-color: transparent !important;
    bottom: auto;
    left: auto;
    max-width: calc(100% - 1.25em);
    right: auto;
    top: auto
}

body.swal2-no-backdrop .swal2-container>.swal2-modal {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    box-shadow: 0 0 10px rgba(0, 0, 0, .4)
}

body.swal2-no-backdrop .swal2-container.swal2-top {
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

body.swal2-no-backdrop .swal2-container.swal2-top-left,
body.swal2-no-backdrop .swal2-container.swal2-top-start {
    left: 0;
    top: 0
}

body.swal2-no-backdrop .swal2-container.swal2-top-end,
body.swal2-no-backdrop .swal2-container.swal2-top-right {
    right: 0;
    top: 0
}

body.swal2-no-backdrop .swal2-container.swal2-center {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

body.swal2-no-backdrop .swal2-container.swal2-center-left,
body.swal2-no-backdrop .swal2-container.swal2-center-start {
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

body.swal2-no-backdrop .swal2-container.swal2-center-end,
body.swal2-no-backdrop .swal2-container.swal2-center-right {
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

body.swal2-no-backdrop .swal2-container.swal2-bottom {
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

body.swal2-no-backdrop .swal2-container.swal2-bottom-left,
body.swal2-no-backdrop .swal2-container.swal2-bottom-start {
    bottom: 0;
    left: 0
}

body.swal2-no-backdrop .swal2-container.swal2-bottom-end,
body.swal2-no-backdrop .swal2-container.swal2-bottom-right {
    bottom: 0;
    right: 0
}

@media print {
    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
        overflow-y: scroll !important
    }

    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true] {
        display: none
    }

    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
        position: static !important
    }
}

body.swal2-toast-shown .swal2-container {
    background-color: transparent
}

body.swal2-toast-shown .swal2-container.swal2-top {
    bottom: auto;
    left: 50%;
    right: auto;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

body.swal2-toast-shown .swal2-container.swal2-top-end,
body.swal2-toast-shown .swal2-container.swal2-top-right {
    bottom: auto;
    left: auto;
    right: 0;
    top: 0
}

body.swal2-toast-shown .swal2-container.swal2-top-left,
body.swal2-toast-shown .swal2-container.swal2-top-start {
    bottom: auto;
    left: 0;
    right: auto;
    top: 0
}

body.swal2-toast-shown .swal2-container.swal2-center-left,
body.swal2-toast-shown .swal2-container.swal2-center-start {
    bottom: auto;
    left: 0;
    right: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

body.swal2-toast-shown .swal2-container.swal2-center {
    bottom: auto;
    left: 50%;
    right: auto;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

body.swal2-toast-shown .swal2-container.swal2-center-end,
body.swal2-toast-shown .swal2-container.swal2-center-right {
    bottom: auto;
    left: auto;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

body.swal2-toast-shown .swal2-container.swal2-bottom-left,
body.swal2-toast-shown .swal2-container.swal2-bottom-start {
    bottom: 0;
    left: 0;
    right: auto;
    top: auto
}

body.swal2-toast-shown .swal2-container.swal2-bottom {
    bottom: 0;
    left: 50%;
    right: auto;
    top: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

body.swal2-toast-shown .swal2-container.swal2-bottom-end,
body.swal2-toast-shown .swal2-container.swal2-bottom-right {
    bottom: 0;
    left: auto;
    right: 0;
    top: auto
}

@charset "UTF-8";

@font-face {
    font-family: Nunito;
    src: url(/assets/frontend/fonts/nunito/Nunito-Regular.woff) format("woff")
}

@font-face {
    font-family: Circular Std;
    src: url(/assets/frontend/fonts/circular/CircularStd-Medium.woff) format("woff")
}

.catking-btn {
    border-radius: 8px;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 34px;
    text-decoration: none
}

@media (max-width: 767px) {
    .catking-btn {
        padding: 15px
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .catking-btn {
        font-size: 14px;
        padding: 10px 25px
    }
}

.blue-btn {
    background-color: #2d81f7;
    border: 1px solid #2d81f7;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    color: #f6f6f6
}

.blue-btn:hover {
    background-color: #f6f6f6;
    border: 1px solid #2d81f7;
    color: #2d81f7
}

.green-btn {
    background-color: #28c590;
    border: 1px solid #28c590;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    color: #f6f6f6
}

.green-btn:hover {
    background-color: #f6f6f6;
    border: 1px solid #28c590;
    color: #28c590
}

.transparent-btn {
    background-color: #f6f6f6;
    border: 1px solid #3c4852;
    color: #000
}

.transparent-btn:hover {
    background-color: #000;
    color: #fff
}

.icon-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.icon-content img {
    width: 150px
}

.icon-content p {
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 38px;
    margin-bottom: 0;
    margin-top: 10px;
    text-align: center
}

@media (min-width: 992px) and (max-width:1366px) {
    .icon-content p {
        font-size: 14px
    }
}

.icon-content p.icon-text {
    margin-top: 0
}

.icon-content p.icon-number {
    font-size: 18px;
    font-weight: 700
}

.courses-tab {
    border: none
}

.courses-tab .swiper-slide .course-nav {
    background-color: #fff;
    border-radius: 30px;
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 35px;
    text-align: center
}

@media (max-width: 767px) {
    .courses-tab .swiper-slide .course-nav {
        font-size: 13px;
        padding: 10px 0;
        text-align: center
    }
}

.courses-tab .swiper-slide .active {
    background-color: #28c590 !important;
    color: #fff !important
}

.course-card-content {
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    position: relative
}

.course-card-content img {
    width: 100%
}

.course-card-content .card-video-icon {
    overflow: hidden;
    position: relative
}

.course-card-content .card-video-icon:hover img {
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out
}

.course-card-content .card-video-icon .video-play-btn {
    left: 50%;
    position: absolute;
    top: 40%
}

.course-card-content .card-video-icon .video-play-btn .fa {
    background-color: #28c590;
    border-radius: 50%;
    color: #fff;
    height: 37px;
    line-height: 37px;
    text-align: center;
    vertical-align: middle;
    width: 37px
}

.course-card-content .content {
    padding: 0 10px
}

.course-card-content .content h5 {
    background-color: #d3e2f7;
    border-radius: 8px;
    color: #2d81f7;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 17px;
    padding: 7px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.course-card-content .content .course-heading {
    color: #201b51;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700;
    line-height: 38px;
    margin-top: 15px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .course-card-content .content .course-heading {
        font-size: 18px
    }
}

.course-card-content .content p {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 10px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .course-card-content .content p {
        font-size: 14px;
        margin-top: 0
    }
}

.course-card-content .content .price-detail {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 0
}

@media (max-width: 400px) {
    .course-card-content .content .price-detail {
        display: block;
        padding-bottom: 2rem
    }
}

@media (min-width: 768px) and (max-width:809px) {
    .course-card-content .content .price-detail {
        display: block;
        padding-bottom: 2rem
    }
}

@media (min-width: 1024px) and (max-width:1600px) {
    .course-card-content .content .price-detail {
        display: block;
        padding-bottom: 2rem
    }
}

.course-card-content .content .price-detail .course-price {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px
}

@media (max-width: 400px) {
    .course-card-content .content .price-detail .course-price {
        margin-bottom: 2rem
    }
}

@media (min-width: 768px) and (max-width:809px) {
    .course-card-content .content .price-detail .course-price {
        margin-bottom: 2rem
    }
}

@media (min-width: 1024px) and (max-width:1600px) {
    .course-card-content .content .price-detail .course-price {
        margin-bottom: 2rem
    }
}

.course-card-content .content .fa-regular,
.course-card-content .content .fa-solid {
    color: #e59819
}

.course-card-content .content .rating-text {
    color: #e59819;
    margin: 0 10px
}

.cta-content {
    display: block;
    text-align: center
}

@media (min-width: 1200px) {
    .cta-content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        justify-content: space-between
    }
}

.cta-content .text {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 36px;
    font-weight: 700
}

@media (max-width: 1199px) {
    .cta-content .text {
        margin-bottom: 20px
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .cta-content .text {
        font-size: 24px
    }
}

.faq-accordion .accordion-item {
    border: none;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    margin-bottom: 10px
}

.faq-accordion .accordion-button {
    color: #767474;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .faq-accordion .accordion-button {
        font-size: 14px
    }
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #28c590;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .13);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .13);
    color: #fff
}

.faq-accordion .accordion-button:focus {
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}

.faq-accordion .faq-accordion-btn {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .faq-accordion .faq-accordion-btn {
        font-size: 14px
    }
}

.faq-accordion .accordion-body {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

@media (min-width: 1024px) and (max-width:1366px) {
    .faq-accordion .accordion-body {
        font-size: 14px
    }
}

.faq-accordion .accordion-button:after {
    background-image: url(/assets/frontend/images/icons/plus-circle.svg);
    background-size: 2rem;
    height: 2.25rem;
    width: 2.25rem
}

.faq-accordion .accordion-button:not(.collapsed):after {
    background-image: url(/assets/frontend/images/icons/minus-circle.svg);
    background-size: 2rem;
    height: 2.25rem;
    width: 2.25rem
}

.rating-month {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between
}

@media (min-width: 280px) and (max-width:378px) {
    .rating-month {
        display: block
    }
}

.rating-content {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.rating-content,
.rating-content .rate-review {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.rating-content .rate-review svg {
    display: block;
    height: 1.6rem;
    width: 7rem
}

.rating-content .rate-review svg .star-filled {
    fill: #e59819
}

.rating-content .rate-review svg .star-border {
    stroke: #e59819
}

.rating-content .rate-review .rate {
    border: 0;
    display: inline-block
}

.rating-content .rate-review .rate>input {
    display: none
}

.rating-content .rate-review .rate>label {
    float: right
}

.rating-content .rate-review .rate>label:before {
    content: "\f005";
    cursor: pointer;
    display: inline-block;
    font-family: FontAwesome;
    font-size: 15px;
    margin: 0;
    padding: .3rem .2rem
}

.rating-content .rate-review .rate>label:last-child:before {
    content: "\f006"
}

.rating-content .rate-review .rate .half:before {
    content: "\f089";
    padding-right: 0;
    position: absolute
}

.rating-content .rate-review input:checked~label {
    color: #e5af2f
}

.rating-content .rate-review input:checked+label:hover,
.rating-content .rate-review input:checked~label:hover,
.rating-content .rate-review input:checked~label:hover~label {
    color: #ffb300
}

.rating-content .rate-review label:hover,
.rating-content .rate-review label:hover~label {
    color: #e5af2f
}

.rating-content .rate-review label:hover~input:checked~label {
    color: #ffb300
}

.rating-content .rate-review p {
    color: #e5af2f;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    margin: 0 10px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .rating-content .rate-review p {
        font-size: 14px
    }
}

.course-duration {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

@media (min-width: 1024px) and (max-width:1366px) {
    .course-duration {
        font-size: 14px
    }
}

.status {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

@media (min-width: 1024px) and (max-width:1366px) {
    .status {
        font-size: 14px
    }
}

.course-slider-row {
    margin-top: 20px
}

.course-slider-row .courseSwiper .swiper-slide {
    margin-bottom: 10px
}

@media (min-width: 280px) and (max-width:417px) {
    .course-slider-row .courseSwiper .swiper-slide .rating-month {
        display: block
    }
}

@media (min-width: 768px) and (max-width:809px) {
    .course-slider-row .courseSwiper .swiper-slide .rating-month {
        display: block
    }
}

@media (min-width: 1024px) and (max-width:1642px) {
    .course-slider-row .courseSwiper .swiper-slide .rating-month {
        display: block
    }
}

@media (min-width: 1200px) and (max-width:1272px) {
    .course-slider-row .courseSwiper .swiper-slide .rating-month .rate-review {
        display: block
    }

    .course-slider-row .courseSwiper .swiper-slide .rating-month .rate-review p {
        margin: 0
    }
}

.profile-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 40px
}

@media (max-width: 991px) {
    .profile-nav {
        margin-top: 10px
    }
}

.profile-nav .menu-list {
    display: inline;
    list-style: none
}

.profile-nav .menu-list li {
    display: inline;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    padding-right: 4em;
    position: relative
}

@media (min-width: 1024px) and (max-width:1366px) {
    .profile-nav .menu-list li {
        font-size: 14px
    }
}

.profile-nav .menu-list li a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #3c4852;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    position: relative;
    text-decoration: none
}

.profile-nav .menu-list li a svg {
    height: 20px;
    margin-right: 5px;
    width: 20px
}

.profile-nav .menu-list li.profile-nav-active a {
    color: #28c590
}

.profile-nav .menu-list li.profile-nav-active a svg {
    fill: #28c590
}

.profile-nav .mobile-profile-menu {
    background-color: #fff;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    bottom: 0;
    -webkit-box-shadow: 0 -2px 4px rgba(0, 0, 0, .08), 0 -4px 12px rgba(0, 0, 0, .08);
    box-shadow: 0 -2px 4px rgba(0, 0, 0, .08), 0 -4px 12px rgba(0, 0, 0, .08);
    left: 0;
    padding: .8rem .5rem;
    position: fixed;
    right: 0;
    width: 100%;
    z-index: 1000
}

.profile-nav .mobile-profile-menu .profile-menu-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between
}

.profile-nav .mobile-profile-menu .profile-menu-list,
.profile-nav .mobile-profile-menu ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.profile-nav .mobile-profile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.profile-nav .mobile-profile-menu ul li {
    display: inline;
    font-family: Nunito, arial;
    font-size: 12px;
    font-weight: 700;
    margin-right: 20px;
    padding: 0;
    position: relative
}

.profile-nav .mobile-profile-menu ul li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    color: #3c4852;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    text-decoration: none
}

.profile-nav .mobile-profile-menu ul li a,
.profile-nav .mobile-profile-menu ul li a .profile-menu-img {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.profile-nav .mobile-profile-menu ul li a .profile-menu-img {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background: #3c4852;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 4px 2px rgba(44, 36, 36, .21);
    box-shadow: 0 0 4px 2px rgba(44, 36, 36, .21);
    height: 35px;
    justify-content: center;
    width: 35px
}

.profile-nav .mobile-profile-menu ul li a .profile-menu-img img {
    height: 25px;
    width: 25px
}

.profile-nav .mobile-profile-menu ul li.profile-nav-active a .profile-menu-img {
    background-color: #28c590
}

.profile-nav .mobile-profile-menu .buy-course-btn {
    position: relative
}

.profile-nav .mobile-profile-menu .buy-course-btn a {
    text-decoration: none
}

.profile-nav .mobile-profile-menu .buy-course-btn a .profile-menu-img {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #28c590;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 4px 2px rgba(44, 36, 36, .21);
    box-shadow: 0 0 4px 2px rgba(44, 36, 36, .21);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    justify-content: center;
    left: -40px;
    margin: auto;
    position: absolute;
    top: -68px;
    width: 60px
}

.profile-nav .mobile-profile-menu .buy-course-btn a .profile-menu-img img {
    height: 35px;
    width: 35px
}

.profile-modal .modal-content {
    -webkit-animation: animatebottom .4s;
    animation: animatebottom .4s;
    height: 100vh;
    position: relative
}

.profile-modal .modal-content .modal-header {
    border: 0
}

.profile-modal .modal-content ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
    list-style: none;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.profile-modal .modal-content ul li {
    display: inline;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700;
    margin-top: 20px;
    padding: 0;
    position: relative
}

.profile-modal .modal-content ul li a {
    color: #3c4852;
    text-decoration: none
}

.profile-modal .modal-content ul li a svg {
    height: 20px;
    margin-right: 5px;
    width: 20px
}

.profile-modal .modal-content ul li.profile-nav-active a {
    color: #28c590
}

.profile-modal .modal-content ul li.profile-nav-active a svg {
    fill: #28c590
}

a {
    text-decoration: none
}

a .main-course-nav {
    background-color: #fff;
    border: 1px solid #fff;
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    padding: 30px;
    text-align: center
}

a .main-course-nav:hover {
    border: 1px solid #28c590
}

.static-sub-heading {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

@-webkit-keyframes animatebottom {
    0% {
        bottom: -300px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

@keyframes animatebottom {
    0% {
        bottom: -300px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

.static-page-banner {
    height: 320px !important
}

.col-margin-right {
    margin-right: 15px
}

.col-margin-left {
    margin-left: 15px
}

.light-green-color {
    background-color: #e7f4f0
}

.light-sky-color {
    background-color: #dfecff
}

.catking-card {
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .15);
    padding: 40px 30px;
    text-align: center
}

.catking-card .icon {
    margin-bottom: 20px
}

.catking-card .title {
    font-size: 20px;
    font-weight: 700
}

@media (max-width: 767px) {
    iframe {
        width: 100%
    }
}

body {
    background-color: #f6f6f6
}

.pageloader {
    background: url(/assets/frontend/images/catking-logo.png) 50% 50% no-repeat #f9f9f9;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999
}

section {
    padding: 60px 0
}

.section-heading {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px
}

@media (max-width: 767px) {
    .section-heading {
        font-size: 30px
    }
}

@media (min-width: 1200px) and (max-width:1399px) {
    .section-heading {
        font-size: 30px
    }
}

.full-width-slider .swiper-button-next,
.full-width-slider .swiper-button-prev {
    background: unset;
    border: none;
    height: unset;
    width: unset
}

.full-width-slider .swiper-button-next img,
.full-width-slider .swiper-button-prev img {
    max-width: unset;
    width: 40px
}

.full-width-slider .swiper-button-next:after,
.full-width-slider .swiper-button-prev:after {
    display: none
}

.full-width-slider .swiper-button-next {
    left: 60%;
    position: relative;
    top: 90%
}

.full-width-slider .swiper-button-next img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media (max-width: 600px) {
    .full-width-slider .swiper-button-next {
        left: 0
    }
}

.full-width-slider .swiper-button-prev {
    left: 60%;
    top: 73%
}

@media (max-width: 600px) {
    .full-width-slider .swiper-button-prev {
        left: 0
    }
}

.my-course-content {
    margin-top: 40px
}

.my-course-content h1 {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0
}

@media (min-width: 1024px) and (max-width:1366px) {
    .my-course-content h1 {
        font-size: 24px
    }
}

.my-course-content h1:after {
    border-bottom: 1px solid #767474;
    content: "";
    display: block;
    position: relative;
    top: 10px;
    width: 100%
}

.my-course-content table {
    border-collapse: separate;
    border-spacing: 0 20px;
    margin-top: 20px
}

.my-course-content table tr td,
.my-course-content table tr th {
    border: 0
}

.my-course-content table thead tr th {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 0
}

.my-course-content table thead tr th:last-child {
    float: right
}

@media (min-width: 1024px) and (max-width:1366px) {
    .my-course-content table thead tr th {
        font-size: 18px
    }
}

.my-course-content table tbody tr {
    border-radius: 8px;
    -webkit-box-shadow: 3px 4px 20px rgba(0, 0, 0, .25);
    box-shadow: 3px 4px 20px rgba(0, 0, 0, .25)
}

.my-course-content table tbody tr td {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    padding: 1rem
}

.my-course-content table tbody tr td:last-child {
    float: right
}

.my-course-content table tbody tr td a {
    color: #3c4852
}

@media (min-width: 1024px) and (max-width:1366px) {
    .my-course-content table tbody tr td {
        font-size: 14px
    }
}

.top-header {
    background-color: #2d81f7;
    padding: 10px
}

.top-header .help-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: flex-end
}

@media (max-width: 767px) {
    .top-header .help-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.top-header .help-wrapper .divider {
    border-left: 2px solid #eaeaec;
    height: 25px;
    margin-left: 20px;
    width: 1px;
    z-index: 1
}

.top-header .help-wrapper .contact-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-right: 2rem
}

.top-header .help-wrapper .contact-info .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 14px
}

.top-header .help-wrapper .contact-info .info .name {
    color: #fff;
    font-family: Nunito, arial;
    font-weight: 700
}

.top-header .help-wrapper .contact-info .info .email,
.top-header .help-wrapper .contact-info .info .phone {
    color: #fff;
    font-family: Nunito, arial;
    margin-left: 5px
}

.top-header .help-wrapper .contact-info .info.sales-info {
    margin-left: 15px
}

.top-header .help-wrapper .social-media-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 767px) {
    .top-header .help-wrapper .social-media-info {
        margin-top: 20px
    }
}

.top-header .help-wrapper .social-media-info a {
    margin-right: 20px
}

.top-header .help-wrapper .social-media-info a .fa-brands {
    color: #fff;
    font-size: 25px
}

.header {
    background-color: #f6f6f6;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    position: relative;
    z-index: 10
}

.header .header-logo-img {
    width: 145px
}

.header .nav-menu-btn {
    margin-left: 65px
}

@media (max-width: 992px) {
    .header .login-btn {
        display: none
    }
}

.header .announce-bell {
    padding-left: 1rem
}

.header .announce-bell i {
    color: #3c4852;
    font-size: 20px
}

.header .announce-dropdown {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.header .announce-dropdown .user-account-dropdown {
    color: #000;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    line-height: 50px
}

.header .announce-dropdown img {
    height: 40px;
    margin-right: 10px;
    width: 40px
}

.header .announce-dropdown-wrapper {
    -webkit-animation: rotateMenu .4s ease-in-out forwards;
    animation: rotateMenu .4s ease-in-out forwards;
    display: none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 70px;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    z-index: 10000
}

.header .announce-dropdown-wrapper .announce-dropdown-content {
    position: relative
}

.header .announce-dropdown-wrapper .announce-dropdown-content .announce-dropdown-arrow {
    background: 0 0;
    display: block;
    height: 22px;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: -25px;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    width: 22px;
    z-index: 1
}

.header .announce-dropdown-wrapper .announce-dropdown-content .announce-dropdown-arrow .announce-dropdowwn-arrow-content {
    --antd-arrow-background-color: #fff;
    border-radius: 0 0 2px;
    bottom: 0;
    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, .06);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .06);
    content: "";
    display: block;
    height: 11.3137085px;
    left: 0;
    margin: auto;
    pointer-events: auto;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: translateY(11px) rotate(-135deg);
    transform: translateY(11px) rotate(-135deg);
    width: 11.3137085px
}

.header .announce-dropdown-wrapper .announce-dropdown-content .announce-dropdown-arrow .announce-dropdowwn-arrow-content:before {
    background: var(--antd-arrow-background-color);
    background-position: -10px -10px;
    background-repeat: no-repeat;
    -webkit-clip-path: inset(33% 33%);
    clip-path: inset(33% 33%);
    -webkit-clip-path: path("M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z");
    clip-path: path("M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z");
    content: "";
    height: 33.9411255px;
    left: -11.3137085px;
    position: absolute;
    top: -11.3137085px;
    width: 33.9411255px
}

.header .announce-dropdown-wrapper .announce-dropdown-content .announce-dropdown-inner {
    background-clip: padding-box;
    background-color: #fff;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    padding: 15px;
    position: relative;
    right: -10px;
    top: -25px;
    width: 385px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .header .announce-dropdown-wrapper .announce-dropdown-content .announce-dropdown-inner .section-sub-heading {
        font-size: 18px
    }
}

.header .announce-dropdown-wrapper .announce-dropdown-content .announce-dropdown-inner .announce-dropdown-inner-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
    list-style: none;
    padding-left: 0
}

.header .announce-dropdown-wrapper .announce-dropdown-content .announce-dropdown-inner .announce-dropdown-inner-content li {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 20px;
    padding-top: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .header .announce-dropdown-wrapper .announce-dropdown-content .announce-dropdown-inner .announce-dropdown-inner-content li {
        font-size: 14px
    }
}

.header .announce-dropdown-wrapper .announce-dropdown-content .announce-dropdown-inner .announce-dropdown-inner-content li:last-child {
    margin-bottom: 0
}

.header .other-links {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin-bottom: 0;
    margin-left: auto;
    position: relative
}

@media (max-width: 992px) {
    .header .other-links {
        display: none
    }
}

.header .other-links li {
    margin-right: 20px
}

.header .other-links li a {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none
}

.header .other-links li a:hover {
    color: #28c590
}

@-webkit-keyframes marquee {
    0% {
        left: 0
    }

    to {
        left: -100%
    }
}

.marquee-main-div {
    background-color: #dfecff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.marquee-main-div,
.marquee-main-div .marquee {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.marquee-main-div .marquee {
    -webkit-box-flex: 1;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1;
    flex: 1;
    margin: 0 40px 0 0;
    overflow: hidden;
    padding: 15px 0
}

.marquee-main-div .marquee:before {
    -webkit-animation: marquee 6s linear infinite;
    animation: marquee 6s linear infinite;
    content: attr(data-text) "        " attr(data-text) "        " attr(data-text) "        " attr(data-text) "        " attr(data-text) "        " attr(data-text) "        " attr(data-text) "        " attr(data-text) "        " attr(data-text) "        " attr(data-text) "        " attr(data-text) "        " attr(data-text) "        " attr(data-text) "        " attr(data-text) "        " attr(data-text) "        " attr(data-text) "        " attr(data-text) "        " attr(data-text) "        " attr(data-text) "        " attr(data-text);
    display: block;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
    white-space: pre;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    will-change: transform
}

.marquee-main-div .marquee:hover:before {
    -webkit-animation: none;
    animation: none
}

.marquee-main-div .marquee .marquee-label {
    border-width: 0;
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px
}

.marquee-main-div .fa {
    padding-right: 20px
}

.hero-section {
    padding: 0
}

.hero-section .hero-carousel {
    padding-top: 50px
}

.hero-section .hero-carousel .carousel-indicators button {
    background-color: #cfcfcf;
    border: 1px solid transparent;
    border-radius: 50%;
    height: .5rem;
    width: .5rem
}

.hero-section .hero-carousel .carousel-indicators .active {
    background-color: #2d81f7
}

.hero-section .hero-carousel .slider-content h1 {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .hero-section .hero-carousel .slider-content h1 {
        font-size: 30px;
        line-height: 40px
    }
}

.hero-section .hero-carousel .slider-content p {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .hero-section .hero-carousel .slider-content p {
        font-size: 18px
    }
}

.hero-section .hero-carousel .slider-content ul li {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .hero-section .hero-carousel .slider-content ul li {
        font-size: 18px
    }
}

.hero-section .hero-carousel .slider-content .hero-btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px
}

@media (max-width: 767px) {
    .hero-section .hero-carousel .slider-content .hero-btn {
        margin-bottom: 40px;
        margin-top: 40px
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .hero-section .hero-carousel .slider-content .hero-btn {
        margin-top: 60px
    }
}

.hero-section .hero-carousel .slider-content .hero-btn .watch-video-btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin-left: 22px
}

.hero-section .hero-carousel .slider-content .hero-btn .watch-video-btn a {
    border: 2px dashed #000;
    border-radius: 50px;
    padding: 2px
}

.hero-section .hero-carousel .slider-content .hero-btn .watch-video-btn a .fa {
    background-color: #28c590;
    border-radius: 50%;
    color: #fff;
    height: 50px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    width: 50px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .hero-section .hero-carousel .slider-content .hero-btn .watch-video-btn a .fa {
        height: 40px;
        line-height: 40px;
        width: 40px
    }
}

.hero-section .hero-carousel .slider-content .hero-btn .watch-video-btn p {
    margin-bottom: 0;
    margin-left: 10px
}

@media (max-width: 979px) {
    .hero-section .hero-carousel .slider-content .hero-btn .watch-video-btn p {
        display: none
    }
}

.hero-section .hero-carousel img {
    margin-bottom: 40px;
    max-width: 100%
}

@media (min-width: 992px) and (max-width:1199px) {
    .hero-section .hero-carousel img {
        width: 500px
    }
}

.icon-section {
    background-color: #e7f4f0;
    padding: 40px 0
}

.client-testimonial {
    background-color: #fff;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%
}

@media (max-width: 767px) {
    .client-testimonial .section-heading {
        margin-bottom: 20px
    }
}

.client-testimonial .section-heading:before {
    content: url(/assets/frontend/images/icons/comma.png);
    float: left;
    height: 100px;
    position: relative;
    width: 100px
}

@media (max-width: 767px) {
    .client-testimonial .section-heading:before {
        display: none
    }
}

.client-testimonial .clientTestimonialSwiper .swiper-slide {
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .25);
    box-shadow: 0 0 4px rgba(0, 0, 0, .25);
    margin-bottom: 10px
}

.client-testimonial .clientTestimonialSwiper .swiper-slide .swiper-card {
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25)
}

.client-testimonial .clientTestimonialSwiper .swiper-slide .swiper-card img {
    width: 100%
}

.client-testimonial .clientTestimonialSwiper .swiper-slide .swiper-card .content {
    background-color: #e8f4fa;
    padding: 12px;
    position: relative
}

.client-testimonial .clientTestimonialSwiper .swiper-slide .swiper-card .content .video-play-btn {
    position: absolute;
    right: 30px;
    top: -21px
}

.client-testimonial .clientTestimonialSwiper .swiper-slide .swiper-card .content .video-play-btn .fa {
    background-color: #2d81f7;
    border-radius: 50%;
    color: #fff;
    height: 37px;
    line-height: 37px;
    text-align: center;
    vertical-align: middle;
    width: 37px
}

.client-testimonial .clientTestimonialSwiper .swiper-slide .swiper-card .content h5 {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700
}

@media (min-width: 1200px) and (max-width:1399px) {
    .client-testimonial .clientTestimonialSwiper .swiper-slide .swiper-card .content h5 {
        font-size: 18px
    }
}

.client-testimonial .clientTestimonialSwiper .swiper-slide .swiper-card .content p {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px
}

@media (min-width: 1200px) and (max-width:1399px) {
    .client-testimonial .clientTestimonialSwiper .swiper-slide .swiper-card .content p {
        font-size: 14px
    }
}

.client-testimonial .clientTestimonialSwiper .swiper-slide .swiper-card .content .read-more-btn {
    background: transparent;
    border: 0;
    color: #2d81f7;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 0
}

.client-testimonial .clientTestimonialSwiper .swiper-slide .swiper-card .content .content-footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between
}

.client-testimonial .clientTestimonialSwiper .swiper-slide .swiper-card .content .content-footer .university-name {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 0
}

@media (min-width: 1200px) and (max-width:1399px) {
    .client-testimonial .clientTestimonialSwiper .swiper-slide .swiper-card .content .content-footer .university-name {
        font-size: 14px
    }
}

.client-testimonial .clientTestimonialSwiper .swiper-slide .swiper-card .content .content-footer .university-rank {
    color: #28c590;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 0
}

@media (min-width: 1200px) and (max-width:1399px) {
    .client-testimonial .clientTestimonialSwiper .swiper-slide .swiper-card .content .content-footer .university-rank {
        font-size: 14px
    }
}

@media (min-width: 576px) {
    .client-testimonial .testimonial-modal .modal-dialog {
        max-width: 700px
    }
}

.client-testimonial .testimonial-modal .modal-dialog .modal-content {
    background-color: #e8f4fa
}

.client-testimonial .testimonial-modal .modal-dialog .modal-content .modal-header {
    border-bottom: 0
}

.client-testimonial .testimonial-modal .modal-dialog .modal-content .modal-body .content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center
}

.client-testimonial .testimonial-modal .modal-dialog .modal-content .modal-body .content-wrapper img {
    margin: 0 auto;
    max-width: 100%;
    width: 200px
}

.client-testimonial .testimonial-modal .modal-dialog .modal-content .modal-body .content-wrapper p {
    font-family: Nunito, arial;
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 20px
}

.client-testimonial .testimonial-modal .modal-dialog .modal-content .modal-body .content-footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 20px
}

.client-testimonial .testimonial-modal .modal-dialog .modal-content .modal-body .content-footer .university-name {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 0
}

@media (min-width: 1200px) and (max-width:1399px) {
    .client-testimonial .testimonial-modal .modal-dialog .modal-content .modal-body .content-footer .university-name {
        font-size: 14px
    }
}

.client-testimonial .testimonial-modal .modal-dialog .modal-content .modal-body .content-footer .university-rank {
    color: #28c590;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 0
}

@media (min-width: 1200px) and (max-width:1399px) {
    .client-testimonial .testimonial-modal .modal-dialog .modal-content .modal-body .content-footer .university-rank {
        font-size: 14px
    }
}

.client-testimonial .catking-btn {
    display: inline-block;
    margin-top: 20px
}

.our-courses h5 {
    margin-bottom: 30px
}

.our-courses .our-courses-tab-content {
    margin-top: 20px
}

.our-courses .all-courses-btn {
    margin-top: 40px;
    text-align: center
}

.our-courses .swiper-button-next:after,
.our-courses .swiper-button-prev:after {
    color: #000;
    font-size: 20px
}

.cta {
    background-color: #dfecff;
    padding: 40px 0
}

.banner {
    position: relative
}

@media (max-width: 767px) {
    .banner .catking-banner-img {
        margin-top: 20px
    }
}

.banner img {
    width: 100%
}

.trending-courses {
    position: relative
}

.referral-system {
    background-color: #eaf3ff;
    padding: 40px 0
}

.referral-system .sub-heading {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700;
    margin-top: 5px;
    text-align: center
}

@media (max-width: 767px) {
    .referral-system .sub-heading {
        font-size: 25px;
        margin-top: 0
    }
}

@media (min-width: 768px) and (max-width:979px) {
    .referral-system .sub-heading {
        margin-top: 0
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .referral-system .sub-heading {
        font-size: 18px
    }
}

.referral-system .referral-first-row {
    margin-bottom: 20px
}

.referral-system .refer-btn {
    margin-top: 40px;
    text-align: center
}

.bundled-courses .bundle-course-card {
    margin-top: 40px
}

.bundled-courses .course-btn {
    margin-top: 40px;
    text-align: center
}

.our-faculty {
    background-color: #e7f4f0
}

.our-faculty p {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
    text-align: center
}

@media (max-width: 767px) {
    .our-faculty p {
        font-size: 16px;
        margin-top: 0
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .our-faculty p {
        font-size: 14px
    }
}

.our-faculty .swiper .swiper-wrapper {
    margin-bottom: 70px
}

.our-faculty .swiper .swiper-wrapper .faculty img {
    width: 100%
}

.our-faculty .swiper .swiper-wrapper .faculty .faculty-name {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700;
    text-align: center
}

@media (max-width: 979px) {
    .our-faculty .swiper .swiper-wrapper .faculty .faculty-name {
        font-size: 25px
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .our-faculty .swiper .swiper-wrapper .faculty .faculty-name {
        font-size: 18px
    }
}

.our-faculty .swiper .swiper-wrapper .faculty .college-rank {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    text-align: center
}

@media (min-width: 1024px) and (max-width:1366px) {
    .our-faculty .swiper .swiper-wrapper .faculty .college-rank {
        font-size: 14px
    }
}

.our-faculty .swiper .swiper-button-next:after,
.our-faculty .swiper .swiper-button-prev:after {
    color: #3c4852
}

.our-faculty .swiper #faculty-button-next {
    left: 51%;
    top: 90%
}

@media (max-width: 767px) {
    .our-faculty .swiper #faculty-button-next {
        left: 58%;
        top: 94%
    }
}

.our-faculty .swiper #faculty-button-prev {
    left: 47%;
    top: 90%
}

@media (max-width: 767px) {
    .our-faculty .swiper #faculty-button-prev {
        left: 47%;
        top: 94%
    }
}

.how-use-course p {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    line-height: 30px;
    margin-top: 20px;
    text-align: center
}

@media (max-width: 767px) {
    .how-use-course p {
        font-size: 16px;
        line-height: 30px
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .how-use-course p {
        font-size: 14px
    }
}

.how-use-course .how-video {
    background: #fff;
    -webkit-box-shadow: -2px -2px 20px rgba(0, 0, 0, .15), 2px 2px 20px rgba(0, 0, 0, .15);
    box-shadow: -2px -2px 20px rgba(0, 0, 0, .15), 2px 2px 20px rgba(0, 0, 0, .15);
    padding: 10px;
    position: relative
}

.how-use-course .how-video img {
    width: 100%
}

.how-use-course a {
    left: 45%;
    position: absolute;
    top: 45%
}

.how-use-course a .fa {
    background-color: #2d81f7;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    vertical-align: middle;
    width: 60px
}

.checklist {
    background-color: #eaf3ff;
    padding: 40px 0
}

.director-testimonials {
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
    margin-bottom: 40px;
    margin-top: 40px;
    position: relative
}

.director-testimonials .swiper {
    margin-top: 20px
}

.director-testimonials .swiper .swiper-slide {
    background-color: #e7f4f0;
    padding: 20px 15px
}

.director-testimonials .swiper .swiper-slide .testimonial .company-logo {
    width: 100px
}

.director-testimonials .swiper .swiper-slide .testimonial p {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 40px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .director-testimonials .swiper .swiper-slide .testimonial p {
        font-size: 14px
    }
}

.director-testimonials .swiper .swiper-slide .testimonial .other-detail {
    margin-top: 25px
}

@media (max-width: 991px) {
    .director-testimonials .swiper .swiper-slide .testimonial .other-detail {
        margin-top: 20px
    }
}

.director-testimonials .swiper .swiper-slide .testimonial .other-detail .name {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .director-testimonials .swiper .swiper-slide .testimonial .other-detail .name {
        font-size: 14px
    }
}

.director-testimonials .swiper .swiper-slide .testimonial .other-detail .college-name {
    color: #2d81f7;
    font-family: Nunito, arial;
    font-size: 16px;
    margin-top: 10px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .director-testimonials .swiper .swiper-slide .testimonial .other-detail .college-name {
        font-size: 14px
    }
}

.director-testimonials .swiper .swiper-slide .testimonial .video-thumbnail {
    height: 320px;
    width: 100%
}

.director-testimonials .swiper .swiper-slide .testimonial a {
    left: 40%;
    position: absolute;
    top: 60%
}

@media (max-width: 767px) {
    .director-testimonials .swiper .swiper-slide .testimonial a {
        left: 47%;
        top: 67%
    }
}

.director-testimonials .swiper .swiper-slide .testimonial a .fa {
    background-color: #2d81f7;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    vertical-align: middle;
    width: 60px
}

.director-testimonials .swiper .swiper-button-next:after,
.director-testimonials .swiper .swiper-button-prev:after {
    color: #000
}

.director-testimonials .swiper .swiper-arrow .swiper-button-next,
.director-testimonials .swiper .swiper-arrow .swiper-button-prev {
    background: unset;
    border: none;
    height: unset;
    position: absolute;
    width: unset
}

.director-testimonials .swiper .swiper-arrow .swiper-button-prev {
    left: 1%;
    top: 46%
}

.director-testimonials .swiper .swiper-arrow .swiper-button-next {
    left: unset;
    right: 1%;
    top: 46%
}

.top-colleges p {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
    text-align: center
}

@media (min-width: 1024px) and (max-width:1366px) {
    .top-colleges p {
        font-size: 14px
    }
}

.top-colleges .swiper {
    margin-top: 20px
}

.top-colleges .swiper img {
    max-width: 100%
}

.learner-support .learner-row {
    margin-top: 20px
}

.learner-support .learner-row .student-content {
    background-color: #e7f4f0;
    padding: 24px 43px
}

.learner-support .learner-row .student-content .heading {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700
}

@media (max-width: 767px) {
    .learner-support .learner-row .student-content .heading {
        font-size: 24px;
        text-align: center
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .learner-support .learner-row .student-content .heading {
        font-size: 18px
    }
}

.learner-support .learner-row .student-content .social-button {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-top: 20px
}

@media (max-width: 767px) {
    .learner-support .learner-row .student-content .social-button {
        display: block;
        margin-bottom: 30px;
        text-align: center
    }

    .learner-support .learner-row .student-content .social-button .social-icons {
        margin-bottom: 40px;
        padding-left: 20px
    }
}

.learner-support .learner-row .student-content .social-button .social-icons a {
    color: transparent;
    margin-right: 20px
}

.learner-support .learner-row .student-content .social-button .social-icons a img {
    height: 40px;
    width: 40px
}

.learner-support .learner-row .student-content .social-button .support-content {
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

.faq .course-faq {
    margin-top: 20px
}

footer {
    background-color: #252525
}

footer .footer-logo {
    padding-top: 20px
}

footer .footer-logo .footer-logo-img {
    width: 230px
}

footer .footer-content {
    margin-top: 44px
}

footer .footer-content .footer-description {
    color: #fff;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

footer .footer-content .catking-footer-btns {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-top: 20px
}

@media (max-width: 400px) {
    footer .footer-content .catking-footer-btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media (min-width: 768px) and (max-width:991px) {
    footer .footer-content .catking-footer-btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

footer .footer-content .catking-footer-btns .catking-dashboard {
    background: #fff;
    border-radius: 8px;
    padding: 18px 15px
}

@media (max-width: 991px) {
    footer .footer-content .catking-footer-btns .catking-dashboard {
        margin-bottom: 10px
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    footer .footer-content .catking-footer-btns .catking-dashboard {
        padding: 10px 15px
    }
}

footer .footer-content .catking-footer-btns .catking-dashboard:hover {
    background-color: #28c590
}

footer .footer-content .catking-footer-btns .catking-dashboard:hover a {
    color: #fff
}

footer .footer-content .catking-footer-btns .catking-dashboard a {
    color: #000;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none
}

@media (min-width: 1024px) and (max-width:1366px) {
    footer .footer-content .catking-footer-btns .catking-dashboard a {
        font-size: 14px
    }
}

footer .footer-content .catking-footer-contact-info {
    margin-top: 20px
}

footer .footer-content .catking-footer-contact-info .connect-heading {
    color: #fff;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px
}

footer .footer-content .catking-footer-contact-info .email a {
    color: #fff;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    margin-left: 10px;
    text-decoration: none
}

footer .footer-content .catking-footer-contact-info .email a:hover {
    color: #28c590
}

footer .footer-content .catking-footer-contact-info .phone {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px
}

footer .footer-content .catking-footer-contact-info .phone .phone-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

footer .footer-content .catking-footer-contact-info .phone .phone-wrapper .phone-number {
    color: #fff;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    margin-left: 10px
}

footer .footer-content .bottom-content {
    margin-top: 20px
}

footer .footer-content .social-icons {
    margin-top: 88px
}

@media (max-width: 767px) {
    footer .footer-content .social-icons {
        margin-top: 40px
    }
}

footer .footer-content .social-icons img {
    margin-right: 40px;
    width: 30px
}

@media (max-width: 767px) {
    footer .footer-content .social-icons img {
        margin-right: 20px;
        width: 25px
    }

    footer .footer-content .footer-menu {
        margin-top: 10px
    }

    footer .footer-content .footer-menu .catking-links {
        padding-left: 20px
    }
}

footer .footer-content .footer-menu .menu-heading {
    color: #fff;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700
}

@media (min-width: 768px) and (max-width:992px) {
    footer .footer-content .footer-menu .menu-heading {
        font-size: 16px
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    footer .footer-content .footer-menu .menu-heading {
        font-size: 20px
    }
}

footer .footer-content .footer-menu .menu-items {
    margin-top: 10px
}

footer .footer-content .footer-menu .menu-items ul {
    padding: 0
}

footer .footer-content .footer-menu .menu-items ul li {
    color: #fff;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    list-style: none
}

@media (min-width: 1024px) and (max-width:1366px) {
    footer .footer-content .footer-menu .menu-items ul li {
        font-size: 14px
    }
}

footer .footer-content .footer-menu .menu-items ul li a {
    color: #fff;
    text-decoration: none
}

footer .footer-content .footer-menu .menu-items ul li a:hover {
    color: #28c590
}

footer .footer-content .footer-menu .menu-items .our-app-wrapper li {
    line-height: 40px
}

footer .footer-content .footer-menu .menu-items .our-app-wrapper li a img {
    width: 30px
}

footer .copyright-content {
    margin-top: 60px
}

@media (max-width: 767px) {
    footer .copyright-content {
        margin-top: 30px
    }
}

footer .copyright-content .copyright {
    color: #fff;
    font-family: Nunito, arial;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 35px
}

footer .copyright-content .copyright:before {
    background-color: #fff;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 2px;
    width: 100%
}

.paid-course-page {
    padding: 0;
    position: relative
}

.paid-course-page .course-detail-grid {
    grid-gap: 0 50px;
    display: grid;
    grid-template-columns: 1fr .4fr;
    grid-template-rows: -webkit-max-content;
    grid-template-rows: max-content
}

@media (max-width: 991px) {
    .paid-course-page .course-detail-grid {
        grid-gap: 0 50px;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: -webkit-max-content;
        grid-template-rows: max-content
    }
}

.paid-course-page .course-detail-grid .top-bar {
    padding: 40px 0
}

.paid-course-page .course-detail-grid .top-bar .course-detail-banner {
    background-color: #dfecff;
    height: 245px;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1
}

@media (min-width: 280px) and (max-width:378px) {
    .paid-course-page .course-detail-grid .top-bar .course-detail-banner {
        height: 370px
    }
}

@media (min-width: 379px) and (max-width:439px) {
    .paid-course-page .course-detail-grid .top-bar .course-detail-banner {
        height: 350px
    }
}

@media (min-width: 440px) and (max-width:1200px) {
    .paid-course-page .course-detail-grid .top-bar .course-detail-banner {
        height: 300px
    }
}

.paid-course-page .course-detail-grid .top-bar h1 {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 34px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .top-bar h1 {
        font-size: 24px
    }
}

.paid-course-page .course-detail-grid .top-bar p {
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .top-bar p {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .top-bar .sub-description {
    margin-bottom: 10px;
    margin-top: 10px
}

.paid-course-page .course-detail-grid .top-bar .sub-description p {
    display: none;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

.paid-course-page .course-detail-grid .top-bar .three-course {
    position: relative
}

.paid-course-page .course-detail-grid .top-bar .three-course .course-tab {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 1em;
    width: 100%
}

@media (min-width: 280px) and (max-width:769px) {
    .paid-course-page .course-detail-grid .top-bar .three-course .course-tab {
        display: block
    }
}

@media (min-width: 992px) and (max-width:1299px) {
    .paid-course-page .course-detail-grid .top-bar .three-course .course-tab {
        top: 2.5em
    }
}

@media (max-width: 991px) {
    .paid-course-page .course-detail-grid .top-bar .three-course .swiper-slide {
        margin-bottom: 10px
    }
}

.paid-course-page .course-detail-grid .top-bar .three-course .single-course-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    color: #3c4852;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 10px;
    padding: 10px;
    position: relative;
    text-decoration: none
}

@media (min-width: 576px) {
    .paid-course-page .course-detail-grid .top-bar .three-course .single-course-content {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0
    }
}

@media (max-width: 991px) {
    .paid-course-page .course-detail-grid .top-bar .three-course .single-course-content {
        margin-bottom: 20px
    }
}

.paid-course-page .course-detail-grid .top-bar .three-course .single-course-content.course-tab-active {
    background-color: #2d81f7;
    color: #fff
}

.paid-course-page .course-detail-grid .top-bar .three-course .single-course-content.course-tab-active .price {
    color: #f9d133
}

.paid-course-page .course-detail-grid .top-bar .three-course .single-course-content.course-tab-active .price s {
    color: #cd111f
}

.paid-course-page .course-detail-grid .top-bar .three-course .single-course-content.course-tab-active .recommend {
    color: #f9d133
}

.paid-course-page .course-detail-grid .top-bar .three-course .single-course-content .card-inner-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.paid-course-page .course-detail-grid .top-bar .three-course .single-course-content .card-inner-content .course-name {
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .top-bar .three-course .single-course-content .card-inner-content .course-name {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .top-bar .three-course .single-course-content .course-tab-price {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between
}

.paid-course-page .course-detail-grid .top-bar .three-course .single-course-content .recommend {
    color: #2d81f7;
    font-family: Nunito, arial;
    font-size: 14px;
    line-height: 24px
}

.paid-course-page .course-detail-grid .top-bar .three-course .single-course-content .price {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .top-bar .three-course .single-course-content .price {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .top-bar .three-course .single-course-content .price s {
    color: #4f4f4d;
    font-family: Nunito, arial;
    font-size: 14px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .top-bar .three-course .single-course-content .price s {
        font-size: 12px
    }
}

.paid-course-page .course-detail-grid .sidebar-content {
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
    grid-row: span 3;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin-top: 80px;
    position: relative
}

@media (min-width: 280px) and (max-width:769px) {
    .paid-course-page .course-detail-grid .sidebar-content {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        margin-top: 18rem;
        order: 1
    }
}

@media (min-width: 770px) and (max-width:991px) {
    .paid-course-page .course-detail-grid .sidebar-content {
        margin-top: 9rem
    }
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-video {
    overflow: hidden;
    position: relative
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-video:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-video img {
    width: 100%
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-video .video-play-btn {
    left: 46%;
    position: absolute;
    top: 46%
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-video .video-play-btn .fa {
    background-color: #2d81f7;
    border-radius: 50%;
    color: #fff;
    height: 37px;
    line-height: 37px;
    text-align: center;
    vertical-align: middle;
    width: 37px
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price {
    padding: .625rem 1.2rem 2.75rem
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .price {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 2.125rem;
    font-weight: 400;
    font-weight: 700
}

@media (min-width: 992px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .price {
        font-size: 1.5rem
    }
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .price s {
    color: #767474;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .price s {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .emi-option {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .emi-option .text {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .emi-option .text {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .emi-option .emi-popover {
    color: unset
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .emi-option .emi-popover .fa {
    font-size: 20px;
    margin-left: .625rem
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .get-discount {
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: .625rem
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .get-discount {
        font-size: 14px;
        line-height: 10px
    }
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .course-timer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: .625rem
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .course-timer .countdown {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    color: red;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    font-size: 23px;
    font-weight: 700;
    line-height: 12px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .course-timer .countdown {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .course-timer .timer-text {
    font-size: 18px;
    letter-spacing: 1px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .course-timer .timer-text {
        font-size: 12px;
        letter-spacing: 0
    }
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .course-timer span {
    color: red;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    margin-left: .625rem
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .course-timer span {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .offer {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .offer {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .add-cart-btn,
.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .buy-course-btn {
    margin-top: .625rem
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .course-benefits {
    margin-top: 1.25rem
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .course-benefits .text {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: .938rem
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .course-benefits .text {
        font-size: 18px
    }
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .course-benefits .benefit-table {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .course-benefits .benefit-table .table-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: .938rem
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .course-benefits .benefit-table .table-content .table-content-number,
.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .course-benefits .benefit-table .table-content .table-content-text {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

@media (min-width: 1024px) and (max-width:1366px) {

    .paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .course-benefits .benefit-table .table-content .table-content-number,
    .paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .course-benefits .benefit-table .table-content .table-content-text {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .line-border {
    border: 1px solid #212121;
    position: relative;
    top: 10px
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .query {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    margin-top: 2.25rem
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .query {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .contact-us-btn {
    margin-top: 1.25rem
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .enroll {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    margin-top: 1.25rem
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .enroll {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .sidebar-content .sidebar-course-price .discount-btn {
    margin-top: 1.25rem
}

@media (max-width: 991px) {
    .paid-course-page .course-detail-grid .single-course-body {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content {
    margin-top: 7rem
}

@media (max-width: 991px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content {
        margin-top: 3rem
    }
}

@media (min-width: 992px) and (max-width:1299px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content {
        margin-top: 9rem
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul {
    border-bottom: unset
}

@media (max-width: 991px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 40px;
    padding: 10px 20px
}

@media (max-width: 991px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav {
        margin-right: 0;
        padding: 5px
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav {
        margin-right: 0
    }
}

@media (min-width: 1200px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav {
        margin-right: 15px
    }
}

@media (max-width: 991px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav svg {
        display: none
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav.active {
    background-color: #28c590;
    border-radius: 30px;
    padding: 10px 20px
}

@media (max-width: 991px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav.active {
        border: none;
        margin-right: 0;
        padding: 5px
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav.active svg path {
    fill: #fff
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav.active p {
    color: #fff
}

@media (max-width: 991px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav.active p {
        margin-left: 0
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav.active:hover svg path {
    fill: #fff
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav.active:hover p {
    color: #fff
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav:hover {
    border-color: transparent
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav:hover svg path {
    fill: #28c590
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav:hover p {
    color: #28c590
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav p {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 0;
    margin-left: 10px
}

@media (min-width: 280px) and (max-width:300px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav p {
        font-size: 14px
    }
}

@media (max-width: 991px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav p {
        margin-left: 0
    }
}

@media (min-width: 992px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content ul .course-nav p {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content {
    margin-top: 30px
}

@media (max-width: 991px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content {
        margin-top: 20px
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane {
    background-color: #fff
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .overview-tab-content {
    padding: 20px
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .overview-tab-content .description {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 22px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .overview-tab-content .description {
        font-size: 18px
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .overview-tab-content .online-course {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .overview-tab-content .online-course {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .overview-tab-content ul {
    margin-top: 10px
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .overview-tab-content ul li {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .overview-tab-content ul li {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .schedule-tab-content {
    padding: 0 20px
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .schedule-tab-content .schedule-table {
    border-collapse: separate;
    border-spacing: 0 20px
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .schedule-tab-content .schedule-table thead tr th {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .schedule-tab-content .schedule-table thead tr th {
        font-size: 18px
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .schedule-tab-content .schedule-table tbody tr {
    background-color: #d9d9d9
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .schedule-tab-content .schedule-table tbody tr:nth-of-type(odd) {
    background-color: #dfecff
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .schedule-tab-content .schedule-table tbody tr td {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .schedule-tab-content .schedule-table tbody tr td {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .schedule-content {
    background-color: #fff;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    margin-bottom: 20px;
    padding: 10px
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .schedule-content .schedule-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .schedule-content .schedule-header .schedule-time {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .schedule-content .schedule-header .schedule-time span {
    font-weight: 400
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .schedule-content .schedule-header .schedule-time {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .schedule-content .topic {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content {
    padding: 20px
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .review-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between
}

@media (min-width: 280px) and (max-width:440px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .review-header {
        display: block
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .review-header .review-text {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 38px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .review-header .review-text {
        font-size: 18px
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .review-header .rate-product-btn {
    background: #28c590;
    border-radius: 8px;
    color: #fff;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    padding: 10px;
    text-decoration: none
}

@media (min-width: 280px) and (max-width:440px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .review-header .rate-product-btn {
        line-height: 60px
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .review-header .rate-product-btn {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .rating-box {
    margin-top: 20px
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .rating-box .total-rating {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .rating-box .total-rating .rating-number {
    color: #2d81f7;
    font-family: Circular Std, sans-serif;
    font-size: 65px;
    font-weight: 700
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .rating-box .total-rating .based-review-text {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    text-align: center
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .rating-box .total-rating .based-review-text {
        font-size: 14px
    }
}

@media (max-width: 991px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .rating-box .rating-system {
        margin-top: 20px
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .rating-box .rating-bar .middle {
    margin-top: 15px
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .rating-box .rating-bar .middle:first-child {
    margin-top: 5px
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .rating-box .rating-bar .middle .bar-container {
    border: 1px solid #ffc107;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    width: 100%
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .rating-box .rating-bar .middle .bar-container .bar {
    min-width: 5%
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .rating-box .rating-bar .middle .bar-container .bar-5 {
    background-color: #ffc107;
    height: 10px;
    width: 80%
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .rating-box .rating-bar .middle .bar-container .bar-4 {
    background-color: #ffc107;
    height: 10px;
    width: 60%
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .rating-box .rating-bar .middle .bar-container .bar-3 {
    background-color: #ffc107;
    height: 10px;
    width: 40%
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .rating-box .rating-bar .middle .bar-container .bar-2 {
    background-color: #ffc107;
    height: 10px;
    width: 20%
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .rating-box .rating-bar .middle .bar-container .bar-1 {
    background-color: #ffc107;
    height: 10px;
    width: 10%
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .comment-box {
    margin-top: 20px
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .comment-box .comment-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 20px
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .comment-box .comment-content .user-image img {
    border-radius: 50%;
    height: 80px;
    width: 80px
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .comment-box .comment-content .user-comments-section {
    margin-left: 10px
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .comment-box .comment-content .user-comments-section .name-rating {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .comment-box .comment-content .user-comments-section .name-rating .user-name {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700;
    margin-right: 40px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .comment-box .comment-content .user-comments-section .name-rating .user-name {
        font-size: 18px
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .comment-box .comment-content .user-comments-section .comment-time {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .comment-box .comment-content .user-comments-section .comment-time {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .comment-box .comment-content .user-comments-section .user-comment {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .review-tab-content .comment-box .comment-content .user-comments-section .user-comment {
        font-size: 14px
    }
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .faq-tab-content {
    padding: 20px
}

.paid-course-page .course-detail-grid .single-course-body .single-course-body-content .single-course-tab-content .course-tab-pane .faq-tab-content .faq-text {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px
}

.paid-course-page .course-detail-grid .single-course-body .contact-content {
    background-color: #fff;
    margin-top: 20px;
    padding: .625rem 1.2rem 2.75rem
}

.paid-course-page .course-detail-grid .single-course-body .contact-content .query {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    margin-top: 2.25rem
}

.paid-course-page .course-detail-grid .single-course-body .contact-content .contact-us-btn {
    margin-top: 1.25rem
}

.paid-course-page .course-detail-grid .single-course-body .contact-content .enroll {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    margin-top: 1.25rem
}

.paid-course-page .course-detail-grid .single-course-body .contact-content .discount-btn {
    margin-top: 1.25rem
}

.paid-course-page .course-detail-grid .single-course-body .footer-buy-now-btn {
    background-color: #fff;
    bottom: 0;
    -webkit-box-shadow: 0 -2px 4px rgba(0, 0, 0, .08), 0 -4px 12px rgba(0, 0, 0, .08);
    box-shadow: 0 -2px 4px rgba(0, 0, 0, .08), 0 -4px 12px rgba(0, 0, 0, .08);
    left: 0;
    overflow-y: hidden;
    padding: .8rem 1.6rem;
    position: fixed;
    right: 0;
    width: 100%;
    z-index: 1000
}

.paid-course-page .course-detail-grid .single-course-body .footer-buy-now-btn .fix-footer-price {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between
}

.paid-course-page .course-detail-grid .single-course-body .footer-buy-now-btn .fix-footer-price .footer-course-price {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

.paid-course-page .course-detail-grid .single-course-body .footer-buy-now-btn .fix-footer-price .footer-course-price span {
    color: #767474;
    font-size: 14px
}

.paid-course-page .course-detail-grid .single-course-body .footer-buy-now-btn .fix-footer-price .catking-btn {
    text-align: center;
    width: 70%
}

.rate-modal .modal-content {
    background-color: #f6f6f6;
    padding: 20px
}

.rate-modal .modal-header {
    border: 0
}

.rate-modal .rate-heading {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center
}

.rate-modal .rating-form {
    margin-bottom: 40px;
    margin-top: 40px
}

.rate-modal .rating-form .form-fields {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.rate-modal .rating-form .form-fields .form-textarea {
    border: 1px solid #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    margin-top: 10px;
    padding: 20px
}

.rate-modal .rating-form .form-btn {
    margin-top: 2rem
}

.rate-modal .rating-form .form-btn .catking-btn {
    width: 100%
}

@media (min-width: 1200px) {
    .rate-modal .rating-form .form-btn .catking-btn {
        width: 60%
    }
}

.full-banner img {
    width: 100%
}

.related-courses {
    background-color: #e7f4f0;
    position: relative
}

.related-courses .relatedCourseSwiper .swiper-slide {
    margin-bottom: 10px
}

.related-courses .related-course-slider-row {
    margin-top: 20px
}

.auth-page {
    margin-left: auto;
    margin-right: auto
}

@media (min-width: 1200px) {
    .auth-page {
        width: 40rem
    }
}

.auth-page h1 {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 36px;
    font-weight: 450
}

.auth-page .auth-form {
    margin-top: 40px
}

.auth-page .auth-form .form-fields {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.auth-page .auth-form .form-fields label {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

.auth-page .auth-form .form-fields .form-input-field {
    border: 1px solid #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    margin-top: 10px;
    padding: 15px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .auth-page .auth-form .form-fields .form-input-field {
        font-size: 14px
    }
}

.auth-page .auth-form .form-fields .form-input-field:focus-visible {
    outline: none
}

.auth-page .auth-form .agree-checkbox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.auth-page .auth-form .agree-checkbox input[type=checkbox] {
    border-radius: 0;
    height: 1.15em;
    margin-right: 10px;
    -webkit-transform: translateY(-.075em);
    transform: translateY(-.075em);
    width: 1.15em
}

.auth-page .auth-form .agree-checkbox a {
    color: #2d81f7;
    text-decoration: none
}

.auth-page .auth-form .form-btn {
    margin-top: 2rem
}

.auth-page .auth-form .form-btn .catking-btn {
    width: 100%
}

.auth-page .already-account {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    text-align: center
}

.auth-page .already-account a {
    color: #2d81f7;
    font-weight: 700;
    text-decoration: none
}

.auth-page .otp-form .otp-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    width: 340px
}

.auth-page .otp-form .otp-content label {
    text-align: left
}

.auth-page .otp-form .otp-content .otp-fields {
    margin-bottom: 20px
}

.auth-page .otp-form .otp-content .otp-fields .form-input-field {
    border: 1px solid #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    height: 60px;
    margin-right: 25px;
    margin-top: 10px;
    padding: 10px;
    width: 60px
}

.auth-page .otp-form .otp-content .otp-fields .form-input-field:focus-visible {
    outline: none
}

.auth-page .otp-form .send-otp {
    color: #2d81f7;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
    text-decoration: none
}

.auth-page .checkbox-password-div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 5px;
    margin-top: 10px
}

.auth-page .checkbox-password-div a {
    color: #2d81f7;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none
}

.auth-page .login-options,
.auth-page .login-otp {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    text-align: center
}

.auth-page .login-otp {
    margin-top: 20px
}

.auth-page .login-otp a {
    color: #2d81f7;
    font-weight: 700;
    text-decoration: none
}

.auth-page .login-link {
    margin-top: 60px
}

.cart-custom {
    padding-bottom: 0
}

.cart-custom img {
    width: 100%
}

.cart-custom .text-bg {
    background-color: #dfecff;
    padding: 20px
}

.cart-custom .text-bg .text {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

.cart .cart-content {
    background-color: #fff;
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
    padding: 40px 26px
}

.cart .cart-content h1 {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 36px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .cart .cart-content h1 {
        font-size: 24px
    }
}

@media (min-width: 1200px) {
    .cart .cart-content .cart-item-col {
        margin-right: 65px
    }
}

.cart .cart-content .cart-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
    padding: 10px 20px
}

@media (max-width: 1199px) {
    .cart .cart-content .cart-items {
        display: block
    }
}

.cart .cart-content .cart-items .item-name {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .cart .cart-content .cart-items .item-name {
        font-size: 14px
    }
}

.cart .cart-content .cart-items .rating-month {
    margin-top: 10px
}

@media (min-width: 280px) and (max-width:480px) {
    .cart .cart-content .cart-items .rating-month {
        display: block
    }
}

.cart .cart-content .cart-items .category {
    color: #2d81f7;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

@media (min-width: 1024px) and (max-width:1366px) {
    .cart .cart-content .cart-items .category {
        font-size: 14px
    }
}

@media (min-width: 280px) and (max-width:340px) {
    .cart .cart-content .cart-items .rating-content .rate-review {
        display: block
    }

    .cart .cart-content .cart-items .rating-content .rate-review p {
        margin-left: 0;
        margin-right: 0
    }
}

.cart .cart-content .cart-items .cart-inner-right-content .price {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    text-align: right
}

@media (max-width: 1199px) {
    .cart .cart-content .cart-items .cart-inner-right-content .price {
        margin-top: 10px;
        text-align: left
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .cart .cart-content .cart-items .cart-inner-right-content .price {
        font-size: 14px
    }
}

.cart .cart-content .cart-items .cart-inner-right-content .price s {
    color: #989696;
    font-size: 12px;
    font-weight: 400
}

.cart .cart-content .cart-items .cart-inner-right-content .remove-btn {
    color: #2d81f7;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none
}

@media (min-width: 1024px) and (max-width:1366px) {
    .cart .cart-content .cart-items .cart-inner-right-content .remove-btn {
        font-size: 14px
    }
}

.cart .cart-content .add-more-btn {
    margin-top: 50px;
    text-align: right
}

.cart .cart-content .total-price-content {
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
    margin-top: 20px;
    padding: 10px 20px
}

@media (max-width: 991px) {
    .cart .cart-content .total-price-content {
        margin-top: 40px
    }
}

.cart .cart-content .total-price-content .total {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .cart .cart-content .total-price-content .total {
        font-size: 14px
    }
}

.cart .cart-content .total-price-content .price {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 30px;
    font-weight: 700;
    margin-top: 20px
}

@media (max-width: 991px) {
    .cart .cart-content .total-price-content .price {
        font-size: 22px
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .cart .cart-content .total-price-content .price {
        font-size: 24px;
        margin-top: 10px
    }
}

.cart .cart-content .total-price-content .price s {
    color: #767474;
    font-size: 22px;
    font-weight: 400;
    margin-left: 10px
}

@media (max-width: 991px) {
    .cart .cart-content .total-price-content .price s {
        font-size: 16px
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .cart .cart-content .total-price-content .price s {
        font-size: 18px
    }
}

.cart .cart-content .total-price-content .discount-applied {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .cart .cart-content .total-price-content .discount-applied {
        font-size: 14px;
        margin-top: 10px
    }
}

.cart .cart-content .total-price-content .checkout-btn {
    margin-top: 20px
}

.cart .cart-content .total-price-content .checkout-btn .catking-btn {
    display: inline-block;
    text-align: center;
    width: 100%
}

@media (min-width: 1024px) and (max-width:1366px) {
    .cart .cart-content .total-price-content .checkout-btn {
        margin-top: 10px
    }
}

.cart .cart-content .total-price-content .discount-coupon {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .cart .cart-content .total-price-content .discount-coupon {
        font-size: 14px
    }
}

.cart .cart-content .total-price-content .discount-input {
    position: relative
}

.cart .cart-content .total-price-content .discount-input .form-input-field {
    border: 1px solid #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    margin-top: 10px;
    padding: 15px;
    width: 100%
}

.cart .cart-content .total-price-content .discount-input .apply-btn {
    background-color: #28c590;
    border: 1px solid #28c590;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    color: #fff;
    padding: 15px;
    position: absolute;
    right: 0;
    top: 10px;
    width: 137px
}

@media (max-width: 991px) {
    .cart .cart-content .total-price-content .discount-input .apply-btn {
        width: 80px
    }
}

.cart .cart-content .total-price-content .coupon-code {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #3c4852;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    margin-top: 18px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .cart .cart-content .total-price-content .coupon-code {
        font-size: 14px
    }
}

.cart .cart-content .total-price-content .coupon-code a {
    color: #3c4852;
    font-size: 20px;
    margin-left: 10px
}

.footer-cart-custom img {
    width: 100%
}

.footer-cart-custom .text-bg {
    background-color: #dfecff;
    padding: 20px
}

.footer-cart-custom .text-bg .text {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

.checkout .checkout-content {
    background-color: #fff;
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
    padding: 40px 26px
}

.checkout .checkout-content h1 {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 36px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .checkout .checkout-content h1 {
        font-size: 24px
    }
}

.checkout .checkout-content .checkout-user-detail .form-fields {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.checkout .checkout-content .checkout-user-detail .form-fields label {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

.checkout .checkout-content .checkout-user-detail .form-fields .form-input-field {
    border: 1px solid #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    margin-top: 10px;
    padding: 15px
}

.checkout .checkout-content .checkout-user-detail .form-fields .form-input-field:focus-visible {
    outline: none
}

.checkout .checkout-content .payment-method .payment-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between
}

.checkout .checkout-content .payment-method .payment-header .payment-heading {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 28px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .checkout .checkout-content .payment-method .payment-header .payment-heading {
        font-size: 20px
    }
}

.checkout .checkout-content .payment-method .payment-header .secured {
    color: #989696;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

.checkout .checkout-content .payment-method .payment-header .secured i {
    color: #3c4852
}

@media (min-width: 1024px) and (max-width:1366px) {
    .checkout .checkout-content .payment-method .payment-header .secured {
        font-size: 14px
    }
}

.checkout .checkout-content .payment-method .payment-card-options {
    background-color: #f6f6f6;
    margin-top: 20px
}

.checkout .checkout-content .payment-method .payment-card-options .payment-card {
    border: 1px solid #989696
}

.checkout .checkout-content .payment-method .payment-card-options .payment-card .payment-options {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5px 10px
}

.checkout .checkout-content .payment-method .payment-card-options .payment-card .payment-options,
.checkout .checkout-content .payment-method .payment-card-options .payment-card .payment-options .payment-select {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.checkout .checkout-content .payment-method .payment-card-options .payment-card .payment-options .payment-select .card-img {
    height: 40px;
    margin-left: 10px;
    margin-right: 10px;
    width: 40px
}

.checkout .checkout-content .payment-method .payment-card-options .payment-card .payment-options .payment-select .payment-option-name {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .checkout .checkout-content .payment-method .payment-card-options .payment-card .payment-options .payment-select .payment-option-name {
        font-size: 14px
    }
}

.checkout .checkout-content .payment-method .payment-card-options .payment-card .payment-options .payment-card-img {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end
}

.checkout .checkout-content .payment-method .payment-card-options .payment-card .payment-options .payment-card-img img {
    width: 100%
}

.checkout .checkout-content .payment-method .payment-card-options .payment-card .payment-options .payment-check-input {
    border: 2px solid #494747
}

.checkout .checkout-content .order-detail {
    margin-top: 20px
}

.checkout .checkout-content .order-detail .order {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 28px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .checkout .checkout-content .order-detail .order {
        font-size: 20px
    }
}

.checkout .checkout-content .order-detail .order-items {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 10px 20px
}

@media (min-width: 280px) and (max-width:440px) {
    .checkout .checkout-content .order-detail .order-items {
        display: block
    }
}

.checkout .checkout-content .order-detail .order-items .order-name {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .checkout .checkout-content .order-detail .order-items .order-name {
        font-size: 14px
    }
}

.checkout .checkout-content .order-detail .order-items .order-category {
    color: #2d81f7;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none
}

@media (min-width: 1024px) and (max-width:1366px) {
    .checkout .checkout-content .order-detail .order-items .order-category {
        font-size: 14px
    }
}

.checkout .checkout-content .order-detail .order-items .price {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    text-align: right
}

@media (min-width: 280px) and (max-width:440px) {
    .checkout .checkout-content .order-detail .order-items .price {
        text-align: left
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .checkout .checkout-content .order-detail .order-items .price {
        font-size: 14px
    }
}

.checkout .checkout-content .order-detail .order-items .price s {
    color: #989696;
    font-size: 12px;
    font-weight: 400
}

.checkout .checkout-content .order-amount {
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
    margin-top: 20px;
    padding: 10px 20px
}

.checkout .checkout-content .order-amount .order-summary {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 28px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .checkout .checkout-content .order-amount .order-summary {
        font-size: 20px
    }
}

.checkout .checkout-content .order-amount .price-detail {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 10px
}

.checkout .checkout-content .order-amount .price-detail .price-text {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 20px;
    font-weight: 400
}

@media (min-width: 1024px) and (max-width:1366px) {
    .checkout .checkout-content .order-amount .price-detail .price-text {
        font-size: 14px
    }
}

.checkout .checkout-content .order-amount .price-detail .price-left-content .discount {
    margin-top: 10px
}

.checkout .checkout-content .order-amount .price-detail .price-right-content .discount-amount {
    font-family: Nunito, arial;
    font-size: 20px;
    font-weight: 400;
    margin-top: 10px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .checkout .checkout-content .order-amount .price-detail .price-right-content .discount-amount {
        font-size: 18px
    }
}

.checkout .checkout-content .order-amount .partition {
    border: 1px solid #4f4f4d
}

.checkout .checkout-content .order-amount .total-amount-detail {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px
}

.checkout .checkout-content .order-amount .total-amount-detail .total {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .checkout .checkout-content .order-amount .total-amount-detail .total {
        font-size: 18px
    }
}

.checkout .checkout-content .order-amount .total-amount-detail .total-amount {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .checkout .checkout-content .order-amount .total-amount-detail .total-amount {
        font-size: 18px
    }
}

.checkout .checkout-content .order-amount .term {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .checkout .checkout-content .order-amount .term {
        font-size: 14px
    }
}

.checkout .checkout-content .order-amount .term a {
    text-decoration: none
}

.checkout .checkout-content .order-amount .checkout-btn {
    margin-bottom: 20px;
    margin-top: 30px
}

.checkout .checkout-content .order-amount .checkout-btn .catking-btn {
    display: block;
    text-align: center;
    width: 100%
}

.profile .profile-page-accordion {
    margin-bottom: 40px;
    margin-top: 40px
}

.profile .profile-page-accordion .accordion-item {
    border: none;
    margin-top: 2rem
}

.profile .profile-page-accordion .accordion-item button {
    background-color: #fbfbfb;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 22px;
    font-weight: 500
}

@media (min-width: 1024px) and (max-width:1366px) {
    .profile .profile-page-accordion .accordion-item button {
        font-size: 18px
    }
}

.profile .profile-page-accordion .accordion-item button span {
    font-size: 16px;
    font-weight: 400;
    margin-left: 10px
}

.profile .profile-page-accordion .accordion-item .accordion-collapse {
    background-color: #f6f6f6
}

.profile .profile-page-accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 2rem 1.25rem
}

.profile .profile-page-accordion .accordion-item .accordion-collapse .accordion-body .profile-image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative
}

.profile .profile-page-accordion .accordion-item .accordion-collapse .accordion-body .profile-image .avatar-image {
    background-image: url(/assets/frontend/images/icons/avatar.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #757575;
    border-radius: 100%;
    height: 200px;
    width: 200px
}

.profile .profile-page-accordion .accordion-item .accordion-collapse .accordion-body .profile-image .avatar-edit {
    left: 46%;
    position: absolute;
    top: 100%;
    z-index: 1
}

.profile .profile-page-accordion .accordion-item .accordion-collapse .accordion-body .profile-image .avatar-edit input {
    display: none
}

.profile .profile-page-accordion .accordion-item .accordion-collapse .accordion-body .profile-image .avatar-edit label {
    color: #2d81f7;
    cursor: pointer;
    display: inline-block;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .profile .profile-page-accordion .accordion-item .accordion-collapse .accordion-body .profile-image .avatar-edit label {
        font-size: 14px
    }
}

.profile .profile-page-accordion .accordion-item .accordion-collapse .accordion-body .user-name {
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 400;
    margin-top: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .profile .profile-page-accordion .accordion-item .accordion-collapse .accordion-body .user-name {
        font-size: 18px
    }
}

.profile .profile-page-accordion .accordion-item .accordion-collapse .accordion-body .form-fields {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.profile .profile-page-accordion .accordion-item .accordion-collapse .accordion-body .form-fields label {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

@media (min-width: 1024px) and (max-width:1366px) {
    .profile .profile-page-accordion .accordion-item .accordion-collapse .accordion-body .form-fields label {
        font-size: 14px
    }
}

.profile .profile-page-accordion .accordion-item .accordion-collapse .accordion-body .form-fields .form-input-field {
    background: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    margin-top: 10px;
    padding: 15px;
    width: 100%
}

.profile .profile-page-accordion .accordion-item .accordion-collapse .accordion-body .form-fields .form-input-field:focus-visible {
    outline: none
}

.profile .profile-page-accordion .accordion-item .accordion-collapse .accordion-body .form-btn {
    margin-top: 40px
}

.profile .profile-page-accordion .accordion-item .accordion-collapse .accordion-body .form-btn .catking-btn {
    max-width: 100%;
    width: 412px
}

.profile .profile-page-accordion .accordion-item .accordion-collapse .accordion-body .form-select {
    border: 1px solid #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    margin-top: 10px;
    padding: 20px 10px
}

.my-course .banner-image {
    margin-top: 40px
}

.my-course .banner-image img {
    width: 100%
}

.my-course .my-course-table-mobile {
    margin-top: 40px
}

.my-course .my-course-table-mobile .order-content {
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    margin-bottom: 20px;
    padding: 10px
}

.my-course .my-course-table-mobile .order-content .order-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between
}

.my-course .my-course-table-mobile .order-content .order-header .order-header-text,
.my-course .my-course-table-mobile .order-content .order-mobile-data {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

.my-course .my-course-table-mobile .order-content .order-mobile-data {
    margin-top: 10px
}

.my-course .my-course-table-mobile .order-content .order-mobile-data a {
    color: #2d81f7;
    text-decoration: none
}

.recommend-courses {
    position: relative
}

.referral .banner-image {
    margin-top: 40px
}

.referral .banner-image img {
    width: 100%
}

.referral .refer-code-section {
    margin-top: 40px
}

.referral .refer-code-section .refer-text {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 22px;
    font-weight: 500;
    text-align: center
}

@media (min-width: 1024px) and (max-width:1366px) {
    .referral .refer-code-section .refer-text {
        font-size: 18px
    }
}

.referral .refer-code-section .refer-input {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    position: relative;
    text-align: center
}

.referral .refer-code-section .refer-input.refer-first-input {
    width: 470px
}

.referral .refer-code-section .refer-input.refer-second-input {
    margin-top: 0;
    width: 200px
}

.referral .refer-code-section .refer-input .form-input-field {
    border: 1px solid #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    margin-top: 10px;
    padding: 15px;
    width: 100%
}

.referral .refer-code-section .refer-input .copy-link-btn {
    background-color: #28c590;
    border: 1px solid #28c590;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    color: #fff;
    padding: 15px;
    position: absolute;
    right: 0;
    top: 10px;
    width: 137px
}

.referral .refer-code-section .or-text {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 400;
    margin-top: 40px;
    text-align: center
}

@media (min-width: 1024px) and (max-width:1366px) {
    .referral .refer-code-section .or-text {
        font-size: 18px
    }
}

.referral .refer-code-section .refer-code {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    text-align: center
}

.referral .refer-code-section .refer-code a {
    margin-left: 10px
}

.referral .refer-code-section .refer-code a .fa {
    color: #28c590;
    font-size: 25px
}

.referral .refer-code-section .social-icons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    margin-top: 40px
}

.referral .refer-code-section .social-icons .fa {
    font-size: 30px;
    margin-right: 25px
}

.referral .refer-code-section:after {
    border-bottom: 1px solid #767474;
    content: "";
    display: block;
    position: relative;
    top: 10px;
    width: 100%
}

.referral .my-course-content h1:after {
    border-bottom: none
}

.referral .my-course-content .success-status {
    color: #28c590
}

.referral .my-course-content .danger-status {
    color: #cd111f
}

.referral .referral-table-mobile {
    margin-top: 20px
}

.referral .referral-table-mobile .referral-content {
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    margin-bottom: 20px;
    padding: 10px
}

.referral .referral-table-mobile .referral-content .referral-mobile-data {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px
}

.referral .referral-table-mobile .referral-content .referral-mobile-data span {
    font-weight: 400
}

.wallet .balance-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid #3c4852;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    margin-top: 40px;
    padding: 3rem
}

.wallet .balance-content .balance-text {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 30px;
    font-weight: 700;
    text-align: center
}

@media (max-width: 339px) {
    .wallet .balance-content .balance-text {
        font-size: 22px
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .wallet .balance-content .balance-text {
        font-size: 24px
    }
}

.wallet .balance-content .balance-number {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 35px;
    font-weight: 700;
    text-align: center
}

@media (max-width: 339px) {
    .wallet .balance-content .balance-number {
        font-size: 30px
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .wallet .balance-content .balance-number {
        font-size: 28px
    }
}

.wallet .withdraw-btn {
    margin-top: 40px
}

.wallet .withdraw-btn .catking-btn {
    display: inline-block;
    text-align: center;
    width: 412px
}

@media (max-width: 991px) {
    .wallet .withdraw-btn .catking-btn {
        width: 100%
    }
}

.wallet .wallet-table-mobile {
    margin-top: 20px
}

.wallet .wallet-table-mobile .wallet-content {
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    margin-bottom: 20px;
    padding: 10px
}

.wallet .wallet-table-mobile .wallet-content .wallet-mobile-data {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px
}

.wallet .wallet-table-mobile .wallet-content .wallet-mobile-data span {
    font-weight: 400
}

.free-material .heading-text {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 40px;
    font-weight: 450;
    margin-top: 40px
}

@media (max-width: 991px) {
    .free-material .heading-text {
        margin-top: 0
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .free-material .heading-text {
        font-size: 28px
    }
}

.free-material .free-material-nav {
    border: 0;
    margin-top: 20px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content
}

.free-material .free-material-nav li {
    border: 1px solid #28c590;
    border-radius: 8px;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    margin-right: 15px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content
}

.free-material .free-material-nav li button {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    width: 200px
}

@media (max-width: 991px) {
    .free-material .free-material-nav li button {
        width: 100%
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .free-material .free-material-nav li button {
        font-size: 14px
    }
}

.free-material .free-material-nav li button.active {
    background-color: #28c590;
    border: 1px solid #28c590;
    border-radius: 8px;
    color: #fff
}

.free-material .free-material-nav li button:hover {
    border: 1px solid #28c590
}

.free-material .free-material-tab-content {
    margin-top: 20px
}

.free-material .free-material-tab-content .free-pdf-content {
    border: 1px solid #3c4852;
    border-radius: 8px;
    display: inline-block;
    margin-top: 20px;
    padding: 10px;
    position: relative;
    width: 100%
}

.free-material .free-material-tab-content .free-pdf-content .fa-solid {
    font-size: 20px
}

.free-material .free-material-tab-content .free-pdf-content .pdf-text {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 400;
    text-align: center
}

@media (min-width: 1024px) and (max-width:1366px) {
    .free-material .free-material-tab-content .free-pdf-content .pdf-text {
        font-size: 18px
    }
}

.free-material .free-material-tab-content .free-pdf-content a {
    color: #3c4852;
    float: right
}

.free-material .free-material-tab-content .pdf-name {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .free-material .free-material-tab-content .pdf-name {
        font-size: 14px
    }
}

.free-material .free-material-tab-content .free-lecture-content {
    margin-bottom: 20px;
    position: relative
}

.free-material .free-material-tab-content .free-lecture-content img {
    width: 100%
}

.free-material .free-material-tab-content .free-lecture-content .video-play-btn {
    left: 46%;
    position: absolute;
    top: 38%
}

.free-material .free-material-tab-content .free-lecture-content .fa {
    background-color: #28c590;
    border-radius: 50%;
    color: #fff;
    height: 37px;
    line-height: 37px;
    text-align: center;
    vertical-align: middle;
    width: 37px
}

.free-material .free-material-tab-content .free-lecture-content .video-name {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px
}

.all-course h1 {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 40px;
    font-weight: 450
}

@media (min-width: 1024px) and (max-width:1366px) {
    .all-course h1 {
        font-size: 28px
    }
}

.all-course .course-filter {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

@media (max-width: 991px) {
    .all-course .course-filter {
        display: block
    }
}

.all-course .course-filter .form-select {
    border: 1px solid #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    margin-right: 20px;
    margin-top: 10px;
    padding: 15px;
    width: 20%
}

@media (max-width: 991px) {
    .all-course .course-filter .form-select {
        width: 100%
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    .all-course .course-filter .form-select {
        width: 30%
    }
}

.all-course .all-course-content {
    margin-top: 30px
}

.thankyou h1 {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 36px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .thankyou h1 {
        font-size: 24px
    }
}

.thankyou p {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 400;
    margin-top: 40px;
    text-align: center
}

@media (min-width: 1024px) and (max-width:1366px) {
    .thankyou p {
        font-size: 18px;
        margin-top: 20px
    }
}

.thankyou .video {
    margin-bottom: 40px;
    margin-top: 40px;
    position: relative
}

.thankyou .video img {
    width: 100%
}

.thankyou .video .video-play-btn {
    left: 46%;
    position: absolute;
    top: 46%
}

.thankyou .video .video-play-btn .fa {
    background-color: #2d81f7;
    border-radius: 50%;
    color: #fff;
    height: 37px;
    line-height: 37px;
    text-align: center;
    vertical-align: middle;
    width: 37px
}

.thankyou .catking-btn {
    display: inline-block
}

@media (min-width: 768px) {
    .thankyou .catking-btn {
        width: 400px
    }
}

.login-progressbar {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    counter-reset: step;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 40px;
    overflow: hidden;
    padding-left: 0
}

.login-progressbar li {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    list-style: none;
    position: relative;
    text-align: center;
    width: 100%
}

.login-progressbar li:before {
    background: #fff;
    border-radius: 50px;
    color: #333;
    content: counter(step);
    counter-increment: step;
    display: block;
    font-size: 16px;
    line-height: 50px;
    margin: 0 auto 5px;
    width: 50px
}

.login-progressbar li:after {
    background: #3c4852;
    content: "";
    height: 2px;
    left: -50%;
    position: absolute;
    top: 25px;
    width: 100%;
    z-index: -1
}

.login-progressbar li:first-child:after {
    content: none
}

.desktop-menu-dropdown {
    display: none;
    position: relative
}

.desktop-menu-dropdown .dropdown-inner-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-top: 15px;
    position: absolute;
    z-index: 3
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-category-menu {
    background: #fff;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .16);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .16);
    height: 700px;
    list-style: none;
    max-height: 80vh;
    overflow-y: auto;
    padding: 0;
    width: 300px
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-category-menu .menu-course-group {
    border-bottom: 1px solid #3c4852
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-category-menu .menu-course-group:last-child {
    border-bottom: none
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-category-menu .menu-course-group .menu-course-name {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    border-left: 6px solid #fff;
    color: #222;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    font-size: 16px;
    font-weight: 500;
    justify-content: space-between;
    padding: 15px 15px 15px 14px;
    position: relative
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-category-menu .menu-course-group .menu-course-name:hover {
    background-color: #f6f6f6;
    border-bottom-left-radius: 8px;
    border-left: 6px solid #28c590;
    border-top-left-radius: 8px
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-category-menu .menu-course-group .menu-course-name a {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-category-menu .menu-course-group .menu-course-name .dropdown-arrow {
    margin-left: 10px;
    position: relative
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-category-menu .menu-course-group .menu-course-name .dropdown-arrow img {
    width: 100%
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-course-menu {
    left: 100%;
    position: absolute;
    top: 5px;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    z-index: 100
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-course-menu .dropdown-course-group {
    background: #fff;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .16);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .16);
    display: none;
    height: 700px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 15px;
    width: 300px
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-course-menu .dropdown-course-group a {
    text-decoration: none
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-course-menu .dropdown-course-group a .dropdown-course-content {
    border: 1px solid #3c4852;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 10px;
    padding: 15px;
    pointer-events: auto
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-course-menu .dropdown-course-group a .dropdown-course-content:hover {
    border: 1px solid #28c590
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-course-menu .dropdown-course-group a .dropdown-course-content .title {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-course-menu .dropdown-course-group a .dropdown-course-content .description {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-course-menu .dropdown-course-group a .dropdown-course-content .course-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-course-menu .dropdown-course-group a .dropdown-course-content .course-group .course-duration {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-course-menu .dropdown-course-group a .dropdown-course-content .course-group .category-name {
    background-color: #d3e2f7;
    border-radius: 8px;
    color: #2d81f7;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    padding: 7px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.mobile-menu-dropdown {
    left: 0;
    position: fixed;
    top: 0;
    z-index: 10000
}

.mobile-menu-dropdown .mobile-menu-wrapper {
    position: absolute
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-close-btn {
    position: fixed;
    right: 17px;
    top: 16px;
    z-index: 2000
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-close-btn .fa {
    font-size: 25px
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu {
    background: #f6f6f6;
    height: 100vh;
    left: 0;
    overflow: auto;
    padding: 10px 0;
    position: fixed;
    top: 85px;
    width: 100%;
    z-index: 10
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-auth-container {
    margin: 0;
    padding: 0
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-auth-container li {
    list-style: none;
    padding: 0 10px;
    position: relative;
    z-index: 10
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-auth-container li .mobile-user-detail img {
    margin-right: 10px;
    width: 30px
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-auth-container li a {
    color: #28c590;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    position: relative;
    text-decoration: none;
    z-index: 20
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-auth-container li a .cart-total-items {
    background: #28c590;
    border-radius: 50px;
    color: #fff;
    font-family: Nunito, arial;
    font-size: 11px;
    font-weight: 700;
    height: 20px;
    left: 35px;
    line-height: 20px;
    position: absolute;
    text-align: center;
    text-decoration: none;
    top: -8px;
    width: 20px;
    z-index: 1
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-menu-container {
    display: initial
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-menu-container .mobile-menu-course-container {
    padding: 0 10px
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-menu-container .mobile-menu-course-container .mobile-course-category {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    border-bottom: 1px solid #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 0
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-menu-container .mobile-menu-course-container .mobile-course-category .course-main-category-name {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-menu-container .mobile-menu-course-container .mobile-course-category .arrow-image img {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-menu-container .mobile-menu-course-container .mobile-course-category .arrow-image img.flip {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-menu-container .mobile-menu-course-container .dropdown-course-menu {
    margin-top: 20px
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-menu-container .mobile-menu-course-container .dropdown-course-menu .dropdown-course-group {
    display: none;
    margin-bottom: 50px
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-menu-container .mobile-menu-course-container .dropdown-course-menu .dropdown-course-group a {
    text-decoration: none
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-menu-container .mobile-menu-course-container .dropdown-course-menu .dropdown-course-group a .dropdown-course-content {
    border: 1px solid #3c4852;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 15px
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-menu-container .mobile-menu-course-container .dropdown-course-menu .dropdown-course-group a .dropdown-course-content:hover {
    border: 1px solid #28c590
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-menu-container .mobile-menu-course-container .dropdown-course-menu .dropdown-course-group a .dropdown-course-content .title {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-menu-container .mobile-menu-course-container .dropdown-course-menu .dropdown-course-group a .dropdown-course-content .description {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-menu-container .mobile-menu-course-container .dropdown-course-menu .dropdown-course-group a .dropdown-course-content .course-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-menu-container .mobile-menu-course-container .dropdown-course-menu .dropdown-course-group a .dropdown-course-content .course-group .course-duration {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

.mobile-menu-dropdown .mobile-menu-wrapper .mobile-list-menu .mobile-menu-container .mobile-menu-course-container .dropdown-course-menu .dropdown-course-group a .dropdown-course-content .course-group .category-name {
    background-color: #d3e2f7;
    border-radius: 8px;
    color: #2d81f7;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    padding: 7px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.register-auth-form {
    max-width: 600px !important
}

.popover-body {
    background-color: #000;
    color: #fff;
    font-family: Nunito, arial;
    font-size: 16px
}

.popover-arrow:after {
    border-right-color: #000 !important
}

.right-nav-menu {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between
}

.right-nav-menu .header-cart-btn {
    color: #000;
    margin-right: 30px;
    position: relative
}

.right-nav-menu .header-cart-btn:hover {
    color: #28c590
}

.right-nav-menu .header-cart-btn .fa {
    position: relative;
    z-index: 100
}

.right-nav-menu .header-cart-btn .cart-total-items {
    background: #000;
    border-radius: 50px;
    color: #fff;
    font-family: Nunito, arial;
    font-size: 11px;
    font-weight: 700;
    height: 20px;
    line-height: 20px;
    position: absolute;
    right: -16px;
    text-align: center;
    text-decoration: none;
    top: -8px;
    width: 20px;
    z-index: 1
}

.right-nav-menu .account-dropdown {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.right-nav-menu .account-dropdown .user-account-dropdown {
    color: #000;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    line-height: 50px
}

.right-nav-menu .account-dropdown img {
    height: 40px;
    margin-right: 10px;
    width: 40px
}

.right-nav-menu .account-dropdown-wrapper {
    -webkit-animation: rotateMenu .4s ease-in-out forwards;
    animation: rotateMenu .4s ease-in-out forwards;
    display: none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 70px;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    z-index: 10000
}

.right-nav-menu .account-dropdown-wrapper .account-dropdown-content {
    position: relative
}

.right-nav-menu .account-dropdown-wrapper .account-dropdown-content .account-dropdown-arrow {
    background: 0 0;
    display: block;
    height: 22px;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    right: 16px;
    top: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    width: 22px
}

.right-nav-menu .account-dropdown-wrapper .account-dropdown-content .account-dropdown-arrow .account-dropdowwn-arrow-content {
    --antd-arrow-background-color: #fff;
    border-radius: 0 0 2px;
    bottom: 0;
    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, .06);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .06);
    content: "";
    display: block;
    height: 11.3137085px;
    left: 0;
    margin: auto;
    pointer-events: auto;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: translateY(11px) rotate(-135deg);
    transform: translateY(11px) rotate(-135deg);
    width: 11.3137085px
}

.right-nav-menu .account-dropdown-wrapper .account-dropdown-content .account-dropdown-arrow .account-dropdowwn-arrow-content:before {
    background: var(--antd-arrow-background-color);
    background-position: -10px -10px;
    background-repeat: no-repeat;
    -webkit-clip-path: inset(33% 33%);
    clip-path: inset(33% 33%);
    -webkit-clip-path: path("M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z");
    clip-path: path("M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z");
    content: "";
    height: 33.9411255px;
    left: -11.3137085px;
    position: absolute;
    top: -11.3137085px;
    width: 33.9411255px
}

.right-nav-menu .account-dropdown-wrapper .account-dropdown-content .account-dropdown-inner {
    background-clip: padding-box;
    background-color: #fff;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    padding: 15px;
    width: 200px
}

.right-nav-menu .account-dropdown-wrapper .account-dropdown-content .account-dropdown-inner .account-dropdown-inner-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0
}

.right-nav-menu .account-dropdown-wrapper .account-dropdown-content .account-dropdown-inner .account-dropdown-inner-content li {
    margin-bottom: 20px
}

.right-nav-menu .account-dropdown-wrapper .account-dropdown-content .account-dropdown-inner .account-dropdown-inner-content li:last-child {
    margin-bottom: 0
}

.right-nav-menu .account-dropdown-wrapper .account-dropdown-content .account-dropdown-inner .account-dropdown-inner-content li a {
    color: #000;
    font-family: Nunito, arial;
    font-size: 16px;
    text-decoration: none
}

.right-nav-menu .account-dropdown-wrapper .account-dropdown-content .account-dropdown-inner .account-dropdown-inner-content li a svg {
    margin-right: 10px
}

.right-nav-menu .account-dropdown-wrapper .account-dropdown-content .account-dropdown-inner .account-dropdown-inner-content li a:hover {
    color: #28c590
}

.right-nav-menu .account-dropdown-wrapper .account-dropdown-content .account-dropdown-inner .account-dropdown-inner-content li a:hover svg {
    fill: #28c590
}

.swal2-container.swal2-backdrop-show,
.swal2-container.swal2-noanimation {
    background: rgba(0, 0, 0, .91) !important
}

@media (prefers-reduced-motion:no-preference) {
    .marquee--reverse:before {
        animation-direction: reverse
    }
}

@keyframes marquee {
    0% {
        -webkit-transform: translate3d(-2%, 0, 0);
        transform: translate3d(-2%, 0, 0)
    }

    to {
        -webkit-transform: translate3d(calc(-7% - 1px), 0, 0);
        transform: translate3d(calc(-7% - 1px), 0, 0)
    }
}

@-webkit-keyframes rotateMenu {
    0% {
        -webkit-transform: rotateX(-90deg);
        transform: rotateX(-90deg)
    }

    70% {
        -webkit-transform: rotateX(20deg);
        transform: rotateX(20deg)
    }

    to {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg)
    }
}

@keyframes rotateMenu {
    0% {
        -webkit-transform: rotateX(-90deg);
        transform: rotateX(-90deg)
    }

    70% {
        -webkit-transform: rotateX(20deg);
        transform: rotateX(20deg)
    }

    to {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg)
    }
}

.master-header {
    background-color: #f6f6f6;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    position: sticky;
    top: 0;
    z-index: 1000
}

.master-header .navbar .logo-img {
    width: 145px
}

.master-header .navbar .desktop-menu {
    position: relative
}

.master-header .navbar .desktop-menu,
.master-header .navbar .desktop-menu .desktop-menu-list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.master-header .navbar .desktop-menu .desktop-menu-list {
    list-style: none;
    margin-bottom: 0
}

.master-header .navbar .desktop-menu .desktop-menu-list li {
    margin-right: 40px
}

@media (min-width: 991px) and (max-width:1024px) {
    .master-header .navbar .desktop-menu .desktop-menu-list li {
        margin-right: 20px
    }
}

.master-header .navbar .desktop-menu .desktop-menu-list li a {
    color: #3c4852;
    display: inline-block;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none
}

.master-header .navbar .desktop-menu .desktop-menu-list li a.active {
    color: #2d81f7
}

.master-header .navbar .desktop-menu .desktop-menu-list .portal-btn {
    margin-right: 20px !important
}

.master-header .navbar .desktop-menu .desktop-menu-list .portal-btn .blue-btn {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    margin-right: 0
}

.master-header .navbar .desktop-menu .desktop-menu-list .portal-btn .blue-btn:hover {
    color: #2d81f7
}

.master-header .navbar .desktop-menu .blue-btn {
    margin-right: 20px
}

.master-header .navbar .desktop-more-dropdown {
    position: relative
}

.master-header .navbar .desktop-more-dropdown .desktop-more-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    left: 20%;
    position: absolute;
    top: 15px;
    z-index: 3
}

.master-header .navbar .desktop-more-dropdown .desktop-more-wrapper ul {
    background: #fff;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .16);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .16);
    list-style: none;
    max-height: 85vh;
    overflow-y: auto;
    padding: 0;
    width: 300px
}

.master-header .navbar .desktop-more-dropdown .desktop-more-wrapper ul li {
    position: relative
}

.master-header .navbar .desktop-more-dropdown .desktop-more-wrapper ul li:hover {
    background-color: #f6f6f6;
    border-bottom-left-radius: 8px;
    border-left: 6px solid #28c590;
    border-top-left-radius: 8px
}

.master-header .navbar .desktop-more-dropdown .desktop-more-wrapper ul li a {
    color: #3c4852;
    display: block;
    font-family: Nunito, arial;
    font-size: 16px;
    padding: 15px 0 15px 14px;
    text-decoration: none
}

.master-header .navbar .mobile-nav-menu-btn .menu-heading {
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
    padding: 0 10px
}

.master-header .navbar .mobile-nav-menu-btn .more-menu-wrapper {
    border-bottom: 1px solid #000
}

.master-header .navbar .mobile-nav-menu-btn .more-menu-wrapper .main-mobile-more-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 10px
}

.master-header .navbar .mobile-nav-menu-btn .more-menu-wrapper .main-mobile-more-menu .menu-heading {
    margin: 0;
    padding: 0
}

.master-header .navbar .mobile-nav-menu-btn .more-menu-wrapper .main-mobile-more-menu .menu-heading a {
    color: #000
}

.master-header .navbar .mobile-nav-menu-btn .more-menu-wrapper .main-mobile-more-menu .arrow-image .arrow-up {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.master-header .navbar .mobile-nav-menu-btn .more-menu-wrapper .main-mobile-more-menu .arrow-image .arrow-down {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.master-header .navbar .mobile-nav-menu-btn .more-menu-wrapper .more-menu-list {
    list-style: none;
    padding: 0
}

.master-header .navbar .mobile-nav-menu-btn .more-menu-wrapper .more-menu-list li {
    line-height: 40px;
    padding: 0 10px
}

.master-header .navbar .mobile-nav-menu-btn .more-menu-wrapper .more-menu-list li a {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    text-decoration: none
}

.master-header .navbar .mob-announce-bell {
    position: absolute;
    right: 30px
}

.master-header .navbar .mob-announce-dropdown-wrapper .announce-dropdown-inner {
    top: 0;
    width: 280px
}

.master-header .navbar .mob-announce-dropdown-wrapper .announce-dropdown-arrow {
    right: 27px;
    top: 0
}

@media (min-width: 991px) and (max-width:1024px) {
    .master-header .navbar .catking-btn {
        padding: 10px 25px
    }
}

.image-slider-section {
    padding: 0
}

.image-slider-section .image-slider-carousel {
    padding-top: 50px
}

.image-slider-section .image-slider-carousel .carousel-indicators button {
    background-color: #b1afaf;
    border: 1px solid #b1afaf;
    border-radius: 50%;
    height: .5rem;
    width: .5rem
}

.image-slider-section .image-slider-carousel .carousel-indicators button.active {
    background-color: #2d81f7
}

.image-slider-section .image-slider-carousel .slider-content h1 {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .image-slider-section .image-slider-carousel .slider-content h1 {
        font-size: 30px;
        line-height: 40px
    }
}

.image-slider-section .image-slider-carousel .slider-content p {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .image-slider-section .image-slider-carousel .slider-content p {
        font-size: 18px
    }
}

.image-slider-section .image-slider-carousel .slider-content ul li {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .image-slider-section .image-slider-carousel .slider-content ul li {
        font-size: 18px
    }
}

.image-slider-section .image-slider-carousel .slider-content .hero-btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px;
    margin-top: 40px
}

@media (max-width: 767px) {
    .image-slider-section .image-slider-carousel .slider-content .hero-btn {
        margin-bottom: 40px;
        margin-top: 40px
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .image-slider-section .image-slider-carousel .slider-content .hero-btn {
        margin-top: 60px
    }
}

.image-slider-section .image-slider-carousel .slider-content .hero-btn .watch-video-btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin-left: 22px
}

.image-slider-section .image-slider-carousel .slider-content .hero-btn .watch-video-btn a {
    border: 2px dashed #000;
    border-radius: 50px;
    padding: 2px
}

.image-slider-section .image-slider-carousel .slider-content .hero-btn .watch-video-btn a .fa {
    background-color: #28c590;
    border-radius: 50%;
    color: #fff;
    height: 50px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    width: 50px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .image-slider-section .image-slider-carousel .slider-content .hero-btn .watch-video-btn a .fa {
        height: 40px;
        line-height: 40px;
        width: 40px
    }
}

.image-slider-section .image-slider-carousel .slider-content .hero-btn .watch-video-btn p {
    margin-bottom: 0;
    margin-left: 10px
}

@media (max-width: 979px) {
    .image-slider-section .image-slider-carousel .slider-content .hero-btn .watch-video-btn p {
        display: none
    }
}

.image-slider-section .image-slider-carousel img {
    margin-bottom: 40px;
    max-width: 100%
}

@media (min-width: 992px) and (max-width:1199px) {
    .image-slider-section .image-slider-carousel img {
        width: 500px
    }
}

.image-slider-section .image-slider-carousel .carousel-control-next-icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.image-slider-section .image-slider-carousel .carousel-control-next-icon,
.image-slider-section .image-slider-carousel .carousel-control-prev-icon {
    background-image: url(/assets/frontend/images/slider/arrow.png);
    background-size: 18px
}

.course-provide {
    background-color: #e7f4f0;
    position: relative
}

.course-provide .coursesProvideSwiper {
    margin-top: 40px
}

.course-provide .coursesProvideSwiper .swiper-button-next:after,
.course-provide .coursesProvideSwiper .swiper-button-prev:after {
    color: #000;
    font-size: 20px
}

.career {
    position: relative
}

.career .careerSwiper .swiper-wrapper {
    margin-bottom: 90px
}

.career .careerSwiper .swiper-wrapper .career-card {
    background-color: #d3e2f7;
    margin-top: 80px;
    padding-bottom: 20px;
    position: relative;
    text-align: center
}

.career .careerSwiper .swiper-wrapper .career-card .user-img {
    border-radius: 50%;
    left: 50%;
    max-width: 100%;
    position: absolute;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100px
}

.career .careerSwiper .swiper-wrapper .career-card .name {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-family: Nunito, arial;
    font-size: 24px;
    font-weight: 700;
    margin-top: 70px;
    position: relative
}

@media (min-width: 1024px) and (max-width:1366px) {
    .career .careerSwiper .swiper-wrapper .career-card .name {
        font-size: 18px
    }
}

.career .careerSwiper .swiper-wrapper .career-card .college {
    font-family: Nunito, arial;
    font-size: 24px;
    font-weight: 400;
    line-height: 38px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .career .careerSwiper .swiper-wrapper .career-card .college {
        font-size: 14px
    }
}

.career .careerSwiper .swiper-wrapper .career-card .college-logo {
    width: 50px
}

.career .careerSwiper .swiper-wrapper .career-card .percentage {
    font-family: Nunito, arial;
    font-size: 24px;
    font-weight: 400
}

@media (min-width: 1024px) and (max-width:1366px) {
    .career .careerSwiper .swiper-wrapper .career-card .percentage {
        font-size: 14px
    }
}

.career .careerSwiper .swiper-button-next {
    left: 51%;
    top: 90%
}

.career .careerSwiper .swiper-button-next:after {
    color: #3c4852
}

@media (max-width: 767px) {
    .career .careerSwiper .swiper-button-next {
        left: 58%;
        top: 94%
    }
}

.career .careerSwiper .swiper-button-prev {
    left: 47%;
    top: 90%
}

.career .careerSwiper .swiper-button-prev:after {
    color: #3c4852
}

@media (max-width: 767px) {
    .career .careerSwiper .swiper-button-prev {
        left: 47%;
        top: 94%
    }
}

.college-partner {
    background-color: #eaf3ff;
    padding: 40px 0
}

.college-partner .section-heading {
    margin-bottom: 20px
}

.bg-cta {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover
}

.bg-cta .section-heading {
    margin-bottom: 40px;
    text-align: center
}

.coupon-code {
    padding: 40px 0
}

.coupon-code .coupon-card {
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 1px 1px 10px 4px hsla(0, 0%, 65%, .42);
    box-shadow: 1px 1px 10px 4px hsla(0, 0%, 65%, .42);
    margin-top: 40px;
    padding: 20px
}

.coupon-code .coupon-card .coupon-card-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 767px) {
    .coupon-code .coupon-card .coupon-card-wrapper {
        display: block
    }

    .coupon-code .coupon-card .coupon-card-wrapper .coupon-img {
        text-align: center
    }
}

.coupon-code .coupon-card .coupon-card-wrapper .coupon-img img {
    max-width: 100%;
    width: 200px
}

.coupon-code .coupon-card .coupon-card-wrapper .coupon-text {
    width: 100%
}

.coupon-code .coupon-card .coupon-card-wrapper .coupon-text .main-text {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700;
    line-height: 38px
}

.coupon-code .coupon-card .coupon-card-wrapper .coupon-text .discount-text {
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

.coupon-code .coupon-card .coupon-card-wrapper .coupon-text .code {
    color: #28c590;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px
}

.coupon-code .coupon-card .coupon-card-wrapper .coupon-text .price {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px
}

.coupon-code .coupon-card .coupon-card-wrapper .coupon-text .price span {
    color: #4f4f4d;
    font-size: 16px
}

.coupon-code .coupon-card .coupon-card-wrapper .coupon-text .date-btn-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between
}

.blog {
    padding: 40px 0
}

.blog .section-heading {
    margin-bottom: 20px
}

.blog .blog-wrapper {
    background-color: #fff;
    -webkit-box-shadow: 1px 1px 10px 4px hsla(0, 0%, 65%, .42);
    box-shadow: 1px 1px 10px 4px hsla(0, 0%, 65%, .42)
}

@media (max-width: 767px) {
    .blog .blog-wrapper {
        margin-top: 20px
    }
}

.blog .blog-wrapper img {
    width: 100%
}

.blog .blog-wrapper .blog-title {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700;
    line-height: 38px;
    padding: 0 15px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .blog .blog-wrapper .blog-title {
        font-size: 18px
    }
}

.blog .blog-wrapper .blog-description {
    font-family: Nunito, arial;
    font-size: 16px;
    padding: 0 10px
}

.blog .blog-wrapper .blog-footer {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    padding: 0 10px 15px
}

.blog .blog-wrapper .blog-footer .date {
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .blog .blog-wrapper .blog-footer .date {
        font-size: 14px
    }
}

.schedule-class {
    background-color: #e9e9e9;
    padding: 40px 0 0
}

@media (max-width: 767px) {
    .schedule-class .schedule-img-col {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        text-align: center
    }
}

.schedule-class .schedule-img-col img {
    bottom: 0;
    max-width: 100%;
    position: absolute;
    width: 250px
}

@media (max-width: 767px) {
    .schedule-class .schedule-img-col img {
        position: relative
    }
}

.schedule-class .form-wrapper {
    padding: 0 0 40px;
    position: relative
}

.schedule-class .form-wrapper .form-fields {
    position: relative
}

.schedule-class .form-wrapper .form-fields .form-input-field {
    border: 1px solid #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    margin-top: 10px;
    padding: 15px;
    width: 100%
}

.schedule-class .form-wrapper .form-fields .send-otp {
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 100%;
    padding: 8px;
    position: absolute;
    right: -34px;
    top: 58%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.schedule-class .form-wrapper .submit-btn {
    margin-top: 20px
}

.exam-full-banner {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    padding: 0;
    position: relative
}

.exam-full-banner .text-wrapper {
    max-width: 100%;
    padding: 40px 0;
    width: 50%
}

@media (max-width: 767px) {
    .exam-full-banner .text-wrapper {
        width: 100%
    }
}

.exam-full-banner .text-wrapper h1 {
    color: #fff;
    font-family: Circular Std, sans-serif;
    font-size: 40px;
    font-weight: 500
}

@media (min-width: 1024px) and (max-width:1366px) {
    .exam-full-banner .text-wrapper h1 {
        font-size: 30px
    }
}

.exam-full-banner .text-wrapper p {
    color: #fff;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700;
    margin-top: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .exam-full-banner .text-wrapper p {
        font-size: 18px
    }
}

.our-best-course {
    padding: 0
}

.exam-content-header {
    padding-bottom: 20px
}

.exam-content-header .exam-topbar-menu {
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 11px 2px hsla(0, 1%, 63%, .349);
    box-shadow: 0 0 11px 2px hsla(0, 1%, 63%, .349);
    padding: 12px;
    position: relative
}

.exam-content-header .exam-topbar-menu ul {
    display: block;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 45px
}

.exam-content-header .exam-topbar-menu ul li {
    display: inline
}

.exam-content-header .exam-topbar-menu ul li a {
    color: #3c4852;
    display: inline-block;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    padding: 0 10px 10px;
    text-decoration: none
}

@media (min-width: 1024px) and (max-width:1366px) {
    .exam-content-header .exam-topbar-menu ul li a {
        font-size: 14px
    }
}

.exam-content-header .exam-topbar-menu ul li.hide {
    display: none
}

.exam-content-header .exam-topbar-menu ul li.exam-nav-active a {
    color: #2d81f7
}

@media (min-width: 1024px) and (max-width:1366px) {
    .exam-content-header p {
        font-size: 14px
    }
}

.expand-icon {
    position: absolute;
    right: 13px;
    top: 7px
}

.expand-icon img {
    width: 35px
}

.analysis-content {
    padding: 0 0 60px
}

.analysis-content .analysis-tab-wrapper .desktop-analysis-tab ul li {
    margin-bottom: 20px
}

@media (max-width: 767px) {
    .analysis-content .analysis-tab-wrapper .desktop-analysis-tab ul li {
        margin-bottom: 20px
    }
}

.analysis-content .analysis-tab-wrapper .desktop-analysis-tab ul li button {
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 11px 2px hsla(0, 1%, 63%, .349);
    box-shadow: 0 0 11px 2px hsla(0, 1%, 63%, .349);
    margin-right: 20px;
    padding: 16px 40px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .analysis-content .analysis-tab-wrapper .desktop-analysis-tab ul li button {
        font-size: 14px
    }
}

.analysis-content .analysis-tab-wrapper .desktop-analysis-tab ul li button.active {
    background-color: #2d81f7
}

.analysis-content .analysis-tab-wrapper .mobile-analysis-dropdown {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #e8f4fa;
    color: #414040;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    padding: 10px;
    position: relative;
    text-align: left;
    width: 100%
}

.analysis-content .analysis-tab-wrapper .mobile-analysis-dropdown .default-option {
    padding-left: 15px;
    width: 100%
}

.analysis-content .analysis-tab-wrapper .mobile-analysis-dropdown .default-option:before {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 20px;
    position: absolute;
    right: 20px;
    top: 5px
}

.analysis-content .analysis-tab-wrapper .mobile-analysis-dropdown ul {
    border-radius: 5px;
    display: none;
    list-style: none;
    padding: 20px;
    width: 100%
}

.analysis-content .analysis-tab-wrapper .mobile-analysis-dropdown ul.active {
    display: block
}

.analysis-content .analysis-tab-wrapper .mobile-analysis-dropdown ul li button {
    text-align: left;
    width: 100%
}

@media (min-width: 1024px) and (max-width:1366px) {
    .analysis-content .analysis-tab-wrapper .analysis-content-wrapper p {
        font-size: 14px
    }
}

.analysis-content .analysis-tab-wrapper .analysis-content-wrapper .heading {
    color: #2d81f7;
    font-family: Circular Std, sans-serif;
    font-size: 46px;
    font-weight: 450
}

@media (min-width: 1024px) and (max-width:1366px) {
    .analysis-content .analysis-tab-wrapper .analysis-content-wrapper .heading {
        font-size: 30px
    }
}

.analysis-content .analysis-tab-wrapper .analysis-content-wrapper .video-text-wrapper .video {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between
}

@media (max-width: 992px) {
    .analysis-content .analysis-tab-wrapper .analysis-content-wrapper .video-text-wrapper .video {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.analysis-content .analysis-tab-wrapper .analysis-content-wrapper .video-text-wrapper .video img {
    width: 100%
}

.analysis-content .analysis-tab-wrapper .analysis-content-wrapper .video-text-wrapper .video .content-main-wrapper {
    margin-left: 20px
}

.analysis-content .analysis-tab-wrapper .analysis-content-wrapper .video-text-wrapper .video .content-main-wrapper .content-main-heading {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 46px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .analysis-content .analysis-tab-wrapper .analysis-content-wrapper .video-text-wrapper .video .content-main-wrapper .content-main-heading {
        font-size: 30px
    }
}

.analysis-content .analysis-tab-wrapper .analysis-content-wrapper .video-text-wrapper .video .content-main-wrapper .question {
    background-color: #e8f4fa;
    border-radius: 8px;
    margin-top: 20px;
    padding: 10px
}

.analysis-content .analysis-tab-wrapper .analysis-content-wrapper .video-text-wrapper .video .content-main-wrapper .question .question-heading {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 24px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .analysis-content .analysis-tab-wrapper .analysis-content-wrapper .video-text-wrapper .video .content-main-wrapper .question .question-heading {
        font-size: 18px
    }
}

.analysis-content .analysis-tab-wrapper .analysis-content-wrapper .video-text-wrapper .video .content-main-wrapper ul {
    margin-top: 10px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .analysis-content .analysis-tab-wrapper .analysis-content-wrapper .video-text-wrapper .video .content-main-wrapper ul li {
        font-size: 14px
    }
}

.analysis-content .analysis-tab-wrapper .analysis-content-wrapper .marking-criteria {
    background-color: #e8f4fa;
    border-radius: 8px;
    margin-bottom: 20px;
    margin-top: 20px;
    padding: 10px
}

.analysis-content .analysis-tab-wrapper .analysis-content-wrapper .marking-criteria .marking-content {
    font-family: Nunito, arial;
    font-size: 24px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .analysis-content .analysis-tab-wrapper .analysis-content-wrapper .marking-criteria .marking-content {
        font-size: 18px
    }

    .analysis-content .analysis-tab-wrapper .analysis-content-wrapper li {
        font-size: 14px
    }
}

.analysis-content .analysis-tab-wrapper .analysis-content-wrapper .table {
    border: #28c590
}

.analysis-content .analysis-tab-wrapper .analysis-content-wrapper .table thead tr {
    background-color: #28c590
}

@media (min-width: 1024px) and (max-width:1366px) {
    .analysis-content .analysis-tab-wrapper .analysis-content-wrapper .table thead tr {
        font-size: 14px
    }
}

.analysis-content .analysis-tab-wrapper .analysis-content-wrapper .table thead tr td {
    color: #fff
}

.analysis-content .analysis-tab-wrapper .analysis-content-wrapper .table tbody tr {
    background-color: #e8f4fa
}

@media (min-width: 1024px) and (max-width:1366px) {
    .analysis-content .analysis-tab-wrapper .analysis-content-wrapper .table tbody tr {
        font-size: 14px
    }
}

@media (max-width: 767px) {

    .analysis-content .analysis-tab-wrapper iframe,
    .analysis-content .analysis-tab-wrapper img {
        width: 100%
    }
}

.overview-content {
    padding: 0 0 60px
}

.overview-content .overview-heading {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 24px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .overview-content .overview-heading {
        font-size: 18px
    }

    .overview-content table thead tr {
        font-size: 14px
    }
}

.overview-content table thead tr td {
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {

    .overview-content p,
    .overview-content table tr {
        font-size: 14px
    }
}

@media (max-width: 767px) {

    .overview-content iframe,
    .overview-content img {
        width: 100%
    }
}

.page-content,
.question-paper-download {
    padding: 0 0 60px
}

.question-paper-download .question-paper-tab-wrapper .question-paper-nav {
    border-bottom: 0;
    margin-top: 20px
}

.question-paper-download .question-paper-tab-wrapper .question-paper-nav li button {
    background-color: #fff;
    border-color: transparent;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 11px 2px hsla(0, 1%, 63%, .349);
    box-shadow: 0 0 11px 2px hsla(0, 1%, 63%, .349);
    margin-right: 20px;
    padding: 16px 40px
}

.question-paper-download .question-paper-tab-wrapper .question-paper-nav li button.active {
    background-color: #2d81f7;
    color: #fff
}

@media (max-width: 509px) {
    .question-paper-download .question-paper-tab-wrapper .question-paper-nav li:last-child {
        margin-top: 10px
    }
}

.question-paper-download .question-paper-tab-wrapper .paper-material-wrapper {
    background-color: #fff;
    margin-top: 20px;
    padding: 20px
}

.question-paper-download .question-paper-tab-wrapper .paper-material-wrapper .material {
    background-color: #e7f4f0;
    border-radius: 8px;
    margin-top: 10px;
    padding: 15px 30px;
    text-align: center
}

.question-paper-download .question-paper-tab-wrapper .paper-material-wrapper .material a {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    text-decoration: none
}

@media (min-width: 1024px) and (max-width:1366px) {
    .question-paper-download .question-paper-tab-wrapper .paper-material-wrapper .material a {
        font-size: 14px
    }
}

.free-workshop {
    padding: 0 0 60px
}

.free-workshop .rules .heading {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .free-workshop .rules .heading {
        font-size: 18px
    }
}

.free-workshop .rules ol {
    margin-top: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .free-workshop .rules ol li {
        font-size: 14px
    }
}

.free-workshop .partition {
    border: 1px solid #d9d9d9
}

.free-workshop .free-workshop-tab-wrapper .workshop-nav {
    border-bottom: 0;
    margin-top: 20px
}

@media (max-width: 767px) {
    .free-workshop .free-workshop-tab-wrapper .workshop-nav li {
        margin-bottom: 10px
    }
}

.free-workshop .free-workshop-tab-wrapper .workshop-nav li button {
    background-color: #fff;
    border-color: transparent;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 11px 2px hsla(0, 1%, 63%, .349);
    box-shadow: 0 0 11px 2px hsla(0, 1%, 63%, .349);
    margin-right: 20px;
    padding: 16px 40px
}

.free-workshop .free-workshop-tab-wrapper .workshop-nav li button.active {
    background-color: #2d81f7;
    color: #fff
}

.free-workshop .free-workshop-tab-wrapper .workshop-card-wrapper .workshop-card {
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    margin-top: 20px;
    padding: 20px 15px
}

.free-workshop .free-workshop-tab-wrapper .workshop-card-wrapper .workshop-card .workshop-name {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .free-workshop .free-workshop-tab-wrapper .workshop-card-wrapper .workshop-card .workshop-name {
        font-size: 18px
    }
}

.free-workshop .free-workshop-tab-wrapper .workshop-card-wrapper .workshop-card .workshop-time {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px
}

.free-workshop .free-workshop-tab-wrapper .workshop-card-wrapper .workshop-card .workshop-time .date {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .free-workshop .free-workshop-tab-wrapper .workshop-card-wrapper .workshop-card .workshop-time .date {
        font-size: 14px
    }
}

.free-workshop .free-workshop-tab-wrapper .workshop-card-wrapper .workshop-card .workshop-time .read-more-btn {
    color: #2d81f7;
    font-family: Nunito, arial;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none
}

@media (min-width: 1024px) and (max-width:1366px) {
    .free-workshop .free-workshop-tab-wrapper .workshop-card-wrapper .workshop-card .workshop-time .read-more-btn {
        font-size: 14px
    }
}

.free-workshop .free-workshop-tab-wrapper .modal-dialog {
    max-width: 65%
}

@media (max-width: 767px) {
    .free-workshop .free-workshop-tab-wrapper .modal-dialog {
        max-width: 100%
    }
}

.free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper {
    padding: 40px
}

.free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail {
    position: relative
}

.free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .close-btn {
    cursor: pointer;
    position: absolute;
    right: 10%
}

.free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .close-btn .fa-solid {
    font-size: 22px
}

.free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .class-name {
    color: #2d81f7;
    font-family: Nunito, arial;
    font-size: 20px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .class-name {
        font-size: 18px
    }
}

.free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .class-name span {
    color: #3c4852
}

.free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .speaker {
    color: #2d81f7;
    font-family: Nunito, arial;
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .speaker {
        font-size: 18px
    }
}

.free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .speaker span {
    color: #3c4852;
    margin-left: 10px
}

.free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .workshop-benefit {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
    max-width: 100%;
    width: 75%
}

@media (max-width: 767px) {
    .free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .workshop-benefit {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%
    }
}

.free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .workshop-benefit .heading {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .workshop-benefit .heading {
        font-size: 14px
    }
}

.free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .workshop-benefit ol li {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .workshop-benefit ol li {
        font-size: 14px
    }
}

.free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .time {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: flex-end
}

@media (max-width: 767px) {
    .free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .time {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .time .time-date {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    margin-right: 10px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .time .time-date {
        font-size: 14px
    }
}

@media (max-width: 767px) {
    .free-workshop .free-workshop-tab-wrapper .workshop-detail-wrapper .workshop-detail .time .time-date {
        margin-bottom: 10px
    }
}

.mock-test-wrapper {
    margin-top: 20px;
    padding-bottom: 60px
}

.mock-test-wrapper .mock-heading {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .mock-test-wrapper .mock-heading {
        font-size: 18px
    }
}

.mock-test-wrapper .description {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    margin-top: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .mock-test-wrapper .description {
        font-size: 14px
    }
}

.mock-test-wrapper .mock-cards {
    margin-top: 20px
}

.mock-test-wrapper .mock-cards .mock-card-wrapper {
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 11px 2px hsla(0, 1%, 63%, .349);
    box-shadow: 0 0 11px 2px hsla(0, 1%, 63%, .349);
    height: 100%;
    padding: 15px 10px
}

.mock-test-wrapper .mock-cards .mock-card-wrapper .mock-test-name {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

.mock-test-wrapper .mock-cards .mock-card-wrapper .green-btn {
    display: inline-block;
    float: right;
    margin-bottom: 20px;
    margin-top: 20px;
    position: relative
}

.result-nav {
    padding-bottom: 20px
}

.result-nav .section-heading {
    margin-bottom: 20px
}

.result-nav .filter-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: flex-end;
    margin-top: 20px
}

@media (max-width: 767px) {
    .result-nav .filter-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.result-nav .filter-wrapper select {
    background-image: url(/assets/frontend/images/icons/arrow-up.png);
    background-position: right 1rem center;
    background-size: 18px;
    border-color: #28c590;
    border-radius: 8px;
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 50px 15px 30px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .result-nav .filter-wrapper select {
        font-size: 14px
    }
}

.result-nav .filter-wrapper .course-dropdown {
    margin-right: 20px
}

@media (max-width: 767px) {
    .result-nav .filter-wrapper .course-dropdown {
        margin-right: 0
    }
}

.result-nav .filter-wrapper .year-dropdown {
    z-index: 1
}

@media (max-width: 767px) {
    .result-nav .filter-wrapper .year-dropdown {
        margin-top: 20px
    }
}

.result-nav .result-tab-wrapper {
    margin-top: 20px
}

.result-nav .result-tab-wrapper ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    list-style: none;
    padding: 0
}

@media (max-width: 767px) {
    .result-nav .result-tab-wrapper ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.result-nav .result-tab-wrapper ul li {
    border-right: 1px solid #d9d9d9;
    max-width: 100%;
    padding: 14px 0;
    text-align: center;
    width: 33.5%
}

@media (max-width: 767px) {
    .result-nav .result-tab-wrapper ul li {
        border-right: none;
        padding-left: 10px;
        text-align: left;
        width: 100%
    }
}

.result-nav .result-tab-wrapper ul li:last-child {
    border-right: none
}

.result-nav .result-tab-wrapper ul li a {
    color: #3c4852;
    display: inline-block;
    font-family: Nunito, arial;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    width: 100%
}

@media (min-width: 1024px) and (max-width:1366px) {
    .result-nav .result-tab-wrapper ul li a {
        font-size: 18px
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .result-nav .result-tab-wrapper ul li a {
        font-size: 16px;
        padding: 14px 10px
    }
}

.result-nav .result-tab-wrapper ul li.result-nav-active {
    background-color: #d3e2f7
}

.review-wrapper .review-col {
    margin-bottom: 40px;
    overflow: hidden;
    text-align: center
}

.review-wrapper .review-col img {
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    width: 100%
}

.review-wrapper .review-col .result-modal-link {
    position: relative
}

.review-wrapper .review-col .result-modal-link a {
    background: #43506d;
    bottom: 0;
    padding: 10px;
    position: absolute;
    right: 0;
    width: 65px
}

.review-wrapper .review-col .result-modal-link a .fa-solid {
    color: #fff;
    font-size: 24px
}

.review-wrapper .review-col .result-modal-link:hover .fa-solid {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: .5s;
    transition: .5s
}

.review-wrapper .review-col .review-student-content {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px
}

.review-wrapper .review-col .review-student-content.name {
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .review-wrapper .review-col .college {
        font-size: 14px
    }
}

.review-wrapper .review-col .review-view-more-btn {
    display: inline-block;
    margin-top: 10px
}

.review-wrapper .no-record-msg {
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700;
    text-align: center
}

.review-modal .modal-dialog {
    max-width: 50%
}

@media (max-width: 767px) {
    .review-modal .modal-dialog {
        max-width: 100%
    }
}

.review-modal .modal-dialog .modal-header {
    border: 0
}

.review-modal .modal-dialog .review-modal-wrapper {
    padding: 0 10px
}

.review-modal .modal-dialog .review-modal-wrapper .name {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

@media (max-width: 991px) {
    .review-modal .modal-dialog .review-modal-wrapper .name {
        margin-top: 20px
    }
}

.review-modal .modal-dialog .review-modal-wrapper .review-description {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    margin-top: 10px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .review-modal .modal-dialog .review-modal-wrapper .review-description {
        font-size: 14px
    }
}

.college-modal .modal-dialog {
    max-width: 50%
}

@media (max-width: 992px) {
    .college-modal .modal-dialog {
        max-width: 80%
    }
}

@media (max-width: 767px) {
    .college-modal .modal-dialog {
        max-width: 100%
    }
}

.college-modal .modal-dialog .modal-content {
    border: none;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .25);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .25)
}

.college-modal .modal-dialog .modal-header {
    border: 0
}

.college-modal .modal-dialog .college-modal-wrapper {
    padding: 0 35px 35px;
    text-align: center
}

@media (max-width: 768px) {
    .college-modal .modal-dialog .college-modal-wrapper {
        padding: 0 20px 20px
    }
}

.college-modal .modal-dialog .college-modal-wrapper .title {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .college-modal .modal-dialog .college-modal-wrapper .title {
        font-size: 18px
    }
}

@media (max-width: 768px) {
    .college-modal .modal-dialog .college-modal-wrapper .title {
        font-size: 24px;
        margin-bottom: 0
    }
}

.college-modal .modal-dialog .college-modal-wrapper .filter-row .filter-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px
}

.college-modal .modal-dialog .college-modal-wrapper .filter-row .filter-wrapper .search-dropdown {
    width: 100%
}

.college-modal .modal-dialog .college-modal-wrapper .filter-row .filter-wrapper select {
    background-image: url(/assets/frontend/images/icons/arrow-up.png);
    background-position: right 1rem center;
    background-size: 18px;
    border-color: #28c590;
    border-radius: 8px;
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 50px 15px 30px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .college-modal .modal-dialog .college-modal-wrapper .filter-row .filter-wrapper select {
        font-size: 14px
    }
}

.college-modal .modal-dialog .college-modal-wrapper .green-btn {
    margin-top: 1.5rem
}

.resullt-static-content {
    padding: 0 0 60px
}

.resullt-static-content .paginate svg {
    width: 30px
}

.startegy-video-wrapper .video-col {
    margin-bottom: 20px
}

.startegy-video-wrapper .video-col .strategy-video-modal-link {
    cursor: pointer
}

.startegy-video-wrapper .video-col .startegy-video {
    position: relative
}

.startegy-video-wrapper .video-col .startegy-video .video-play-btn {
    left: 50%;
    position: absolute;
    top: 40%
}

.startegy-video-wrapper .video-col .startegy-video .video-play-btn .fa {
    background-color: #28c590;
    border-radius: 50%;
    color: #fff;
    height: 37px;
    line-height: 37px;
    text-align: center;
    vertical-align: middle;
    width: 37px
}

.startegy-video-wrapper .video-col .name {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px
}

.startegy-video-wrapper .video-col .description {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px
}

.startegy-video-wrapper .video-col .review-view-more-btn {
    display: inline-block;
    margin-top: 10px
}

.startegy-video-wrapper .video-col .result-modal-link {
    position: relative
}

.startegy-video-wrapper .video-col .result-modal-link a {
    background: #43506d;
    bottom: 0;
    padding: 10px;
    position: absolute;
    right: 0;
    width: 65px
}

.startegy-video-wrapper .video-col .result-modal-link a .fa-solid {
    color: #fff;
    font-size: 24px
}

.startegy-video-wrapper .video-col .result-modal-link:hover .fa-solid {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: .5s;
    transition: .5s
}

.startegy-video-wrapper .no-record-msg {
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 700;
    text-align: center
}

.section-sub-heading {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 400;
    margin-top: 5px
}

@media (max-width: 767px) {
    .section-sub-heading {
        margin-top: 0
    }
}

@media (min-width: 768px) and (max-width:979px) {
    .section-sub-heading {
        margin-top: 0
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .section-sub-heading {
        font-size: 18px
    }
}

.announcement-wrapper .section-sub-heading {
    max-width: 650px
}

.announcement-wrapper .announcement-table {
    border-top: 1px solid #d9d9d9;
    margin-top: 20px
}

.announcement-wrapper .announcement-table table {
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
    color: #3c4852;
    font-family: Nunito, arial;
    margin-top: 20px;
    width: 100%
}

.announcement-wrapper .announcement-table table tr {
    border-bottom: 1px solid #d9d9d9 !important;
    border-width: 0
}

@media (min-width: 1024px) and (max-width:1366px) {
    .announcement-wrapper .announcement-table table tr {
        font-size: 14px
    }
}

.announcement-wrapper .announcement-table table tr td {
    border-width: 0;
    padding: 20px
}

@media (max-width: 768px) {
    .announcement-wrapper .announcement-table .desktop-table {
        display: none
    }
}

@media (min-width: 769px) {
    .announcement-wrapper .announcement-table .mobile-table {
        display: none
    }
}

.announcement-wrapper .announcement-table .mobile-table tr {
    border: none
}

.announcement-wrapper .announcement-table .mobile-table tr .announce-date {
    border-bottom: 1px solid #d9d9d9;
    padding-top: 0
}

.mlp-wrapper {
    color: #3c4852;
    font-family: Nunito, arial;
    padding-bottom: 0
}

.mlp-wrapper .mlp-btns {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px
}

@media (max-width: 767px) {
    .mlp-wrapper .mlp-btns {
        margin-bottom: 20px
    }
}

.mlp-wrapper .mlp-btns .blue-btn {
    margin-left: 40px
}

.mlp-wrapper .filter-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px
}

.mlp-wrapper .filter-wrapper select {
    background-image: url(/assets/frontend/images/icons/arrow-up.png);
    background-position: right 1rem center;
    background-size: 18px;
    border-color: #28c590;
    border-radius: 8px;
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 50px 15px 30px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .mlp-wrapper .filter-wrapper select {
        font-size: 14px
    }
}

.mlp-wrapper p {
    margin-top: 16px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .mlp-wrapper p {
        font-size: 14px
    }
}

.leadership-cards-wrapper {
    color: #3c4852;
    font-family: Nunito, arial;
    padding-top: 0
}

.leadership-card {
    background: #e9e9e9;
    border-radius: 8px;
    margin-top: 20px;
    padding: 20px;
    text-align: center
}

.leadership-card .leader-img img {
    border: 6px solid #b5b5b5;
    border-radius: 34%;
    width: 198px
}

.leadership-card .leader-logo {
    display: none
}

.leadership-card .leader-logo img {
    width: 82px
}

.leadership-card .leader-name {
    font-size: 20px;
    line-height: 1.2;
    margin: 10px auto
}

@media (min-width: 1024px) and (max-width:1366px) {
    .leadership-card .leader-name {
        font-size: 16px
    }
}

.leadership-card .card-bottom-text {
    line-height: 1.2;
    margin-top: 10px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .leadership-card .card-bottom-text {
        font-size: 14px
    }
}

.mlp-form-wrapper {
    background-image: url(/assets/frontend/images/leadership/mlp-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color: #3c4852;
    font-family: Nunito, arial
}

.mlp-form-wrapper .form-title {
    font-weight: 700;
    margin-bottom: 40px
}

.mlp-form-wrapper .mlp-form {
    max-width: 900px
}

.mlp-form-wrapper .mlp-form .mlp-form-fields {
    margin-bottom: 30px
}

@media (max-width: 992px) {
    .mlp-form-wrapper .mlp-form .mlp-form-fields {
        margin-bottom: 20px
    }
}

.mlp-form-wrapper .mlp-form .form-label {
    margin-bottom: 0
}

@media (min-width: 1024px) and (max-width:1366px) {
    .mlp-form-wrapper .mlp-form .form-label {
        font-size: 14px
    }
}

.mlp-form-wrapper .mlp-form .form-control {
    border: 1px solid #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    margin-top: 10px;
    padding: 15px
}

.mlp-form-wrapper .mlp-form .mlp-phone {
    position: relative
}

.mlp-form-wrapper .mlp-form .mlp-phone .verify-phn {
    bottom: 14px;
    position: absolute;
    right: 25px
}

.mlp-form-wrapper .mlp-form .mlp-btn {
    text-align: center
}

.mlp-form-wrapper .mlp-form .mlp-btn .catking-btn {
    width: 300px
}

.mlp-training-wrapper .mlp-training-title {
    font-weight: 700
}

.mlp-training-wrapper .training-table {
    padding-top: 20px
}

.mlp-training-wrapper .training-table table {
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
    color: #3c4852;
    font-family: Nunito, arial;
    width: 100%
}

.mlp-training-wrapper .training-table table .heading-row {
    border-radius: 8px;
    border-width: 0;
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, .1)
}

.mlp-training-wrapper .training-table table .table-divider td {
    height: 20px
}

.mlp-training-wrapper .training-table table tr {
    border-width: 0
}

@media (min-width: 1024px) and (max-width:1366px) {
    .mlp-training-wrapper .training-table table tr {
        font-size: 14px
    }
}

.mlp-training-wrapper .training-table table tr th {
    padding: 20px 40px
}

@media (max-width: 768px) {
    .mlp-training-wrapper .training-table table tr th {
        padding: 20px
    }
}

.mlp-training-wrapper .training-table table tr td {
    border-width: 0;
    padding: 0 40px 20px
}

@media (max-width: 768px) {
    .mlp-training-wrapper .training-table table tr td {
        padding: 0 20px 20px
    }
}

.mlp-training-wrapper .meet-trainer {
    background-color: #d9d9d9;
    border-radius: 8px;
    padding: 40px
}

@media (max-width: 992px) {
    .mlp-training-wrapper .meet-trainer {
        margin-top: 20px
    }
}

@media (max-width: 768px) {
    .mlp-training-wrapper .meet-trainer {
        padding: 20px
    }
}

.mlp-training-wrapper .meet-trainer .meet-trainer-title {
    font-size: 24px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .mlp-training-wrapper .meet-trainer .meet-trainer-title {
        font-size: 18px
    }
}

@media (max-width: 768px) {
    .mlp-training-wrapper .meet-trainer .meet-trainer-title {
        font-size: 18px
    }
}

.top-college .top-college-wrapper {
    border-top: 1px solid #d9d9d9
}

.top-college .top-college-wrapper .filter-col {
    border-right: 1px solid #d9d9d9
}

.top-college .top-college-wrapper .filter-col .vertical-college-filter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    border-bottom: 1px solid #d9d9d9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 10px;
    position: relative
}

.top-college .top-college-wrapper .filter-col .vertical-college-filter:last-child {
    border-bottom: none
}

.top-college .top-college-wrapper .filter-col .vertical-college-filter span {
    color: #3c4852;
    display: block;
    font-family: Nunito, arial;
    font-size: 22px;
    font-weight: 400;
    margin-top: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .top-college .top-college-wrapper .filter-col .vertical-college-filter span {
        font-size: 18px
    }
}

.top-college .top-college-wrapper .filter-col .vertical-college-filter ul {
    list-style: none;
    margin-bottom: 0;
    margin-top: 20px;
    padding: 0
}

.top-college .top-college-wrapper .filter-col .vertical-college-filter ul li .form-group {
    display: block;
    margin-bottom: 10px
}

.top-college .top-college-wrapper .filter-col .vertical-college-filter ul li .form-group input {
    cursor: pointer;
    display: none;
    height: auto;
    margin-bottom: 0;
    padding: 0;
    width: auto
}

.top-college .top-college-wrapper .filter-col .vertical-college-filter ul li .form-group label {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #3c4852;
    cursor: pointer;
    display: inline-block;
    font-family: Nunito, arial;
    font-size: 16px;
    position: relative
}

@media (min-width: 1024px) and (max-width:1366px) {
    .top-college .top-college-wrapper .filter-col .vertical-college-filter ul li .form-group label {
        font-size: 14px
    }
}

.top-college .top-college-wrapper .filter-col .vertical-college-filter ul li .form-group label:before {
    background-color: transparent;
    border: 2px solid #9e9e9e;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05), inset 0 -15px 10px -12px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05), inset 0 -15px 10px -12px rgba(0, 0, 0, .05);
    content: "";
    cursor: pointer;
    display: inline-block;
    margin-right: 20px;
    padding: 7px;
    position: relative;
    vertical-align: middle
}

.top-college .top-college-wrapper .filter-col .vertical-college-filter ul li .form-group input:checked+label:after {
    border: solid #0079bf;
    border-width: 0 2px 2px 0;
    content: "";
    display: block;
    height: 11px;
    left: 6px;
    position: absolute;
    top: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 6px
}

.top-college .top-college-wrapper .mobile-college-filter {
    background-color: #fff;
    bottom: 0;
    -webkit-box-shadow: 0 -2px 4px rgba(0, 0, 0, .08), 0 -4px 12px rgba(0, 0, 0, .08);
    box-shadow: 0 -2px 4px rgba(0, 0, 0, .08), 0 -4px 12px rgba(0, 0, 0, .08);
    left: 0;
    padding: .8rem .5rem;
    position: fixed;
    right: 0;
    width: 100%;
    z-index: 1000
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-college-menu-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-flex-pack: distribute;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-around
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-college-menu-list .filter a {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-college-menu-list .filter-divider {
    border-left: 2px solid #eaeaec !important;
    height: 22px;
    width: 1px;
    z-index: 1
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-filter-wrapper {
    position: absolute
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-filter-wrapper .mobile-list-menu {
    background: #fff;
    height: 100vh;
    left: 0;
    overflow: auto;
    padding: 4rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-filter-wrapper .mobile-list-menu .mobile-list-nav-wrapper {
    height: 100%;
    position: relative
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-filter-wrapper .mobile-list-menu .mobile-list-nav-wrapper .college-filter-nav {
    background: #f6f6f6;
    height: 100%
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-filter-wrapper .mobile-list-menu .mobile-list-nav-wrapper .college-filter-nav .nav-link {
    border-bottom: 1px solid #a1a1a1;
    border-radius: 0;
    color: #3c4852;
    line-height: 45px
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-filter-wrapper .mobile-list-menu .mobile-list-nav-wrapper .college-filter-nav .nav-link.active {
    background-color: #fff
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-filter-wrapper .mobile-list-menu .mobile-list-nav-wrapper .tab-content {
    width: 100%
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-filter-wrapper .mobile-list-menu .mobile-list-nav-wrapper .tab-content .tab-pane ul {
    list-style: none;
    padding-left: 0
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-filter-wrapper .mobile-list-menu .mobile-list-nav-wrapper .tab-content .tab-pane ul li {
    padding: 15px 2px 15px 0
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-filter-wrapper .mobile-list-menu .mobile-list-nav-wrapper .tab-content .tab-pane ul li .form-group {
    display: block;
    margin-bottom: 10px
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-filter-wrapper .mobile-list-menu .mobile-list-nav-wrapper .tab-content .tab-pane ul li .form-group input {
    cursor: pointer;
    display: none;
    height: auto;
    margin-bottom: 0;
    padding: 0;
    width: auto
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-filter-wrapper .mobile-list-menu .mobile-list-nav-wrapper .tab-content .tab-pane ul li .form-group label {
    color: #3c4852;
    cursor: pointer;
    display: block;
    font-family: Nunito, arial;
    font-size: 16px;
    position: relative
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-filter-wrapper .mobile-list-menu .mobile-list-nav-wrapper .tab-content .tab-pane ul li .form-group label:before {
    background-color: transparent;
    border: 2px solid #9e9e9e;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05), inset 0 -15px 10px -12px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05), inset 0 -15px 10px -12px rgba(0, 0, 0, .05);
    content: "";
    cursor: pointer;
    display: inline-block;
    margin-right: 20px;
    padding: 7px;
    position: relative;
    vertical-align: middle
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-filter-wrapper .mobile-list-menu .mobile-list-nav-wrapper .tab-content .tab-pane ul li .form-group input:checked+label:after {
    border: solid #0079bf;
    border-width: 0 2px 2px 0;
    content: "";
    display: block;
    height: 11px;
    left: 6px;
    position: absolute;
    top: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 6px
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-filter-wrapper .apply-close-wrapper {
    bottom: 0;
    left: 0;
    padding: .8rem .5rem;
    position: fixed;
    right: 0;
    width: 100%;
    z-index: 1000
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-filter-wrapper .apply-close-wrapper .apply-close-div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-flex-pack: distribute;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-around
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-filter-wrapper .apply-close-wrapper .apply-close-div .filter a {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none
}

.top-college .top-college-wrapper .mobile-college-filter .mobile-filter-wrapper .apply-close-wrapper .apply-close-div .filter-divider {
    border-left: 2px solid #eaeaec !important;
    height: 22px;
    width: 1px;
    z-index: 1
}

.top-college .top-college-wrapper .college-list-card {
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 11px 2px hsla(0, 1%, 63%, .349);
    box-shadow: 0 0 11px 2px hsla(0, 1%, 63%, .349);
    margin-top: 20px;
    overflow: hidden;
    padding: 15px 25px;
    position: relative
}

.top-college .top-college-wrapper .college-list-card .college-card-header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between
}

.top-college .top-college-wrapper .college-list-card .college-card-header .featured-icon {
    height: 50px;
    margin-top: -30px;
    width: 50px
}

@media (max-width: 767px) {
    .top-college .top-college-wrapper .college-list-card .college-card-header .featured-icon {
        height: 30px;
        width: 30px
    }
}

.top-college .top-college-wrapper .college-list-card .featured-tag {
    background-color: #e85e68;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .3);
    -ms-box-shadow: 0 0 4px rgba(0, 0, 0, .3);
    box-shadow: 0 0 4px rgba(0, 0, 0, .3);
    color: #fff;
    display: block;
    font-family: Nunito, arial;
    font-size: 15px;
    left: 76%;
    padding: 10px 0;
    position: absolute;
    text-align: center;
    top: px;
    -webkit-transform: rotate(45deg) translateZ(0);
    transform: rotate(45deg) translateZ(0);
    width: 158px
}

.top-college .top-college-wrapper .college-list-card .name {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 24px;
    margin-bottom: 10px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .top-college .top-college-wrapper .college-list-card .name {
        font-size: 18px
    }
}

.top-college .top-college-wrapper .college-list-card img {
    width: 100%
}

.top-college .top-college-wrapper .college-list-card .establish-location {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-top: 10px
}

.top-college .top-college-wrapper .college-list-card .establish-location .year {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .top-college .top-college-wrapper .college-list-card .establish-location .year {
        font-size: 14px
    }
}

.top-college .top-college-wrapper .college-list-card .establish-location .year span {
    font-weight: 400
}

.top-college .top-college-wrapper .college-list-card .establish-location .location {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

.top-college .top-college-wrapper .college-list-card .establish-location .location .fa-solid {
    color: #2d81f7
}

@media (min-width: 1024px) and (max-width:1366px) {
    .top-college .top-college-wrapper .college-list-card .establish-location .location {
        font-size: 14px
    }
}

.top-college .top-college-wrapper .college-list-card .time-period {
    color: #28c590;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .top-college .top-college-wrapper .college-list-card .time-period {
        font-size: 14px
    }
}

.top-college .top-college-wrapper .college-list-card .course-info {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    margin-top: 10px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .top-college .top-college-wrapper .college-list-card .course-info {
        font-size: 14px
    }
}

.top-college .top-college-wrapper .college-list-card .accreditation {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .top-college .top-college-wrapper .college-list-card .accreditation {
        font-size: 14px
    }
}

.top-college .top-college-wrapper .college-list-card .accreditation span {
    font-weight: 400
}

.top-college .top-college-wrapper .college-list-card .fee-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-top: 10px
}

@media (max-width: 450px) {
    .top-college .top-college-wrapper .college-list-card .fee-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.top-college .top-college-wrapper .college-list-card .fee-wrapper .fee {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .top-college .top-college-wrapper .college-list-card .fee-wrapper .fee {
        font-size: 14px
    }
}

.top-college .top-college-wrapper .college-list-card .fee-wrapper .fee span {
    font-weight: 400
}

.top-college .top-college-wrapper .college-list-card .college-link-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-top: 10px
}

.top-college .top-college-wrapper .college-list-card .college-link-wrapper .course-duration {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .top-college .top-college-wrapper .college-list-card .college-link-wrapper .course-duration {
        font-size: 14px
    }
}

.top-college .top-college-wrapper .college-list-card .college-link-wrapper .view-link a {
    color: #2d81f7;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .top-college .top-college-wrapper .college-list-card .college-link-wrapper .view-link a {
        font-size: 14px
    }
}

.top-college .top-college-wrapper .college-list-card .college-btn {
    display: block;
    margin-top: 20px
}

.top-college .top-college-wrapper .college-list-card .college-btn .catking-btn {
    display: inline-block
}

@media (min-width: 768px) and (max-width:1024px) {
    .top-college .top-college-wrapper .college-list-card .college-btn .transparent-btn {
        margin-top: 10px
    }
}

.mnemonics {
    padding: 0 0 60px
}

.mnemonics .mnemonic-main-container {
    padding-bottom: 60px;
    padding-top: 60px
}

.mnemonics .row {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.mnemonics .row .col-md-4 {
    margin-top: 20px
}

.mnemonics .mnemonics-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    padding: 20px 15px
}

.mnemonics .mnemonics-card .mnemonics-img {
    margin-bottom: 20px
}

.mnemonics .mnemonics-card .mnemonics-img img {
    width: 100%
}

.mnemonics .mnemonics-card .mnemonics-detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    justify-content: space-between
}

.mnemonics .mnemonics-card .chapter-name {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 18px;
    font-weight: 700
}

.mnemonics .mnemonics-card .mnemonics-btn {
    margin-top: 20px;
    text-align: right
}

.mnemonics .mnemonics-card .mnemonics-btn a {
    border: 1px solid #3c4852;
    color: #2d81f7;
    display: inline-block;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    text-align: right;
    text-decoration: none
}

@media (min-width: 992px) and (max-width:1024px) {
    .mnemonics .mnemonics-card .mnemonics-btn a {
        padding: 18px 20px
    }
}

.mnemonics .mnemonics-card .mnemonics-btn a:hover {
    background-color: #3c4852;
    color: #fff
}

.mnemonics-single .mnemonics-chapter-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between
}

@media (max-width: 500px) {
    .mnemonics-single .mnemonics-chapter-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .mnemonics-single .mnemonics-chapter-wrapper .section-heading {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
}

.mnemonics-single .mnemonics-chapter-wrapper select {
    width: auto
}

@media (max-width: 500px) {
    .mnemonics-single .mnemonics-chapter-wrapper select {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
}

.mnemonics-single .mnemonics-chapter-wrapper .chapter-dropdown {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #28c590;
    border-radius: 8px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 20px;
    font-weight: 400;
    position: relative;
    text-align: left;
    width: 200px
}

@media (max-width: 1366px) {
    .mnemonics-single .mnemonics-chapter-wrapper .chapter-dropdown {
        font-size: 18px
    }
}

.mnemonics-single .mnemonics-chapter-wrapper .chapter-dropdown .default-option {
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 5px 15px 15px;
    position: relative;
    width: 100%
}

.mnemonics-single .mnemonics-chapter-wrapper .chapter-dropdown .default-option:before {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

@media (max-width: 1366px) {
    .mnemonics-single .mnemonics-chapter-wrapper .chapter-dropdown .default-option:before {
        font-size: 18px
    }
}

.mnemonics-single .mnemonics-chapter-wrapper .chapter-dropdown ul {
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 8px 8px 6px -10px #b3c6ff;
    box-shadow: 8px 8px 6px -10px #b3c6ff;
    display: none;
    height: 500px;
    left: 0;
    overflow-y: scroll;
    padding: 20px;
    position: absolute;
    top: 60px;
    width: 200px
}

.mnemonics-single .mnemonics-chapter-wrapper .chapter-dropdown ul.active {
    display: block
}

.mnemonics-single .mnemonics-chapter-wrapper .chapter-dropdown ul li {
    list-style: none;
    padding-bottom: 20px
}

.mnemonics-single .mnemonics-chapter-wrapper .chapter-dropdown ul li:last-child {
    padding-bottom: 0
}

.mnemonics-single .mnemonics-chapter-wrapper .chapter-dropdown ul li:hover {
    color: #6f768d
}

.mnemonics-single .mnemonics-chapter-wrapper .chapter-dropdown ul li a {
    color: #3c4852;
    display: block;
    font-family: Nunito, arial;
    font-size: 16px;
    text-decoration: none
}

.mnemonics-single .mnemonics-img img {
    width: auto
}

.mnemonics-single .divider {
    border-top: 1px solid #d9d9d9;
    margin-bottom: 15px;
    margin-top: 15px
}

.mnemonics-single .mnemonics-meaning .heading {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 24px;
    font-weight: 700
}

.mnemonics-single .mnemonics-meaning ul {
    list-style: none;
    padding: 0
}

.mnemonics-single .mnemonics-meaning ul li {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px
}

.profile-review-wrapper {
    font-family: Nunito, arial
}

.profile-review-wrapper .mentor-link-container a {
    border: 1px solid;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
    padding: 16px 40px;
    text-decoration: none;
    text-transform: capitalize
}

@media (min-width: 1024px) and (max-width:1366px) {
    .profile-review-wrapper .mentor-link-container a {
        font-size: 14px
    }
}

@media (max-width: 768px) {
    .profile-review-wrapper .mentor-link-container a {
        padding: 16px 20px
    }
}

.profile-review-wrapper .mentor-link-container .active-mentor-link {
    background: #2d81f7;
    color: #fff
}

.profile-review-wrapper .mentor-link-container .deactive-mentor-link {
    background: #e9e9e9;
    color: #3c4852
}

.profile-review-wrapper .divider {
    border: 1px solid #d9d9d9;
    margin-top: 20px
}

.profile-review-wrapper .mentro-profile-wrapper .mentor-profile-card {
    background-color: #e9e9e9;
    border-radius: 8px;
    margin-top: 20px;
    padding: 20px;
    position: relative;
    text-align: center
}

.profile-review-wrapper .mentro-profile-wrapper .mentor-profile-card a.profile-popup {
    position: absolute;
    right: 10px;
    top: 10px
}

.profile-review-wrapper .mentro-profile-wrapper .mentor-profile-card .mentor-img img {
    border: 6px solid #b5b5b5;
    border-radius: 34%;
    width: 198px
}

.profile-review-wrapper .mentro-profile-wrapper .mentor-profile-card .mentor-name {
    font-size: 18px;
    line-height: 1.2;
    margin: 10px auto
}

@media (min-width: 1024px) and (max-width:1366px) {
    .profile-review-wrapper .mentro-profile-wrapper .mentor-profile-card .mentor-name {
        font-size: 16px
    }
}

.profile-review-wrapper .mentro-profile-wrapper .mentor-profile-card .card-bottom-text {
    line-height: 1.2;
    margin: 10px auto
}

@media (min-width: 1024px) and (max-width:1366px) {
    .profile-review-wrapper .mentro-profile-wrapper .mentor-profile-card .card-bottom-text {
        font-size: 14px
    }
}

.profile-review-wrapper .mentro-profile-wrapper .mentor-profile-card .green-btn {
    display: inline-block
}

.profile-review-wrapper p {
    margin-top: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .profile-review-wrapper p {
        font-size: 14px
    }
}

@media (max-width: 768px) {
    .profile-review-wrapper p {
        margin-top: 0
    }
}

.educare-wrapper {
    font-family: Nunito, arial;
    padding-top: 0
}

.educare-wrapper .section-sub-heading {
    font-weight: 700;
    margin-bottom: 20px
}

.educare-wrapper .o-list-title {
    font-weight: 700;
    margin-bottom: 0
}

.educare-wrapper ol {
    margin: 0;
    padding: 12px
}

.educare-wrapper .blue-btn {
    display: inline-block;
    margin-top: 20px
}

@media (max-width: 992px) {
    .educare-wrapper .educare-img-container {
        margin-top: 20px
    }
}

.educare-wrapper .educare-img-container img {
    border-radius: 8px;
    width: 100%
}

@media (min-width: 1024px) and (max-width:1366px) {
    .educare-wrapper p {
        font-size: 14px
    }
}

.how-work {
    background-color: #dfecff;
    margin-bottom: 40px;
    text-align: center
}

.how-work .section-sub-heading {
    font-weight: 700
}

.mentor-form .file-upload {
    padding-left: 25px !important
}

.mentor-modal-wrapper {
    padding: 0 30px 30px
}

.mentor-modal-wrapper .mentor-detail {
    background-color: #e9e9e9;
    padding: 12px;
    text-align: center
}

@media (max-width: 768px) {
    .mentor-modal-wrapper .mentor-detail {
        margin-bottom: 20px
    }
}

.mentor-modal-wrapper .mentor-detail .mentor-name {
    font-weight: 700;
    margin-top: 10px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .mentor-modal-wrapper .mentor-detail .mentor-name {
        font-size: 14px
    }
}

.mentor-modal-wrapper .mentor-detail img {
    border-radius: 100px;
    width: 200px
}

.mentor-modal-wrapper .mentor-detail .review-mentor-content {
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .mentor-modal-wrapper .review-description {
        font-size: 14px
    }
}

.discover-wrapper .success-stories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.discover-wrapper .success-stories div {
    margin-right: 20px
}

@media (max-width: 570px) {
    .discover-wrapper .success-stories div {
        margin-right: 10px
    }
}

.discover-wrapper .success-stories div:first-child {
    margin-top: 40px
}

@media (max-width: 570px) {
    .discover-wrapper .success-stories div:first-child {
        margin-top: 20px
    }
}

.discover-wrapper .success-stories img {
    border-radius: 8px;
    margin-top: 20px
}

.stories-profile-wrapper .section-sub-heading {
    font-weight: 700;
    margin-bottom: 20px
}

.stories-profile-wrapper .success-stories-profile {
    margin-bottom: 20px
}

.stories-profile-wrapper .swiper-slide {
    margin-bottom: 0 !important
}

.we-are-wrapper {
    font-family: Nunito, arial;
    padding-top: 80px
}

@media (max-width: 768px) {
    .we-are-wrapper {
        padding-top: 60px
    }
}

.we-are-wrapper .who-img-container {
    border: 1px solid #3c4852;
    border-radius: 8px;
    padding-bottom: 20px
}

@media (max-width: 768px) {
    .we-are-wrapper .who-img-container {
        margin-top: 20px;
        padding-bottom: 10px
    }
}

.we-are-wrapper .who-img-container img {
    border-radius: 8px;
    margin-left: -20px;
    margin-top: -20px;
    width: 100%
}

@media (max-width: 768px) {
    .we-are-wrapper .who-img-container img {
        margin-left: -10px;
        margin-top: -10px
    }
}

.we-are-wrapper p {
    margin-top: 20px;
    padding-right: 2rem
}

@media (min-width: 1024px) and (max-width:1366px) {
    .we-are-wrapper p {
        font-size: 14px
    }
}

@media (max-width: 768px) {
    .we-are-wrapper p {
        margin-top: 0;
        padding-right: 0
    }
}

.believe-wrapper {
    background-color: #dfecff;
    font-family: Nunito, arial;
    height: 500px;
    margin-bottom: 90px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .believe-wrapper {
        margin-bottom: 30px
    }
}

@media (max-width: 1200px) {
    .believe-wrapper {
        height: 550px;
        margin-bottom: 100px
    }
}

@media (max-width: 992px) {
    .believe-wrapper {
        height: auto;
        margin-bottom: 0
    }
}

.believe-wrapper p {
    margin-top: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .believe-wrapper p {
        font-size: 14px
    }
}

@media (max-width: 768px) {
    .believe-wrapper p {
        margin-top: 0
    }
}

.believe-wrapper .row {
    position: relative
}

.believe-wrapper .row .believe-card {
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .15);
    margin-top: 40px;
    padding: 40px 30px
}

@media (max-width: 992px) {
    .believe-wrapper .row .believe-card {
        margin-top: 20px
    }
}

.believe-wrapper .row .believe-card .icon {
    margin-bottom: 20px
}

.believe-wrapper .row .believe-card .icon img {
    width: 60px
}

.believe-wrapper .row .believe-card .title {
    font-size: 20px;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .believe-wrapper .row .believe-card .title {
        font-size: 18px
    }
}

.believe-wrapper .row .believe-card .detail {
    margin-top: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {

    .believe-wrapper .row .believe-card .detail,
    .believe-wrapper .row .believe-card .sub-title {
        font-size: 14px
    }
}

.success-story-wrapper {
    font-family: Nunito, arial
}

.success-story-wrapper p {
    margin-top: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .success-story-wrapper p {
        font-size: 14px
    }
}

@media (max-width: 768px) {
    .success-story-wrapper p {
        margin-top: 0
    }
}

.success-story-wrapper .name {
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .success-story-wrapper .clg-name {
        font-size: 14px
    }
}

.success-story-wrapper .storySwiper {
    margin-top: 20px
}

.success-story-wrapper .storySwiper .swiper-wrapper {
    margin-bottom: 60px
}

.success-story-wrapper .storySwiper .swiper-wrapper img,
.success-story-wrapper .storySwiper .swiper-wrapper video {
    width: 100%
}

.success-story-wrapper .storySwiper .swiper-arrow .swiper-button-next,
.success-story-wrapper .storySwiper .swiper-arrow .swiper-button-prev {
    background: unset;
    border: none;
    height: unset;
    top: 96%;
    width: unset
}

@media (max-width: 992px) {

    .success-story-wrapper .storySwiper .swiper-arrow .swiper-button-next,
    .success-story-wrapper .storySwiper .swiper-arrow .swiper-button-prev {
        top: 94%
    }
}

@media (max-width: 768px) {

    .success-story-wrapper .storySwiper .swiper-arrow .swiper-button-next,
    .success-story-wrapper .storySwiper .swiper-arrow .swiper-button-prev {
        top: 92%
    }
}

@media (max-width: 420px) {

    .success-story-wrapper .storySwiper .swiper-arrow .swiper-button-next,
    .success-story-wrapper .storySwiper .swiper-arrow .swiper-button-prev {
        top: 90%
    }
}

.success-story-wrapper .storySwiper .swiper-arrow .swiper-button-next img,
.success-story-wrapper .storySwiper .swiper-arrow .swiper-button-prev img {
    max-width: unset;
    width: 40px
}

.success-story-wrapper .storySwiper .swiper-arrow .swiper-button-next:after,
.success-story-wrapper .storySwiper .swiper-arrow .swiper-button-prev:after {
    display: none
}

.success-story-wrapper .storySwiper .swiper-arrow .swiper-button-next {
    left: 51%;
    right: unset
}

.success-story-wrapper .storySwiper .swiper-arrow .swiper-button-next img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.success-story-wrapper .storySwiper .swiper-arrow .swiper-button-prev {
    left: 46%
}

@media (max-width: 992px) {
    .success-story-wrapper .storySwiper .swiper-arrow .swiper-button-prev {
        left: 43%
    }
}

@media (max-width: 768px) {
    .success-story-wrapper .storySwiper .swiper-arrow .swiper-button-prev {
        left: 41%
    }
}

@media (max-width: 420px) {
    .success-story-wrapper .storySwiper .swiper-arrow .swiper-button-prev {
        left: 35%
    }
}

.why-us-wrapper {
    font-family: Nunito, arial
}

.why-us-wrapper .why-us-list .list-point {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .why-us-wrapper .why-us-list .list-point {
        font-size: 14px
    }
}

.why-us-wrapper .why-us-list .list-point img {
    width: 40px
}

.why-us-wrapper .why-us-list .list-point .list-heading {
    font-weight: 700
}

@media (max-width: 768px) {
    .why-us-wrapper .why-us-img {
        margin-top: 20px
    }
}

.why-us-wrapper .why-us-img .col-6:first-child {
    padding-right: 3px
}

.why-us-wrapper .why-us-img .col-6:last-child {
    padding-left: 3px
}

.why-us-wrapper .why-us-img img {
    border-radius: 8px;
    width: 100%
}

@media (min-width: 1024px) and (max-width:1366px) {
    .why-us-wrapper p {
        font-size: 14px
    }
}

.about-partners {
    background-color: #fff
}

.expert-wrapper {
    padding-bottom: 0
}

.expert-wrapper .container {
    background-color: #dfecff;
    padding: 40px
}

.expert-wrapper .expert-img {
    padding-right: 2rem
}

@media (max-width: 992px) {
    .expert-wrapper .expert-img {
        margin-bottom: 20px;
        padding-right: 0
    }
}

.expert-wrapper .expert-img img {
    border-radius: 8px
}

.expert-wrapper .list-point {
    border-bottom: 1px solid #3c4852;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    padding-bottom: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .expert-wrapper .list-point {
        font-size: 14px
    }
}

.expert-wrapper .list-point img {
    min-width: 12px
}

.contact-wrapper {
    background-color: #2d81f7;
    color: #fff;
    font-family: Nunito, arial
}

.contact-wrapper .section-heading {
    color: #fff
}

.contact-wrapper p {
    margin-top: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .contact-wrapper p {
        font-size: 14px
    }
}

@media (max-width: 768px) {
    .contact-wrapper p {
        margin-top: 0
    }
}

.contact-social-wrapper {
    background-color: #2d81f7
}

@media (max-width: 768px) {
    .contact-social-wrapper {
        padding-top: 0
    }
}

.contact-social-wrapper .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.contact-social-wrapper .container .social-icon {
    margin-right: 50px
}

@media (max-width: 767px) {
    .contact-social-wrapper .container .social-icon {
        margin-right: 25px
    }
}

.contact-social-wrapper .container .social-icon img {
    width: 30px
}

.contact-form-wrapper {
    font-family: Nunito, arial;
    padding: 0
}

@media (max-width: 570px) {
    .contact-form-wrapper .p0 {
        padding: 0
    }
}

.contact-form-wrapper .section-heading {
    padding-top: 60px
}

.contact-form-wrapper .contact-form {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    position: relative;
    top: -90px
}

@media (max-width: 768px) {
    .contact-form-wrapper .contact-form {
        margin-bottom: 60px;
        position: static
    }
}

@media (max-width: 570px) {
    .contact-form-wrapper .contact-form {
        padding: 12px
    }
}

.contact-form-wrapper .contact-form .section-sub-heading {
    margin-bottom: 40px
}

.contact-form-wrapper .contact-form .contact-form-fields {
    margin-bottom: 30px
}

@media (max-width: 992px) {
    .contact-form-wrapper .contact-form .contact-form-fields {
        margin-bottom: 20px
    }
}

.contact-form-wrapper .contact-form .form-label {
    margin-bottom: 0
}

@media (min-width: 1024px) and (max-width:1366px) {
    .contact-form-wrapper .contact-form .form-label {
        font-size: 14px
    }
}

.contact-form-wrapper .contact-form .form-control {
    border: 1px solid #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    margin-top: 10px;
    padding: 15px
}

.contact-form-wrapper .contact-form .contact-phone {
    position: relative
}

.contact-form-wrapper .contact-form .contact-phone .verify-phn {
    bottom: 14px;
    position: absolute;
    right: 25px
}

.contact-form-wrapper .contact-form .contact-btn {
    text-align: center
}

.contact-form-wrapper .contact-form .contact-btn .catking-btn {
    width: 300px
}

.contact-form-wrapper p {
    margin-top: 20px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .contact-form-wrapper p {
        font-size: 14px
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper p {
        margin-top: 0
    }
}

.blog-wrapper {
    font-family: Nunito, arial;
    padding-top: 0
}

.blog-wrapper .blog-category-list {
    margin-top: 60px
}

.blog-wrapper .blog-category-list a {
    background-color: #dfecff;
    border-radius: 25px;
    color: #3c4852;
    display: inline-block;
    font-family: Nunito, arial;
    font-weight: 700;
    margin: 0 5px;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase
}

@media (max-width: 500px) {
    .blog-wrapper .blog-category-list a {
        font-size: 14px
    }
}

.blog-wrapper .blog-category-list a.active {
    background-color: #2d81f7;
    color: #fff
}

.blog-wrapper .swiper-button-next,
.blog-wrapper .swiper-button-prev {
    top: 25%
}

.blog-wrapper .swiper-button-next:after,
.blog-wrapper .swiper-button-prev:after {
    color: #3c4852;
    font-size: 22px
}

.blog-wrapper .swiper-button-next {
    right: 0
}

.blog-wrapper .swiper-button-prev {
    left: auto;
    right: 50px
}

.blog-wrapper .divider {
    border-top: 1px solid #d9d9d9;
    margin-top: 20px
}

.blog-row .blog-box {
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .15);
    margin-top: 20px
}

.blog-row .blog-box .blog-img img {
    border-radius: 8px;
    width: 100%
}

.blog-row .blog-box .blog-content-wrapper {
    padding: 12px
}

.blog-row .blog-box .blog-content-wrapper .blog-title {
    font-weight: 700;
    margin-bottom: 20px
}

.blog-row .blog-box .blog-content-wrapper .blog-description {
    line-height: 24px;
    text-align: justify
}

@media (min-width: 1024px) and (max-width:1366px) {
    .blog-row .blog-box .blog-content-wrapper .blog-description {
        font-size: 14px
    }
}

.blog-row .blog-box .detail {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between
}

.blog-row .blog-box .detail .author-detail .author {
    font-weight: 700;
    margin: 10px 0
}

@media (min-width: 1024px) and (max-width:1366px) {
    .blog-row .blog-box .detail .author-detail .author {
        font-size: 14px
    }
}

.blog-row .blog-box .detail .author-detail .author span {
    color: #2d81f7
}

.blog-row .blog-box .detail .read-more {
    border: 1px solid #3c4852;
    color: #2d81f7;
    font-weight: 700
}

@media (min-width: 992px) and (max-width:1024px) {
    .blog-row .blog-box .detail .read-more {
        padding: 18px 20px
    }
}

.blog-row .blog-box .detail .read-more:hover {
    background-color: #3c4852;
    color: #fff
}

@media (min-width: 1024px) and (max-width:1366px) {
    .blog-row .blog-box .detail .publish-date {
        font-size: 14px
    }
}

.blog-row a {
    color: unset;
    text-decoration: none
}

.blog-detail-wrapper {
    font-family: Nunito, arial
}

.blog-detail-wrapper .blog-title-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #d9d9d9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px
}

@media (max-width: 992px) {
    .blog-detail-wrapper .blog-title-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.blog-detail-wrapper .blog-title-wrapper .section-heading {
    font-size: 24px
}

.blog-detail-wrapper .blog-title-wrapper .blog-date {
    color: #3c4852;
    font-weight: 700
}

@media (max-width: 992px) {
    .blog-detail-wrapper .blog-title-wrapper .blog-date {
        font-size: 14px;
        margin-left: 0 !important
    }
}

.blog-detail-wrapper .blog-content-wrapper {
    padding-top: 20px
}

@media (max-width: 767px) {

    .blog-detail-wrapper .blog-content-wrapper iframe,
    .blog-detail-wrapper .blog-content-wrapper img {
        width: 100%
    }
}

.blog-detail-wrapper .author-detail {
    margin-top: 20px
}

.blog-detail-wrapper .author-detail .author-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 20px
}

@media (max-width: 768px) {
    .blog-detail-wrapper .author-detail .author-flex {
        padding-top: 10px
    }
}

.blog-detail-wrapper .author-detail .author-flex .author-img {
    border-radius: 8px;
    margin-right: 12px;
    width: 60px
}

.blog-detail-wrapper .author-detail .author-flex .author-img img {
    border-radius: 8px;
    width: 100%
}

.blog-detail-wrapper .author-detail .author-flex .author-id {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.blog-detail-wrapper .author-detail .author-flex .author-id .author-name {
    color: #2d81f7;
    font-size: 22px;
    font-weight: 700
}

@media (max-width: 768px) {
    .blog-detail-wrapper .author-detail .author-flex .author-id .author-name {
        font-size: 18px
    }
}

.blog-detail-wrapper .comment-wrapper {
    background-color: #fff;
    margin-top: 20px;
    padding: 30px
}

@media (max-width: 768px) {
    .blog-detail-wrapper .comment-wrapper {
        margin-bottom: 20px;
        padding: 15px
    }
}

.blog-detail-wrapper .comment-wrapper .section-sub-heading {
    margin-top: 0
}

.blog-detail-wrapper .comment-wrapper .comment-section {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    margin-top: 20px
}

@media (max-width: 420px) {
    .blog-detail-wrapper .comment-wrapper .comment-section {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: flex-end
    }
}

.blog-detail-wrapper .comment-wrapper .comment-section .comment-field {
    border: 1px solid #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    font-family: Nunito, arial;
    padding: 15px;
    width: 100%
}

.blog-detail-wrapper .comment-wrapper .comment-section .comment-field::-webkit-input-placeholder {
    color: #d4d4d4
}

.blog-detail-wrapper .comment-wrapper .comment-section .comment-field::-moz-placeholder {
    color: #d4d4d4
}

.blog-detail-wrapper .comment-wrapper .comment-section .comment-field:-ms-input-placeholder {
    color: #d4d4d4
}

.blog-detail-wrapper .comment-wrapper .comment-section .comment-field::-ms-input-placeholder {
    color: #d4d4d4
}

.blog-detail-wrapper .comment-wrapper .comment-section .comment-field::placeholder {
    color: #d4d4d4
}

.blog-detail-wrapper .comment-wrapper .comment-section .comment-field:focus {
    outline: none
}

.blog-detail-wrapper .comment-wrapper .comment-section .blue-btn {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: 10px;
    padding-bottom: 15px;
    padding-top: 15px
}

@media (max-width: 420px) {
    .blog-detail-wrapper .comment-wrapper .comment-section .blue-btn {
        margin-left: 0;
        margin-top: 10px
    }
}

.blog-detail-wrapper .comment-wrapper .load-more-comments a {
    background-color: #e9e9e9;
    color: #3c4852;
    padding: 15px;
    width: 200px
}

.blog-detail-wrapper .comment-wrapper .noComment {
    background-color: transparent !important;
    color: #000 !important;
    pointer-events: none
}

.blog-detail-wrapper .comment-wrapper .post-comment-wrapper {
    display: none;
    margin-top: 20px
}

.blog-detail-wrapper .comment-wrapper .post-comment-wrapper .user-img {
    border-radius: 8px;
    margin-right: 12px;
    width: 60px
}

.blog-detail-wrapper .comment-wrapper .post-comment-wrapper .user-img img {
    border-radius: 8px;
    width: 100%
}

.blog-detail-wrapper .comment-wrapper .post-comment-wrapper .user-id {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.blog-detail-wrapper .comment-wrapper .post-comment-wrapper .user-id .user-name {
    color: #2d81f7;
    font-size: 22px;
    font-weight: 700
}

@media (max-width: 768px) {
    .blog-detail-wrapper .comment-wrapper .post-comment-wrapper .user-id .user-name {
        font-size: 18px
    }
}

.blog-detail-wrapper .comment-wrapper .post-comment-wrapper .user-id .comment-date {
    color: #959595;
    font-size: 14px;
    margin: 5px 0
}

.blog-detail-wrapper .post-share {
    color: #3c4852;
    display: inline-block;
    font-weight: 700;
    text-align: right
}

.blog-detail-wrapper .post-share .share-icon img {
    margin: 10px;
    width: 30px
}

.blog-detail-wrapper .explore-btn {
    margin-top: 20px;
    text-align: center
}

.blog-detail-wrapper .explore-btn a {
    display: inline-block
}

.blog-detail-wrapper .related-blogs-wrapper {
    padding-top: 40px
}

.mcq-wrapper {
    padding: 0 0 60px
}

.mcq-wrapper .mcq-title-row {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 20px;
    padding-top: 60px
}

.mcq-wrapper .mcq-title-row .section-heading {
    margin-bottom: 10px
}

.mcq-wrapper .filter-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: end
}

.mcq-wrapper .filter-wrapper select {
    background-image: url(/assets/frontend/images/icons/arrow-up.png);
    background-position: right 20px center;
    background-size: 18px;
    border-color: #28c590;
    border-radius: 8px;
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 50px 15px 30px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .mcq-wrapper .filter-wrapper select {
        font-size: 14px
    }
}

.mcq-wrapper .test-row .test-btn {
    border: 1px solid #3c4852;
    border-radius: 8px;
    color: #3c4852;
    display: block;
    font-family: Nunito, arial;
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    padding: 3rem 2rem;
    text-align: center;
    text-decoration: none
}

@media (min-width: 1024px) and (max-width:1366px) {
    .mcq-wrapper .test-row .test-btn {
        font-size: 18px
    }
}

@media (max-width: 768px) {
    .mcq-wrapper .test-row .test-btn {
        padding: 2rem
    }
}

.mcq-wrapper .test-row .test-btn:hover {
    background-color: #2d81f7;
    border-color: #fff;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .25);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .25);
    color: #fff
}

.exam-wrpper .section-heading {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 20px
}

.exam-wrpper .test-wrapper .question-wrapper {
    padding-top: 40px
}

.exam-wrpper .test-wrapper .question-wrapper .question {
    font-family: Nunito, arial;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1366px) {
    .exam-wrpper .test-wrapper .question-wrapper .question {
        font-size: 14px
    }
}

.exam-wrpper .test-wrapper .question-wrapper .question-img {
    margin-top: 10px;
    max-width: 100%
}

.exam-wrpper .test-wrapper .question-wrapper .options .answer {
    margin-top: 20px
}

.exam-wrpper .test-wrapper .question-wrapper .options input[type=radio] {
    display: none
}

.exam-wrpper .test-wrapper .question-wrapper .options .answer-item {
    background-color: #e9e9e9;
    display: block;
    font-family: Nunito, arial;
    padding: 12px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .exam-wrpper .test-wrapper .question-wrapper .options .answer-item {
        font-size: 14px
    }
}

.exam-wrpper .test-wrapper .question-wrapper .options .answer-item .option-no {
    font-weight: 700
}

.exam-wrpper .test-wrapper .question-wrapper .options .img-answer-item {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 30px
}

.exam-wrpper .test-wrapper .question-wrapper .options .ans-img-wrapper img {
    max-width: 100px;
    width: 100%
}

.exam-wrpper .test-wrapper .question-wrapper .options input[type=radio]:checked+.answer-item {
    background-color: #dfecff
}

.exam-wrpper .test-wrapper .question-wrapper .options .img-option-row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between
}

.exam-wrpper .test-wrapper .question-wrapper .options .img-option-row .answer {
    -ms-flex-preferred-size: 320px;
    flex-basis: 320px
}

.score-wrapper {
    padding: 0 0 60px
}

.score-wrapper .title-row {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 20px;
    padding-top: 60px
}

.score-wrapper .title-row .section-heading {
    border: none;
    padding: 0
}

.score-wrapper .title-row .score {
    color: #3c4852;
    font-size: 36px;
    font-weight: 700;
    margin: 10px auto
}

@media (min-width: 1024px) and (max-width:1366px) {
    .score-wrapper .title-row .score {
        font-size: 30px
    }
}

@media (max-width: 768px) {
    .score-wrapper .title-row .score {
        margin: 0
    }
}

.score-wrapper .title-row p {
    margin: auto;
    max-width: 650px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .score-wrapper .title-row p {
        font-size: 14px
    }
}

.score-wrapper .result-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: Nunito, arial;
    height: 100%;
    justify-content: center
}

@media (max-width: 768px) {
    .score-wrapper .result-wrapper {
        margin-top: 20px
    }
}

.score-wrapper .result-wrapper .result-btn {
    font-weight: 700;
    padding: 20px;
    width: 300px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .score-wrapper .result-wrapper .result-btn {
        font-size: 14px
    }
}

@media (max-width: 992px) {
    .score-wrapper .result-wrapper .result-btn {
        width: auto
    }
}

.score-wrapper .result-wrapper .right-ans {
    background-color: #e9e9e9;
    color: #3c4852
}

.score-wrapper .result-wrapper .explanation {
    background-color: #2d81f7;
    color: #fff;
    margin-top: 20px
}

.paginate {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    padding-top: 2rem
}

@media (max-width: 768px) {
    .paginate {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.paginate p {
    text-align: right
}

.paginate .p-n-btn {
    display: none
}

.paginate .rounded-lg {
    border-radius: .5rem
}

.paginate .active-page {
    background-color: #2d81f7 !important;
    border: 1px solid #2d81f7 !important;
    color: #fff;
    font-weight: 700;
    margin: 0 .1rem;
    padding: .5rem 1rem !important
}

.paginate .other-page {
    display: inline-block;
    font-weight: 700;
    margin: 0 .1rem .3rem 0;
    padding: .5rem 1rem !important
}

.select-list-dropdown {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #28c590;
    border-radius: 8px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 0 auto;
    position: relative;
    text-align: left;
    width: 200px;
    z-index: 10
}

@media (max-width: 1366px) {
    .select-list-dropdown {
        font-size: 18px
    }
}

.select-list-dropdown .default-option {
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 5px 15px 15px;
    position: relative;
    width: 100%
}

.select-list-dropdown .default-option:before {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

@media (max-width: 1366px) {
    .select-list-dropdown .default-option:before {
        font-size: 18px
    }
}

.select-list-dropdown ul {
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 8px 8px 6px -10px #b3c6ff;
    box-shadow: 8px 8px 6px -10px #b3c6ff;
    display: none;
    left: 0;
    padding: 20px;
    position: absolute;
    top: 60px;
    width: 200px;
    z-index: 10
}

.select-list-dropdown ul.active {
    display: block
}

.select-list-dropdown ul li {
    list-style: none;
    padding-bottom: 20px
}

.select-list-dropdown ul li:last-child {
    padding-bottom: 0
}

.select-list-dropdown ul li:hover {
    color: #6f768d
}

.select-list-dropdown ul li a {
    color: #3c4852;
    display: block;
    font-family: Nunito, arial;
    font-size: 16px;
    text-decoration: none
}

table td,
table tr {
    border-width: 1px
}

.sprint-workshop .sprint-workshop-container {
    padding-top: 60px
}

.sprint-workshop .sprint-workshop-container .section-heading {
    margin-bottom: 20px
}

.sprint-workshop .sprint-workshop-container .workshop-register-btn-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: self-end;
    -ms-flex-align: self-end;
    align-items: self-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-top: 20px
}

.sprint-workshop .sprint-workshop-container .workshop-register-btn-wrapper .read-more-btn {
    color: #2d81f7;
    font-family: Nunito, arial;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none
}

@media (min-width: 1024px) and (max-width:1366px) {
    .sprint-workshop .sprint-workshop-container .workshop-register-btn-wrapper .read-more-btn {
        font-size: 14px
    }
}

.sprint-workshop .sprint-workshop-container .time {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: flex-end
}

@media (max-width: 767px) {
    .sprint-workshop .sprint-workshop-container .time {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.sprint-workshop .sprint-workshop-container .time .time-date {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400;
    margin-right: 10px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .sprint-workshop .sprint-workshop-container .time .time-date {
        font-size: 14px
    }
}

@media (max-width: 767px) {
    .sprint-workshop .sprint-workshop-container .time .time-date {
        margin-bottom: 10px
    }
}

.sprint-workshop .sprint-workshop-container .time .register-close {
    color: #2d81f7;
    font-family: Nunito, arial;
    font-size: 16px;
    margin-left: 20px
}

@media (max-width: 767px) {
    .sprint-workshop .sprint-workshop-container .time .register-close {
        margin-left: 0
    }
}

.sprint-workshop .sprint-workshop-container .modal-header {
    border-bottom: 0
}

.sprint-workshop .sprint-workshop-container .paginate svg {
    width: 30px
}

.sprint-workshop .sprint-workshop-container .workshop-detail-wrapper {
    padding: 0 40px 40px
}

@-webkit-keyframes bounceRight {
    to {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    60% {
        -webkit-transform: translateX(-15px);
        transform: translateX(-15px)
    }
}

@keyframes bounceRight {
    to {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    60% {
        -webkit-transform: translateX(-15px);
        transform: translateX(-15px)
    }
}

.free-workshop-form {
    margin-top: 40px
}

.free-workshop-form .form-fields {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.free-workshop-form .form-fields label {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 400
}

.free-workshop-form .form-fields .form-input-field {
    border: 1px solid #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    margin-top: 10px;
    padding: 15px
}

@media (min-width: 1024px) and (max-width:1366px) {
    .free-workshop-form .form-fields .form-input-field {
        font-size: 14px
    }
}

.free-workshop-form .form-fields .form-input-field:focus-visible {
    outline: none
}

.free-workshop-form .agree-checkbox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.free-workshop-form .agree-checkbox input[type=checkbox] {
    border-radius: 0;
    height: 1.15em;
    margin-right: 10px;
    -webkit-transform: translateY(-.075em);
    transform: translateY(-.075em);
    width: 1.15em
}

.free-workshop-form .agree-checkbox a {
    color: #2d81f7;
    text-decoration: none
}

.free-workshop-form .form-btn {
    margin-top: 2rem
}

.free-workshop-form .form-btn .catking-btn {
    width: 100%
}

.login-modal {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px)
}

.login-modal .modal-backdrop {
    background-color: blue
}

.login-modal .modal-header {
    border-bottom: 0
}

.login-modal .modal-body .login-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
    margin-top: 40px;
    text-align: center
}

.login-modal .modal-body .login-btn .catking-btn {
    display: inline-block;
    max-width: 100%;
    width: 200px
}

.login-modal .modal-body .login-btn .login-link {
    margin-top: 20px
}

.login-modal .modal-body .content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center
}

.login-modal .modal-body .content-wrapper img {
    margin: 0 auto 20px
}

.page-blur {
    -webkit-filter: blur(8px);
    filter: blur(8px)
}

.exam-course-provide {
    padding: 60px 0 0
}

.blog-search-dropdown {
    display: inline-block;
    margin-bottom: 40px;
    margin-top: 40px;
    position: relative
}

.blog-search-dropdown button {
    background: #fff;
    border: 1px solid #28c590;
    border-radius: 8px;
    color: #3c4852;
    cursor: pointer;
    font-family: Nunito, arial;
    font-size: 18px;
    font-weight: 700;
    padding: 1em 4em 1em 2em;
    text-align: left;
    width: 22em
}

.blog-search-dropdown button:after,
.blog-search-dropdown button:before {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.blog-search-dropdown ul {
    background: #fff;
    border: 1px solid #28c590;
    -webkit-box-shadow: 0 0 3px 1px #ccc;
    box-shadow: 0 0 3px 1px #ccc;
    display: none;
    height: 350px;
    left: 0;
    line-height: 1em;
    list-style: none;
    margin: 0;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    top: 60px;
    width: 24.7em;
    z-index: 1
}

.blog-search-dropdown ul li {
    color: #3c4852;
    cursor: pointer;
    display: block;
    font-family: Nunito, arial;
    font-size: 18px
}

.blog-search-dropdown ul li:hover {
    background: #f0f0f0
}

.blog-search-dropdown ul li.searchInput {
    padding: .5em
}

.blog-search-dropdown ul li.searchInput input {
    border: 1px solid #ccc;
    padding: .5em;
    width: 100%
}

.blog-search-dropdown ul li a {
    color: #3c4852;
    display: inline-block;
    line-height: 25px;
    padding: .8em;
    width: 100%
}

.college-content-header {
    padding-bottom: 20px
}

.college-content-header .college-location-detail {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-top: 20px
}

@media (min-width: 999px) {
    .college-content-header .college-location-detail {
        width: 35%
    }
}

.college-content-header .college-location-detail .establishment {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px
}

.college-content-header .college-location-detail .establishment span {
    font-weight: 700
}

.college-content-header .college-location-detail .location {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px
}

.college-content-header .college-location-detail .location .fa-solid {
    color: #2d81f7
}

.college-content-header .college-topbar-menu {
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 11px 2px hsla(0, 1%, 63%, .349);
    box-shadow: 0 0 11px 2px hsla(0, 1%, 63%, .349);
    margin-top: 20px;
    padding: 12px;
    position: relative
}

.college-content-header .college-topbar-menu ul {
    display: block;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 45px
}

.college-content-header .college-topbar-menu ul li {
    display: inline
}

.college-content-header .college-topbar-menu ul li a {
    color: #3c4852;
    display: inline-block;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    padding: 0 10px 10px;
    text-decoration: none
}

@media (min-width: 1024px) and (max-width:1366px) {
    .college-content-header .college-topbar-menu ul li a {
        font-size: 14px
    }
}

.college-content-header .college-topbar-menu ul li.hide {
    display: none
}

.college-content-header .college-topbar-menu ul li.college-nav-active a {
    color: #2d81f7
}

@media (min-width: 1024px) and (max-width:1366px) {
    .college-content-header p {
        font-size: 14px
    }
}

.college-alumni,
.college-course {
    padding: 0 0 60px
}

.college-alumni .alumni-wrapper {
    margin-bottom: 20px
}

.college-alumni .alumni-wrapper img {
    border-radius: 10px;
    width: 100%
}

.college-alumni .alumni-wrapper .alumni-detail-wrapper {
    background-color: #2d81f7;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-top: -10px;
    padding: 10px
}

.college-alumni .alumni-wrapper .alumni-detail-wrapper .alumni-name {
    color: #fff;
    font-family: Nunito, arial;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center
}

.college-alumni .alumni-wrapper .alumni-detail-wrapper .alumni-description {
    color: #fff;
    font-family: Nunito, arial;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center
}

.college-card .college-card-wrapper {
    background: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 1.42292px 10.6719px rgba(0, 0, 0, .15);
    box-shadow: 0 1.42292px 10.6719px rgba(0, 0, 0, .15);
    padding: 15px
}

.college-card .college-card-wrapper .main-heading {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 20px;
    font-weight: 700
}

.college-card .college-card-wrapper .description {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 18px
}

.college-card .college-card-wrapper .date {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px
}

.college-card .college-card-wrapper .card-footer {
    background-color: #fff;
    border-top: 0
}

.college-review {
    padding: 0 0 60px
}

.college-review .review-wrapper {
    background-color: #fff;
    margin-bottom: 40px;
    margin-top: 40px
}

.college-review .review-wrapper .review-tab {
    padding: 20px
}

.college-review .review-wrapper .review-tab .review-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between
}

.college-review .review-wrapper .review-tab .review-header .heading {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 22px;
    font-weight: 700
}

.college-review .review-wrapper .review-tab .review-header .review-btn {
    background: #28c590;
    border-radius: 8px;
    color: #fff;
    font-family: Nunito, arial;
    font-size: 16px;
    font-weight: 700;
    padding: 10px;
    text-decoration: none
}

.college-review .review-wrapper .review-tab .comment-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 20px
}

.college-review .review-wrapper .review-tab .comment-content .user-image img {
    max-width: 100%;
    width: 60px
}

.college-review .review-wrapper .review-tab .comment-content .user-comments-section {
    margin-left: 20px
}

.college-review .review-wrapper .review-tab .comment-content .user-comments-section .user-name {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 18px;
    font-weight: 700
}

.college-review .review-wrapper .review-tab .comment-content .user-comments-section .comment-time {
    color: #8b8989;
    font-family: Nunito, arial;
    font-size: 16px
}

.college-review .review-wrapper .review-tab .comment-content .user-comments-section .user-comment {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 16px;
    margin-top: 10px
}

.college-review .review-wrapper .review-tab .comment-content .user-comments-section .rating-content {
    margin-top: 10px
}

.college-review .review-wrapper .review-tab .comment-content .user-comments-section .rating-content .fa-regular,
.college-review .review-wrapper .review-tab .comment-content .user-comments-section .rating-content .fa-solid {
    color: #e59819
}

.college-review .rate-modal .modal-content {
    background-color: #f6f6f6;
    padding: 20px
}

.college-review .rate-modal .modal-header {
    border: 0
}

.college-review .rate-modal .rate-heading {
    color: #3c4852;
    font-family: Circular Std, sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center
}

.college-review .rate-modal .rating-form {
    margin-bottom: 40px;
    margin-top: 40px
}

.college-review .rate-modal .rating-form .form-fields {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.college-review .rate-modal .rating-form .form-fields .form-textarea {
    border: 1px solid #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    margin-top: 10px;
    padding: 20px
}

.college-review .rate-modal .rating-form .form-btn {
    margin-top: 2rem
}

.college-review .rate-modal .rating-form .form-btn .catking-btn {
    width: 100%
}

@media (min-width: 1200px) {
    .college-review .rate-modal .rating-form .form-btn .catking-btn {
        width: 60%
    }
}

.college-review .rate-modal .rating-form .rating {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    justify-content: flex-end
}

.college-review .rate-modal .rating-form .rating>input {
    display: none
}

.college-review .rate-modal .rating-form .rating>label {
    color: gold;
    cursor: pointer;
    font-size: 40px;
    position: relative;
    width: 40px
}

.college-review .rate-modal .rating-form .rating>label:before {
    content: "★";
    opacity: 0;
    position: absolute
}

.college-review .rate-modal .rating-form .rating>label:hover:before,
.college-review .rate-modal .rating-form .rating>label:hover~label:before {
    opacity: 1 !important
}

.college-review .rate-modal .rating-form .rating>input:checked~label:before {
    opacity: 1
}

.college-review .rate-modal .rating-form .rating:hover>input:checked~label:before {
    opacity: .4
}

.college-gallery {
    padding: 0 0 60px
}

.college-gallery .college-gallery-wrapper {
    margin-bottom: 40px;
    margin-top: 40px
}

.college-gallery .college-gallery-wrapper img {
    width: 100%
}

.college-question {
    padding: 0 0 60px
}

.college-question .college-faq {
    margin-bottom: 40px;
    margin-top: 40px
}

.range-slider {
    margin-bottom: 20px;
    margin-top: 20px;
    position: relative;
    text-align: center;
    width: 100%
}

.range-slider .rangeValues {
    display: block;
    font-family: Nunito, arial;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: left
}

.range-slider input[type=range] {
    -webkit-appearance: none;
    border: 1px solid #fff;
    left: 0;
    position: absolute;
    width: 240px
}

@media (min-width: 991px) and (max-width:1024px) {
    .range-slider input[type=range] {
        width: 100%
    }
}

.range-slider input[type=range]::-webkit-slider-runnable-track {
    background: #ddd;
    border: none;
    border-radius: 3px;
    height: 5px;
    width: 240px
}

.range-slider input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #2d81f7;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    height: 16px;
    margin-top: -4px;
    position: relative;
    width: 16px;
    z-index: 1
}

.range-slider input[type=range]:focus {
    outline: none
}

.range-slider input[type=range]:focus::-webkit-slider-runnable-track {
    background: #ccc
}

.range-slider input[type=range]::-moz-range-track {
    background: #ddd;
    border: none;
    border-radius: 3px;
    height: 5px;
    width: 240px
}

.range-slider input[type=range]::-moz-range-thumb {
    background: #2d81f7;
    border: none;
    border-radius: 50%;
    height: 16px;
    width: 16px
}

.range-slider input[type=range]:-moz-focusring {
    outline: 1px solid #fff;
    outline-offset: -1px
}

.range-slider input[type=range]::-ms-track {
    background: transparent;
    border-color: transparent;
    border-width: 6px 0;
    color: transparent;
    height: 5px;
    width: 100%;
    z-index: -4
}

.range-slider input[type=range]::-ms-fill-lower {
    background: #777;
    border-radius: 10px
}

.range-slider input[type=range]::-ms-fill-upper {
    background: #ddd;
    border-radius: 10px
}

.range-slider input[type=range]::-ms-thumb {
    background: #2d81f7;
    border: none;
    border-radius: 50%;
    height: 16px;
    width: 16px
}

.range-slider input[type=range]:focus::-ms-fill-lower {
    background: #888
}

.range-slider input[type=range]:focus::-ms-fill-upper {
    background: #ccc
}

.college-btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    width: calc(75% - 10px)
}

@media (max-width: 767px) {
    .college-btn {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: center;
        width: 100%
    }
}

@media (min-width: 768px) and (max-width:1024px) {
    .college-btn {
        width: 100%
    }
}

.college-btn .blue-transparent-btn {
    background-color: transparent;
    border: 1px solid #2d81f7;
    color: #2d81f7
}

.college-btn .blue-transparent-btn:hover {
    background-color: #2d81f7;
    color: #fff
}

.college-btn .college-btn-list {
    margin-right: 20px;
    width: 300px
}

@media (max-width: 767px) {
    .college-btn .college-btn-list {
        margin-bottom: 20px;
        margin-right: 0;
        width: 100%
    }
}

.college-btn .catking-btn {
    padding: 18px 20px;
    text-align: center
}

.fee-range-slider-mobile {
    margin-bottom: 40px
}

.top-college .college-filter {
    margin-top: 40px
}

.top-college .college-filter .filter-heading {
    color: #3c4852;
    font-family: Nunito, arial;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px
}

@media (min-width: 576px) {
    .college-filter-modal .modal-dialog {
        margin: 1.75rem auto 0 19rem
    }
}

.college-filter-modal .modal-dialog .modal-content {
    -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, .1);
    box-shadow: 0 1px 8px rgba(0, 0, 0, .1)
}

.college-filter-modal .modal-dialog .modal-content ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 200px;
    justify-content: space-between;
    list-style: none;
    margin-bottom: 0;
    margin-top: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    white-space: nowrap
}

.college-filter-modal .modal-dialog .modal-content ul li {
    margin: 0 10px 8px 0;
    padding-left: 10px
}

.college-filter-modal .modal-dialog .modal-content ul li .form-group {
    display: block;
    margin-bottom: 10px
}

.college-filter-modal .modal-dialog .modal-content ul li .form-group input {
    cursor: pointer;
    display: none;
    height: auto;
    margin-bottom: 0;
    padding: 0;
    width: auto
}

.college-filter-modal .modal-dialog .modal-content ul li .form-group label {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #3c4852;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: Nunito, arial;
    font-size: 16px;
    position: relative
}

.college-filter-modal .modal-dialog .modal-content ul li .form-group label:before {
    background-color: transparent;
    border: 2px solid #9e9e9e;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05), inset 0 -15px 10px -12px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05), inset 0 -15px 10px -12px rgba(0, 0, 0, .05);
    content: "";
    cursor: pointer;
    display: inline-block;
    margin-right: 20px;
    padding: 7px;
    position: relative;
    vertical-align: middle
}

.college-filter-modal .modal-dialog .modal-content ul li .form-group input:checked+label:after {
    border: solid #0079bf;
    border-width: 0 2px 2px 0;
    content: "";
    display: block;
    height: 11px;
    left: 6px;
    position: absolute;
    top: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 6px
}

.catking-table {
    border: #28c590
}

.catking-table tr {
    background-color: #e8f4fa
}

.shorcode-form {
    background-color: #fff;
    border-radius: 8px;
    font-family: Nunito, arial;
    padding: 40px
}

.shorcode-form .form-control {
    border: 1px solid #fff;
    border-radius: 8px;
    -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    margin-bottom: 30px;
    margin-top: 10px;
    padding: 15px
}

.shorcode-form .form-label {
    margin-bottom: 0
}

.shorcode-form .blue-btn {
    margin: auto;
    width: 300px
}

.error-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    min-height: 50vh
}

.error-wrapper .error-code {
    color: #2d81f7;
    font-size: 10vw;
    font-weight: 700;
    line-height: 1.2
}

.error-wrapper p {
    font-size: 20px;
    font-weight: 600
}

.error-wrapper a:hover {
    font-weight: 600
}

.required:after {
    color: red;
    content: "*"
}

.onesignal-bell-launcher-md {
    width: 32px !important
}

.onesignal-bell-launcher-md .onesignal-bell-launcher-button {
    height: 32px !important;
    width: 32px !important
}

#onesignal-bell-container.onesignal-reset .onesignal-bell-launcher.onesignal-bell-launcher-theme-default .onesignal-bell-launcher-button svg .background {
    fill: #fff !important
}

#onesignal-bell-container.onesignal-reset .onesignal-bell-launcher.onesignal-bell-launcher-theme-default .onesignal-bell-launcher-button svg .foreground {
    fill: #e54b4d !important
}

#onesignal-bell-container.onesignal-reset .onesignal-bell-launcher.onesignal-bell-launcher-theme-default .onesignal-bell-launcher-button svg .stroke {
    stroke: #e54b4d !important
}

.text-editor-component-content {
    display: contents;
    width: 100%
}

[data-visibility=hide] {
    display: none !important
}

.swal2-styled.swal2-cancel {
    background: initial;
    background-color: red;
    border-radius: 100%;
    color: #fff;
    font-size: 20px;
    padding: 1px 10px;
    position: absolute;
    right: -20px;
    top: -20px
}

.swal2-actions {
    margin-top: 0
}

.swal2-content {
    padding: 0
}

label.input-error {
    color: #ea1e62 !important
}

input.otp-input {
    color: #716f6f;
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 12px;
    text-align: center
}

div>div:last-child>input.otp-input {
    margin-right: 0
}

form.auth-form {
    margin: auto;
    max-width: 316px
}

.login-progressbar li.active:before {
    background: #2d81f7;
    color: #fff
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-category-menu {
    padding-right: 300px;
    width: 600px
}

.desktop-menu-dropdown .dropdown-inner-wrapper .dropdown-course-menu {
    left: 50%
}

.footer-course-price .current-price {
    color: #3c4852 !important;
    font-size: 16px !important
}

img {
    max-width: 100%
}

.main-home-div {
    position: unset
}


@font-face {
    font-family: 'SF Pro Display';
    src: url('fonts/SFPRODISPLAYBLACKITALIC.OTF') format('OTF');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
}

body {
    font-family: 'SF Pro Display', Arial, sans-serif;
}

/* Top-Nav Design */
div.top-nav {
    margin: auto;
    width: 80%;
}

header {
    background-color: #0C82FE;
}

div.items {
    display: flex;
    justify-content: end;
    align-items: center;
    color: white;
    padding: 20px;
}


p.third i {
    font-size: 25px;
}

div.line {
    height: 50px;
    border: 1px solid white;
}

p.first,
p.second,
p.third i,
div.line {
    margin-left: 20px;
}

/* Navbar Design */
nav.navbar {
    background-color: #f6f6f6;
    box-shadow: 0px 0px 8px black;
}

div.container-fluid {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

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

div.navbar-nav a {
    text-decoration: none;
    margin: 5px 20px;
    color: #303030;
    font-weight: bold;
}

div.navbar-nav a.nav-link.btn {
    border: 1px solid #303030;
    padding: 15px;
    border-radius: 7px;
}

a.logo img {
    height: 70px;
}

main.container {
    margin: auto;
    width: 80%;
}

/* div.row{
    transform: translate(0%,10%);
} */
div.form-group {
    margin: auto;
    width: 25%;
}

.bell-it-logo {
    font-size: 60px;
    font-weight: bold;
    color: #090A0A;
}

.bell-it-logo span {
    color: #0C82FE;
}

div.heading img.icon {
    margin-left: 10px;
}

div.heading {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(23, 138, 246);
    margin-bottom: 20px;
}

div.form-group p {
    font-size: 22px;
    /* margin-top: 30px; */
    color: #303030;
    font-weight: bold;
}

span.welcometext {
    font-size: 28px;
    font-weight: bold;
    color: #303030;
}

div.form {
    margin: auto;
    width: 25%;
    margin-top: 20px;
}

input {
    font-size: 15px;
    width: 100%;
    height: 45px;
    padding: 10px;
    margin-bottom: 00px;
    border-radius: 10px;
    outline: none;
    border: 1px solid rgb(195, 195, 195);
}

.login input[type="submit"] {
    width: 100%;
    /* background-color: rgb(41, 90, 212); */
    background-color: #0C82FE;
    border: none;
    color: white;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
}

label {
    font-size: 14px;
    font-weight: bold;
    color: #808080;
}

.form-label-forgot {
    font-size: 14px;
    font-weight: bold;
    color: #808080;
}

label a {
    text-decoration: none;
    color: #0C82FE;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}


/* Register page design */

.registerform .form-item {
    margin-bottom: 20px;
}

div.registerheading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

div.registerheading img.icon {
    margin-left: 10px;
}

div.registerform {
    margin: auto;
    width: 25%;
    margin-top: 20px;
}

input.input {
    width: 100%;
    height: 45px;
    padding: 10px;
    margin-bottom: 0px;
    border-radius: 10px;
    outline: none;
    border: 1px solid rgb(195, 195, 195);
}

.form-item-email {
    margin-bottom: 20px;
}

.form-item {
    position: relative;
}

input[type="submit"].input {
    width: 100%;
    background-color: #0C82FE;
    border: none;
    color: white;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 10px;
    border-radius: 10px;
}

span.oneword {
    color: #0C82FE;
}

div.logo img {
    height: 20px;
    width: 40px;
}

div.form-group p.paragraph {
    font-size: 28px;
}

/* Form footer section */

div.footersection {
    background-color: #DDEEFB;
    padding: 25px;
    color: #0C82FE;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
}

div.footersection p {
    font-size: 14px;
    font-weight: 500;
}

div.footersection img.footerimg {
    width: 50%;
}


/* Color Code 
    background: #0C82FE;
background: #303030;
background: #0C82FE;
background: #DDEEFB;
*/

/* Calender */

.calender-button {
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.calender-btn {
    padding: 8px 20px;
    background: #F2F4F9;
    border: none;
    color: #7A8AAF;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: inline-block;
}

.calender-btn:hover,
.calender-btn.active {
    background: #0C82FE;
    color: #fff;
}

.calender-btn-1 {
    height: 40px;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    background: #E5F9F2;
    color: #8BC9B4;
    /* cursor: pointer; */
    margin-right: 10px;
}

.calender-btn-1:hover {
    background: #28C590;
    color: #fff;
}

.calendermonth {
    margin-top: 0;
}

.calender-month-button {
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-top: 15px;
}

.month-button {
    height: 40px;
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    background-color: #F2F4F9;
    color: #7A8AAF;
    margin-right: 10px;
}

.month-button:hover,
.month-button.active {
    background: #0C82FE;
    color: #fff;
}

/* .calendar-header .prevMonth {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.calendar-header{
    height: 44px;
    padding: 0 15px;
    margin-top: 10px;
    background: #F2F4F9;
    border-radius: 6px;
}

.calendar-header .nextMonth {
    background-color: transparent;
    border: none;
    cursor: pointer;
} */

.mbsc-page {
    min-height: auto !important;
}

.calendermonth .mbsc-ios.mbsc-page {
    margin-top: 10px;
    background: transparent;
}

.mbsc-ios.mbsc-calendar-width-md .mbsc-calendar-day-labels .mbsc-calendar-day-inner {
    height: 96px;
}

.calendar-year-button {
    /* width: 100%; */
    height: 41px;
    padding: 0 8px;
    background: #DDF9F6;
    text-align: center;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prevbutton {
    float: left;
    background: none;
    border: none;
}

.nextbutton {
    float: right;
    background: none;
    border: none;
}

.calendar-year {
    font-size: 24px;
    color: #0C82FE;
    font-weight: 600;
}

.calendar-plan-button {
    margin-top: 10px;
    height: 41px;
    background: #F2F4F9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-plan-button img {
    height: 20px;
    width: auto;
    margin-right: 5px;
}

.calendar-monthly-plan {
    color: #6A8B86;
    font-size: 20px;
    font-weight: 600;
}

.calender-last-day,
.calender-exam-day,
.calender-college-deadline,
.calender-response-sheet-day,
.application-opening-date {
    margin-top: 14px;
    border-radius: 6px;
    border: 1px solid #E5E5E5;
    padding: 16px;
}

.calendar-last-date-apply {
    color: #000000;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
}

.calendar-last-date-apply img {
    margin-right: 10px;
}

.calender-last-month {
    color: #666666;
    font-size: 14px;
}

.calender-last-month span {
    font-weight: 700;
}

.calendar-last-month-icon,
.remove_my_view_index {
    background: none;
    border: none;
    display: flex;
    align-items: center !important;
    width: 20px;
}

.calendar-add-to-my-btn {
    width: 100%;
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    background-color: #F2F4F9;
    color: #7A8AAF;
    margin-top: 10px;
}

.calendar-add-to-my-btn:hover {
    background: #0C82FE;
    color: #fff;
}

.calender-footersection {
    font-size: 10px;
    background-color: #DDEEFB;
    padding: 10px;
    color: #0C82FE;
    border-radius: 10px;
    margin-top: 40px;
}

.calender-footersection p {
    margin-bottom: 15px;
    line-height: 20px;
}

.calender-footersection .row .col-4 {
    padding: 0;
}

/* Collage */

.collage-list {
    margin-top: 14px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #E5E5E5;
    padding: 16px;
}

.clg-list {
    color: #303030;
    font-size: 24px;
    font-weight: 600;
}

.clg-list-button {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    color: #7A8AAF;
    border: none;
    border-radius: 6px;
    background: #F2F4F9;
}

.clg-list-btn {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    color: #000000;
    border: none;
    border-radius: 6px;
    background: #F2F4F9;
}

input[type=checkbox] {
    height: 15px;
    width: auto;
    margin-right: 10px;
}

.checkbox-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
}

.checkbox-button {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    /* width: auto; */
    height: 40px;
    /* border: 1px solid #ccc; */
    font-size: 14px;
    color: #7A8AAF;
    border-radius: 5px;
    background: #F2F4F9;
    cursor: pointer;
    padding: 10px 20px;
    user-select: none;
    transition: background-color 0.3s ease;
}

.list-of-clg-title {
    padding-right: 0 !important;
}

.list-of-clg-main-btn {
    padding: 0 !important;
}

.list-of-clg-button {
    height: 40px;
    padding: 8px 20px;
    background: F2F4F9;
    border: none;
    color: #7A8AAF;
    border-radius: 6px
}

.list-of-clg-button:hover {
    background: #0C82FE;
    color: #fff;
}

.list-of-clg-btn {
    height: 40px;
    padding: 8px 20px;
    background: F2F4F9;
    border: none;
    color: #7A8AAF;
    border-radius: 6px
}

.list-of-clg-btn:hover {
    background: #0C82FE;
    color: #fff;
}

.collage-table {
    margin-top: 10px;
    margin-bottom: 0 !important;
}

.collage-table td,
.collage-table th {
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.table thead th {
    border-bottom: 1px solid #dee2e6 !important;
}

.collage-table tbody tr:last-child td {
    border: none;
}


.collage-table thead tr th {
    color: #303030;
    font-size: 16px;
    font-weight: 700;
}

.collage-table tbody tr td {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
}

/* My view */

.my-view-list {
    margin-top: 14px;
    border-radius: 6px;
    border: 1px solid #E5E5E5;
    padding: 16px;
}

.my-view-title {
    font-size: 24px;
    font-weight: 600;
    color: #303030;
}

.my-view-title-1 {
    font-size: 24px;
    font-weight: 600;
    color: #303030;
}

.my-view-sub-title img {
    margin-right: 5px;
}

.my-view-sub-title {
    color: #303030;
    font-size: 16px;
}

.my-view-2 {
    margin-top: 14px;
    border-radius: 6px;
    border: 1px solid #E5E5E5;
    padding: 16px;
}

.my-view-list .collage-table tbody tr td {
    height: 40px;
}

.my-view-month-btn {
    /* width: 100%; */
    height: 40px;
    padding: 8px 19px;
    /* background-color: rgb(41, 90, 212); */
    background: F2F4F9;
    border: none;
    color: #7A8AAF;
    /* cursor: pointer; */
    margin-top: 10px;
    margin-right: 5px;
    /* margin-bottom: 10px; */
    border-radius: 6px;
}

.my-view-month-btn:hover {
    background: #0C82FE;
    color: #fff;
}

.my-view-calender {
    margin-top: 10px;
    border-top: 3px solid #D9D9D9;
}

.my-view-calender .mbsc-ios.mbsc-calendar {
    margin: 10px 0;
}

.my-view-calender .mbsc-event-list-scroll {
    overflow-y: scroll;
    height: 200px;
}

.my-view-checkbox {
    border-top: 3px solid #D9D9D9;
}

.my-view-checkbox .my-view-check {
    margin-top: 10px;
}

.my-view-check-label {
    color: #000000;
    font-size: 15px;
    font-weight: 500;
}

.my-view-checkbox .calender-footersection {
    margin-top: 0 !important;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 100% !important;
    }
}

@media (max-width: 991px) {

    .form-group,
    .form,
    .registerform {
        width: 100% !important;
    }
}

@media (min-width: 320px) and (max-width: 767px) {
    .calendar-year-button {
        margin-top: 10px;
    }
}

.main-content {
    background: #fff;
}


.PillList-item {
    cursor: pointer;
    display: inline-block;
    float: left;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    margin: 0 12px 12px 0;
    text-transform: capitalize;
}

.PillList-item input[type="checkbox"] {
    display: none;
}

.PillList-item input[type="checkbox"]:checked+.PillList-label {
    background-color: #28C590;
    border: 1px solid #28C590;
    color: #fff;
    padding-right: 16px;
    padding-left: 16px;
}

.PillList-label {
    border-radius: 5px;
    color: #1c94e0;
    display: block;
    padding: 7px 28px;
    text-decoration: none;
    background: #E5F9F2;
    color: #8BC9B4;
}

.PillList-item input[type="checkbox"]:checked+.PillList-label .Icon--checkLight {
    display: inline-block;
}

.PillList-item input[type="checkbox"]:checked+.PillList-label .Icon--addLight,
.PillList-label .Icon--checkLight,
.PillList-children {
    display: none;
}

.PillList-label .Icon {
    width: 12px;
    height: 12px;
    margin: 0 0 0 12px;
}

.Icon--smallest {
    font-size: 12px;
    line-height: 12px;
}

.Icon {
    background: transparent;
    display: inline-block;
    font-style: normal;
    vertical-align: baseline;
    position: relative;
}

.checkbox_pill {
    margin: 10px 0 0 0;
    height: 40px;
}

.app_img {
    width: 175px;
}

.loign_app_img {
    width: 50%;
}

.city_state_filter {
    justify-content: end;
}

.city_state_filter .form-group:first-child {
    margin-right: 1rem;
}

@media only screen and (max-width: 575px) {
    .city_state_filter {
        justify-content: start;
    }

    .city_state_filter .form-group:first-child {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .select2-container {
        width: 100% !important;
    }

    .cst_cllfg_list {
        padding: 0;
        margin-bottom: 10px;
    }
}


.hidden {
    display: none;
}

.my-exam-home,
.my-college-home {
    border-radius: 6px;
    border: 1px solid #E5E5E5;
    margin-top: 20px;
}

.my-exam-home p,
.my-college-home p {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
    text-align: center;
    margin: 0;
    padding: 15px;
    border-bottom: 1px solid #E5E5E5;
}

.my-exam-home thead th,
.my-exam-home tbody td,
.my-college-home thead th,
.my-college-home tbody td {
    padding: 5px 10px;
    border-bottom: 1px solid #E5E5E5;
}

.exam_details .d-flex {
    margin-bottom: 50px;
    margin-top: 20px;
    gap: 50px;
}

.exam_details .exam_name {
    font-size: 30px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #303030;
    margin: 0;
}

.exam_details .exam_abt_head {

    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #303030;
}

.exam_details .exam_abt_desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #939393;
    margin-bottom: 10px;
    margin-left: 25px;
}

.single_exam_table thead {
    background: #E5F1FF;
    border: 1px solid transparent;
}

.single_exam_table thead th {
    padding: 10px;
}

.single_exam_table {
    width: 50%;
    margin-bottom: 50px;
}

.single_exam_table tbody td {
    padding: 10px;
    border: 1px solid #D9D9D9;
}

.apply_btn {
    color: #fff;
    background: #0C82FE;
    padding: 8px 15px;
    display: inline-block;
    border-radius: 12px;
    text-align: center;
}

.apply_btn:hover {
    color: #fff;
}

.home_extra {
    max-height: 250px;
    overflow: auto;
}

.home_extra table td a {
    text-decoration: underline;
}

div[data-render="college_deadline"],
div[data-render="last_day_to_apply"],
div[data-render="exam_day"],
div[data-render="response_sheet"],
div[data-render="application_opening_date"] {
    overflow-y: auto;
    max-height: 200px;
    overflow-x: hidden;
}

.calender-college-deadline i {
    color: #ffd0ba;
}

.calender-last-day i {
    color: #FFB1B1;
}

.application-opening-date i {
    color: #b1d8b1;
}

.calender-exam-day i {
    color: #E2BBFA;
}

.calender-response-sheet-day i {
    color: #b1b1ff;
}

.firstone {
    margin-bottom: 50px !important;
}

.mbsc-calendar-cell {
    position: relative;
}

.mbsc-calendar-cell::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 10px;
    background-color: #fff;
    z-index: 100;
    left: 0;
    right: 0;
    margin: 0 auto;
}