/*
Created on : July 06, 2019
Author     : Webiknows IT Solutions Pvt Ltd
Version: 1.1
*/

/*============================
 [Table of CSS]
    1. Global variable css
    2. Background Color
    3. Color and Font
    4. Headings and Typographic Classes / .title, .uppercase etc
    5. Button
    6. Margins and Paddings
    7. Position
    8. Custom Checkbox and radio
    9. Reset Css
    10. Cus Scroll
    11. Ellipsis
    12. Animation
    13. FLOATING LABEL
    14. ACCORDION
========================================*/

img {
    border-radius: 14px;
}

.imgenue {
    width: 24px;
    border-radius: 0px !important;
    margin-right: 10px;
    margin-top: -4px;
}

input {
    border-radius: 6px;
}

.blog-card:hover .content h3 a,
.blog-card .content ul li a:hover {
    color: var(--primary-clr);
}

.text-yellow {
    color: #ffc107 !important;
}

.inner-banner .inner-title h3 {
    font-size: 30px;
}

.blog-article .blog-article-title h2 {
    font-size: 20px;
}

.section-title h2 {
    font-size: 26px;
}

.blog-card .content h3 {
    font-size: 18px;
}

.contact-info h2 {
    font-size: 20px;
}

.inner-banner {
    display: flex;
    align-items: center;
    min-height: 210px;
    background-image: url(../../images/course_details_bg.jpg);
}

.page-breadcrumb {
    padding: 0px;
    margin: 0px;
    text-transform: uppercase;
    display: inline-block;
}

.page-breadcrumb>li {
    float: left;
    padding-left: 15px;
    list-style: none;
}

.page-breadcrumb>li a {
    color: var(--primary-clr);
}

.page-breadcrumb>li:after {
    content: ">";
    position: relative;
    left: 8px;
    color: var(--primary-clr);
}

.page-breadcrumb>li:last-child:after {
    content: "";
}

.z-index-2 {
    z-index: 2;
}

.overlayMain {
    overflow: hidden;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(8 59 120 / 90%);
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: .5s ease;
    z-index: 9;
    transform: translateY(110%);
    padding: 20px;
}

.overlayMain:hover .overlay {
    height: 100%;
    transform: translateY(0%);
}


/*-----------------
1. Global variable css
-----------------------*/
:root {
    --gradient-btn: -webkit-linear-gradient(0deg, #394263 0%, #6373b1 100%);
    --primary-clr: #083b78;
    --secondary-clr: #f9fafc;
    --text-clr: #333333;
    --accent-clr: #8f8d8d;
    --lightgrey-clr: #ededed;
    --ff-heading: 'Roboto', sans-serif;
    --ff-para: 'Merriweather', serif;
}


@font-face {
    font-family: 'rupeeregular';
    src: url('../Fonts/rupee-webfont.woff2') format('woff2'),
        url('../Fonts/rupee-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat';
    src: url('../fonts/montserrat/montserrat-regular-webfont.woff2') format('woff2'),
        url('../fonts/montserrat/montserrat-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'montserratbold';
    src: url('../fonts/montserrat/montserrat-semibold-webfont.woff2') format('woff2'),
        url('../fonts/montserrat/montserrat-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}



/*<span class="ruppee-f">`</span>*/
.ruppee-f {
    font-family: 'rupeeregular';
    font-weight: 600;
}

/*-----------------
2. Background Color
-----------------------*/
.bg-primary {
    background: var(--primary-clr);
}

.bg-secondary {
    background: var(--secondary-clr);
}

.bg-lightgrey {
    background: var(--lightgrey-clr);
}

.bg-white {
    background: #fff !important;
}

.bg-t {
    background: transparent !important;
}

.bg-gradiant-primary {
    background-image: linear-gradient(to right, rgb(244, 164, 34) 0%, rgb(179, 127, 44) 51%, rgb(244, 164, 34) 100%);
    background-size: 200% auto;
}

.bg-gradiant-secondery {
    background-image: linear-gradient(to right, rgb(38 95 163) 0%, rgb(5 50 104) 50%, rgb(38 95 163) 100%);
    background-size: 200% auto;
}

/*-----------------
3. Color and Fonts 
-----------------------*/
.primary-clr {
    color: var(--primary-clr);
}

.secondary-clr {
    color: var(--secondary-clr);
}

.white {
    color: #fff !important;
}

.text-clr {
    color: var(--text-clr) !important;
}

.black {
    color: #000 !important;
}

.green {
    color: #38BC68;
}

.f-headind {
    font-family: var(--ff-heading);
}

.f-para {
    font-family: var(--ff-para);
}

/*-----------------
4. Headings and Typographic Classes / .title, .uppercase etc
-----------------------*/
/* - Font size classes - */
.big {
    font-size: 3.6rem;
    line-height: 4.8;
}

.bigger {
    font-size: 4.8rem;
    line-height: 1.2;
}

.super {
    font-size: 6rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.f-12 {
    font-size: 12px;
}

.f-13 {
    font-size: 13px;
}

.f-14 {
    font-size: 14px;
}

.f-16 {
    font-size: 16px;
}

.f-18 {
    font-size: 18px;
}

.f-20 {
    font-size: 20px;
}

.f-22 {
    font-size: 22px;
}

.f-24 {
    font-size: 24px;
}

.f-26 {
    font-size: 26px;
}

.f-28 {
    font-size: 28px;
}

/* - Font weight classes - */
.bold {
    font-weight: bold;
}

.regular {
    font-weight: normal;
}

.bold-500 {
    font-weight: 500;
}

.bold-600 {
    font-weight: 600;
}

.bold-700 {
    font-weight: 700;
}

/* - Text transform classes - */
.txt-upper {
    text-transform: uppercase;
}

.txt-lower {
    text-transform: lowercase;
}

.txt-capital {
    text-transform: capitalize;
}

.l-h-1 {
    line-height: 1 !important;
}

.l-h-2 {
    line-height: 1.2;
}

.l-h-3 {
    line-height: 1.3;
}

.l-h-4 {
    line-height: 1.4;
}

.l-h-5 {
    line-height: 1.5;
}

.l-h-6 {
    line-height: 1.6;
}

.l-h-7 {
    line-height: 1.7;
}

.l-h-8 {
    line-height: 1.8;
}

.l-h-9 {
    line-height: 1.9;
}

.l-h2 {
    line-height: 2;
}

/*-----------------
5. Button  
-----------------------*/
.btn:active,
.btn:focus,
.btn:focus-within,
.btn:hover {
    outline: none !important;
}

.form-control {
    padding: 13px 19px;
}


.form-control:focus{
    box-shadow: none !important;
    border-color: rgb(244, 164, 34);
}

.cc-picker {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cus-primary-btn {
    color: #fff;
    background-image: linear-gradient(to right, rgb(244, 164, 34) 0%, rgb(179, 127, 44) 51%, rgb(244, 164, 34) 100%);
    background-size: 200% auto;
    text-align: center;
    border: none;
    border-radius: 6px;
    min-width: 100px;
    font-size: 14px;
    line-height: 24px;
    transition: all 0.5s;
}

.cus-primary-btn:hover {
    color: #fff;
    font-weight: normal !important;
    outline: none;
    background-position: right center;
}

.cus-secondary-btn {
    color: #fff;
    /*background-image: linear-gradient(to right, #4374af 51%, #083b78 0%, #4374af 51%);*/
    background-image: linear-gradient(to right, rgb(38 95 163) 0%, rgb(5 50 104) 50%, rgb(38 95 163) 100%);
    background-size: 200% auto;
    text-align: center;
    border: none;
    border-radius: 6px;
    min-width: 100px;
    font-size: 14px;
    line-height: 24px;
    transition: all 0.5s;
    display: inline-block;
    margin-bottom: 7px ;
}

.cus-secondary-btn:hover {
    color: #fff;
    font-weight: normal !important;
    outline: none;
    background-position: right center;
}

.cus-primary-btn-outline {
    color: var(--primary-clr);
    text-transform: uppercase;
    background: transparent;
    text-align: center;
    border: 2px solid var(--primary-clr);
    border-radius: 6px !important;
    min-width: 150px;
    font-size: 14px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    transition: all 0.3s;
}

.cus-primary-btn-outline:hover {
    color: #fff !important;
}

.cus-primary-btn-outline:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 6px;
    background: var(--primary-clr);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.cus-primary-btn-outline:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}



.cus-primary-btn-outline2 {
    color: #b8822c;
    text-transform: uppercase;
    background: transparent;
    text-align: center;
    border: 2px solid #b8822c;
    min-width: 150px;
    font-size: 14px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    transition: all 0.3s;
}

.cus-primary-btn-outline2.v-btn {
    color: #fff;
   
    background: #b8822c;
    border: 2px solid #b8822c;
   
    width: 90% !important;

    font-size: 16px;
}


.cus-primary-btn-outline2:hover {
    color: #fff !important;
}

.cus-primary-btn-outline2:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: #b8822c;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.cus-primary-btn-outline2:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/*-----------------
6. Margins and Paddings
-----------------------*/
.m-0 {
    margin: 0 !important
}

.mt-0,
.my-0 {
    margin-top: 0 !important
}

.mr-0,
.mx-0 {
    margin-right: 0 !important
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important
}

.ml-0,
.mx-0 {
    margin-left: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.mt-1,
.my-1 {
    margin-top: .25rem !important
}

.mr-1,
.mx-1 {
    margin-right: .25rem !important
}

.mb-1,
.my-1 {
    margin-bottom: .25rem !important
}

.ml-1,
.mx-1 {
    margin-left: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.mt-2,
.my-2 {
    margin-top: .5rem !important
}

.mr-2,
.mx-2 {
    margin-right: .5rem !important
}

.mb-2,
.my-2 {
    margin-bottom: .5rem !important
}

.ml-2,
.mx-2 {
    margin-left: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.mt-3,
.my-3 {
    margin-top: 1rem !important
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.mt-5,
.my-5 {
    margin-top: 3rem !important
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important
}

.p-0 {
    padding: 0 !important
}

.pt-0,
.py-0 {
    padding-top: 0 !important
}

.pr-0,
.px-0 {
    padding-right: 0 !important
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important
}

.pl-0,
.px-0 {
    padding-left: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.pt-1,
.py-1 {
    padding-top: .25rem !important
}

.pr-1,
.px-1 {
    padding-right: .25rem !important
}

.pb-1,
.py-1 {
    padding-bottom: .25rem !important
}

.pl-1,
.px-1 {
    padding-left: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.pt-2,
.py-2 {
    padding-top: .5rem !important
}

.pr-2,
.px-2 {
    padding-right: .5rem !important
}

.pb-2,
.py-2 {
    padding-bottom: .5rem !important
}

.pl-2,
.px-2 {
    padding-left: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.pt-3,
.py-3 {
    padding-top: 1rem !important
}

.pr-3,
.px-3 {
    padding-right: 1rem !important
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important
}

.pl-3,
.px-3 {
    padding-left: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.pt-5,
.py-5 {
    padding-top: 3rem !important
}

.pr-5,
.px-5 {
    padding-right: 3rem !important
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important
}

.pl-5,
.px-5 {
    padding-left: 3rem !important
}

.m-n1 {
    margin: -.25rem !important
}

.mt-n1,
.my-n1 {
    margin-top: -.25rem !important
}

.mr-n1,
.mx-n1 {
    margin-right: -.25rem !important
}

.mb-n1,
.my-n1 {
    margin-bottom: -.25rem !important
}

.ml-n1,
.mx-n1 {
    margin-left: -.25rem !important
}

.m-n2 {
    margin: -.5rem !important
}

.mt-n2,
.my-n2 {
    margin-top: -.5rem !important
}

.mr-n2,
.mx-n2 {
    margin-right: -.5rem !important
}

.mb-n2,
.my-n2 {
    margin-bottom: -.5rem !important
}

.ml-n2,
.mx-n2 {
    margin-left: -.5rem !important
}

.m-n3 {
    margin: -1rem !important
}

.mt-n3,
.my-n3 {
    margin-top: -1rem !important
}

.mr-n3,
.mx-n3 {
    margin-right: -1rem !important
}

.mb-n3,
.my-n3 {
    margin-bottom: -1rem !important
}

.ml-n3,
.mx-n3 {
    margin-left: -1rem !important
}

.m-n4 {
    margin: -1.5rem !important
}

.mt-n4,
.my-n4 {
    margin-top: -1.5rem !important
}

.mr-n4,
.mx-n4 {
    margin-right: -1.5rem !important
}

.mb-n4,
.my-n4 {
    margin-bottom: -1.5rem !important
}

.ml-n4,
.mx-n4 {
    margin-left: -1.5rem !important
}

.m-n5 {
    margin: -3rem !important
}

.mt-n5,
.my-n5 {
    margin-top: -3rem !important
}

.mr-n5,
.mx-n5 {
    margin-right: -3rem !important
}

.mb-n5,
.my-n5 {
    margin-bottom: -3rem !important
}

.ml-n5,
.mx-n5 {
    margin-left: -3rem !important
}

.m-auto {
    margin: auto !important
}

.mt-auto,
.my-auto {
    margin-top: auto !important
}

.mr-auto,
.mx-auto {
    margin-right: auto !important
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important
}

.ml-auto,
.mx-auto {
    margin-left: auto !important
}

@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 !important
    }

    .course-side-details{
        height: 100%;
    }

    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important
    }

    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important
    }

    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important
    }

    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important
    }

    .m-sm-1 {
        margin: .25rem !important
    }

    .mt-sm-1,
    .my-sm-1 {
        margin-top: .25rem !important
    }

    .mr-sm-1,
    .mx-sm-1 {
        margin-right: .25rem !important
    }

    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: .25rem !important
    }

    .ml-sm-1,
    .mx-sm-1 {
        margin-left: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem !important
    }

    .mt-sm-2,
    .my-sm-2 {
        margin-top: .5rem !important
    }

    .mr-sm-2,
    .mx-sm-2 {
        margin-right: .5rem !important
    }

    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: .5rem !important
    }

    .ml-sm-2,
    .mx-sm-2 {
        margin-left: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important
    }

    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important
    }

    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important
    }

    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important
    }

    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important
    }

    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important
    }

    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important
    }

    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important
    }

    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important
    }

    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important
    }

    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important
    }

    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important
    }

    .p-sm-1 {
        padding: .25rem !important
    }

    .pt-sm-1,
    .py-sm-1 {
        padding-top: .25rem !important
    }

    .pr-sm-1,
    .px-sm-1 {
        padding-right: .25rem !important
    }

    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: .25rem !important
    }

    .pl-sm-1,
    .px-sm-1 {
        padding-left: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem !important
    }

    .pt-sm-2,
    .py-sm-2 {
        padding-top: .5rem !important
    }

    .pr-sm-2,
    .px-sm-2 {
        padding-right: .5rem !important
    }

    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: .5rem !important
    }

    .pl-sm-2,
    .px-sm-2 {
        padding-left: .5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important
    }

    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important
    }

    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important
    }

    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important
    }

    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important
    }

    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important
    }

    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important
    }

    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important
    }

    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important
    }

    .m-sm-n1 {
        margin: -.25rem !important
    }

    .mt-sm-n1,
    .my-sm-n1 {
        margin-top: -.25rem !important
    }

    .mr-sm-n1,
    .mx-sm-n1 {
        margin-right: -.25rem !important
    }

    .mb-sm-n1,
    .my-sm-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-sm-n1,
    .mx-sm-n1 {
        margin-left: -.25rem !important
    }

    .m-sm-n2 {
        margin: -.5rem !important
    }

    .mt-sm-n2,
    .my-sm-n2 {
        margin-top: -.5rem !important
    }

    .mr-sm-n2,
    .mx-sm-n2 {
        margin-right: -.5rem !important
    }

    .mb-sm-n2,
    .my-sm-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-sm-n2,
    .mx-sm-n2 {
        margin-left: -.5rem !important
    }

    .m-sm-n3 {
        margin: -1rem !important
    }

    .mt-sm-n3,
    .my-sm-n3 {
        margin-top: -1rem !important
    }

    .mr-sm-n3,
    .mx-sm-n3 {
        margin-right: -1rem !important
    }

    .mb-sm-n3,
    .my-sm-n3 {
        margin-bottom: -1rem !important
    }

    .ml-sm-n3,
    .mx-sm-n3 {
        margin-left: -1rem !important
    }

    .m-sm-n4 {
        margin: -1.5rem !important
    }

    .mt-sm-n4,
    .my-sm-n4 {
        margin-top: -1.5rem !important
    }

    .mr-sm-n4,
    .mx-sm-n4 {
        margin-right: -1.5rem !important
    }

    .mb-sm-n4,
    .my-sm-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-sm-n4,
    .mx-sm-n4 {
        margin-left: -1.5rem !important
    }

    .m-sm-n5 {
        margin: -3rem !important
    }

    .mt-sm-n5,
    .my-sm-n5 {
        margin-top: -3rem !important
    }

    .mr-sm-n5,
    .mx-sm-n5 {
        margin-right: -3rem !important
    }

    .mb-sm-n5,
    .my-sm-n5 {
        margin-bottom: -3rem !important
    }

    .ml-sm-n5,
    .mx-sm-n5 {
        margin-left: -3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important
    }

    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important
    }

    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important
    }

    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important
    }
}

@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 !important
    }

    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important
    }

    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important
    }

    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important
    }

    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important
    }

    .m-md-1 {
        margin: .25rem !important
    }

    .mt-md-1,
    .my-md-1 {
        margin-top: .25rem !important
    }

    .mr-md-1,
    .mx-md-1 {
        margin-right: .25rem !important
    }

    .mb-md-1,
    .my-md-1 {
        margin-bottom: .25rem !important
    }

    .ml-md-1,
    .mx-md-1 {
        margin-left: .25rem !important
    }

    .m-md-2 {
        margin: .5rem !important
    }

    .mt-md-2,
    .my-md-2 {
        margin-top: .5rem !important
    }

    .mr-md-2,
    .mx-md-2 {
        margin-right: .5rem !important
    }

    .mb-md-2,
    .my-md-2 {
        margin-bottom: .5rem !important
    }

    .ml-md-2,
    .mx-md-2 {
        margin-left: .5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important
    }

    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important
    }

    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important
    }

    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important
    }

    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important
    }

    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important
    }

    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important
    }

    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important
    }

    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important
    }

    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important
    }

    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important
    }

    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important
    }

    .p-md-1 {
        padding: .25rem !important
    }

    .pt-md-1,
    .py-md-1 {
        padding-top: .25rem !important
    }

    .pr-md-1,
    .px-md-1 {
        padding-right: .25rem !important
    }

    .pb-md-1,
    .py-md-1 {
        padding-bottom: .25rem !important
    }

    .pl-md-1,
    .px-md-1 {
        padding-left: .25rem !important
    }

    .p-md-2 {
        padding: .5rem !important
    }

    .pt-md-2,
    .py-md-2 {
        padding-top: .5rem !important
    }

    .pr-md-2,
    .px-md-2 {
        padding-right: .5rem !important
    }

    .pb-md-2,
    .py-md-2 {
        padding-bottom: .5rem !important
    }

    .pl-md-2,
    .px-md-2 {
        padding-left: .5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important
    }

    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important
    }

    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important
    }

    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important
    }

    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important
    }

    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important
    }

    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important
    }

    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important
    }

    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important
    }

    .m-md-n1 {
        margin: -.25rem !important
    }

    .mt-md-n1,
    .my-md-n1 {
        margin-top: -.25rem !important
    }

    .mr-md-n1,
    .mx-md-n1 {
        margin-right: -.25rem !important
    }

    .mb-md-n1,
    .my-md-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-md-n1,
    .mx-md-n1 {
        margin-left: -.25rem !important
    }

    .m-md-n2 {
        margin: -.5rem !important
    }

    .mt-md-n2,
    .my-md-n2 {
        margin-top: -.5rem !important
    }

    .mr-md-n2,
    .mx-md-n2 {
        margin-right: -.5rem !important
    }

    .mb-md-n2,
    .my-md-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-md-n2,
    .mx-md-n2 {
        margin-left: -.5rem !important
    }

    .m-md-n3 {
        margin: -1rem !important
    }

    .mt-md-n3,
    .my-md-n3 {
        margin-top: -1rem !important
    }

    .mr-md-n3,
    .mx-md-n3 {
        margin-right: -1rem !important
    }

    .mb-md-n3,
    .my-md-n3 {
        margin-bottom: -1rem !important
    }

    .ml-md-n3,
    .mx-md-n3 {
        margin-left: -1rem !important
    }

    .m-md-n4 {
        margin: -1.5rem !important
    }

    .mt-md-n4,
    .my-md-n4 {
        margin-top: -1.5rem !important
    }

    .mr-md-n4,
    .mx-md-n4 {
        margin-right: -1.5rem !important
    }

    .mb-md-n4,
    .my-md-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-md-n4,
    .mx-md-n4 {
        margin-left: -1.5rem !important
    }

    .m-md-n5 {
        margin: -3rem !important
    }

    .mt-md-n5,
    .my-md-n5 {
        margin-top: -3rem !important
    }

    .mr-md-n5,
    .mx-md-n5 {
        margin-right: -3rem !important
    }

    .mb-md-n5,
    .my-md-n5 {
        margin-bottom: -3rem !important
    }

    .ml-md-n5,
    .mx-md-n5 {
        margin-left: -3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important
    }

    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important
    }

    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important
    }

    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important
    }
}

@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 !important
    }

    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important
    }

    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important
    }

    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important
    }

    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important
    }

    .m-lg-1 {
        margin: .25rem !important
    }

    .mt-lg-1,
    .my-lg-1 {
        margin-top: .25rem !important
    }

    .mr-lg-1,
    .mx-lg-1 {
        margin-right: .25rem !important
    }

    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: .25rem !important
    }

    .ml-lg-1,
    .mx-lg-1 {
        margin-left: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem !important
    }

    .mt-lg-2,
    .my-lg-2 {
        margin-top: .5rem !important
    }

    .mr-lg-2,
    .mx-lg-2 {
        margin-right: .5rem !important
    }

    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: .5rem !important
    }

    .ml-lg-2,
    .mx-lg-2 {
        margin-left: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important
    }

    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important
    }

    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important
    }

    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important
    }

    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important
    }

    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important
    }

    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important
    }

    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important
    }

    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important
    }

    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important
    }

    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important
    }

    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important
    }

    .p-lg-1 {
        padding: .25rem !important
    }

    .pt-lg-1,
    .py-lg-1 {
        padding-top: .25rem !important
    }

    .pr-lg-1,
    .px-lg-1 {
        padding-right: .25rem !important
    }

    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: .25rem !important
    }

    .pl-lg-1,
    .px-lg-1 {
        padding-left: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem !important
    }

    .pt-lg-2,
    .py-lg-2 {
        padding-top: .5rem !important
    }

    .pr-lg-2,
    .px-lg-2 {
        padding-right: .5rem !important
    }

    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: .5rem !important
    }

    .pl-lg-2,
    .px-lg-2 {
        padding-left: .5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important
    }

    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important
    }

    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important
    }

    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important
    }

    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important
    }

    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important
    }

    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important
    }

    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important
    }

    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important
    }

    .m-lg-n1 {
        margin: -.25rem !important
    }

    .mt-lg-n1,
    .my-lg-n1 {
        margin-top: -.25rem !important
    }

    .mr-lg-n1,
    .mx-lg-n1 {
        margin-right: -.25rem !important
    }

    .mb-lg-n1,
    .my-lg-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-lg-n1,
    .mx-lg-n1 {
        margin-left: -.25rem !important
    }

    .m-lg-n2 {
        margin: -.5rem !important
    }

    .mt-lg-n2,
    .my-lg-n2 {
        margin-top: -.5rem !important
    }

    .mr-lg-n2,
    .mx-lg-n2 {
        margin-right: -.5rem !important
    }

    .mb-lg-n2,
    .my-lg-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-lg-n2,
    .mx-lg-n2 {
        margin-left: -.5rem !important
    }

    .m-lg-n3 {
        margin: -1rem !important
    }

    .mt-lg-n3,
    .my-lg-n3 {
        margin-top: -1rem !important
    }

    .mr-lg-n3,
    .mx-lg-n3 {
        margin-right: -1rem !important
    }

    .mb-lg-n3,
    .my-lg-n3 {
        margin-bottom: -1rem !important
    }

    .ml-lg-n3,
    .mx-lg-n3 {
        margin-left: -1rem !important
    }

    .m-lg-n4 {
        margin: -1.5rem !important
    }

    .mt-lg-n4,
    .my-lg-n4 {
        margin-top: -1.5rem !important
    }

    .mr-lg-n4,
    .mx-lg-n4 {
        margin-right: -1.5rem !important
    }

    .mb-lg-n4,
    .my-lg-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-lg-n4,
    .mx-lg-n4 {
        margin-left: -1.5rem !important
    }

    .m-lg-n5 {
        margin: -3rem !important
    }

    .mt-lg-n5,
    .my-lg-n5 {
        margin-top: -3rem !important
    }

    .mr-lg-n5,
    .mx-lg-n5 {
        margin-right: -3rem !important
    }

    .mb-lg-n5,
    .my-lg-n5 {
        margin-bottom: -3rem !important
    }

    .ml-lg-n5,
    .mx-lg-n5 {
        margin-left: -3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important
    }

    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important
    }

    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important
    }

    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important
    }

    /*background*/
    .lg-bg-primary {
        background: var(--primary-clr) !important;
    }

    .lg-bg-secondary {
        background: var(--secondary-clr) !important;
    }

    .lg-bg-white {
        background: #fff !important;
    }

    .lg-bg-greylight {
        background: #f3f3f3 !important;
    }

    .lg-bg-t {
        background: transparent !important;
    }


}

@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0 !important
    }

    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important
    }

    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important
    }

    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important
    }

    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important
    }

    .m-xl-1 {
        margin: .25rem !important
    }

    .mt-xl-1,
    .my-xl-1 {
        margin-top: .25rem !important
    }

    .mr-xl-1,
    .mx-xl-1 {
        margin-right: .25rem !important
    }

    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: .25rem !important
    }

    .ml-xl-1,
    .mx-xl-1 {
        margin-left: .25rem !important
    }

    .m-xl-2 {
        margin: .5rem !important
    }

    .mt-xl-2,
    .my-xl-2 {
        margin-top: .5rem !important
    }

    .mr-xl-2,
    .mx-xl-2 {
        margin-right: .5rem !important
    }

    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: .5rem !important
    }

    .ml-xl-2,
    .mx-xl-2 {
        margin-left: .5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important
    }

    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important
    }

    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important
    }

    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important
    }

    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important
    }

    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important
    }

    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important
    }

    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important
    }

    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important
    }

    .p-xl-0 {
        padding: 0 !important
    }

    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important
    }

    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important
    }

    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important
    }

    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important
    }

    .p-xl-1 {
        padding: .25rem !important
    }

    .pt-xl-1,
    .py-xl-1 {
        padding-top: .25rem !important
    }

    .pr-xl-1,
    .px-xl-1 {
        padding-right: .25rem !important
    }

    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: .25rem !important
    }

    .pl-xl-1,
    .px-xl-1 {
        padding-left: .25rem !important
    }

    .p-xl-2 {
        padding: .5rem !important
    }

    .pt-xl-2,
    .py-xl-2 {
        padding-top: .5rem !important
    }

    .pr-xl-2,
    .px-xl-2 {
        padding-right: .5rem !important
    }

    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: .5rem !important
    }

    .pl-xl-2,
    .px-xl-2 {
        padding-left: .5rem !important
    }

    .p-xl-3 {
        padding: 1rem !important
    }

    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important
    }

    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important
    }

    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important
    }

    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important
    }

    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important
    }

    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important
    }

    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important
    }

    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important
    }

    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important
    }

    .m-xl-n1 {
        margin: -.25rem !important
    }

    .mt-xl-n1,
    .my-xl-n1 {
        margin-top: -.25rem !important
    }

    .mr-xl-n1,
    .mx-xl-n1 {
        margin-right: -.25rem !important
    }

    .mb-xl-n1,
    .my-xl-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-xl-n1,
    .mx-xl-n1 {
        margin-left: -.25rem !important
    }

    .m-xl-n2 {
        margin: -.5rem !important
    }

    .mt-xl-n2,
    .my-xl-n2 {
        margin-top: -.5rem !important
    }

    .mr-xl-n2,
    .mx-xl-n2 {
        margin-right: -.5rem !important
    }

    .mb-xl-n2,
    .my-xl-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-xl-n2,
    .mx-xl-n2 {
        margin-left: -.5rem !important
    }

    .m-xl-n3 {
        margin: -1rem !important
    }

    .mt-xl-n3,
    .my-xl-n3 {
        margin-top: -1rem !important
    }

    .mr-xl-n3,
    .mx-xl-n3 {
        margin-right: -1rem !important
    }

    .mb-xl-n3,
    .my-xl-n3 {
        margin-bottom: -1rem !important
    }

    .ml-xl-n3,
    .mx-xl-n3 {
        margin-left: -1rem !important
    }

    .m-xl-n4 {
        margin: -1.5rem !important
    }

    .mt-xl-n4,
    .my-xl-n4 {
        margin-top: -1.5rem !important
    }

    .mr-xl-n4,
    .mx-xl-n4 {
        margin-right: -1.5rem !important
    }

    .mb-xl-n4,
    .my-xl-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-xl-n4,
    .mx-xl-n4 {
        margin-left: -1.5rem !important
    }

    .m-xl-n5 {
        margin: -3rem !important
    }

    .mt-xl-n5,
    .my-xl-n5 {
        margin-top: -3rem !important
    }

    .mr-xl-n5,
    .mx-xl-n5 {
        margin-right: -3rem !important
    }

    .mb-xl-n5,
    .my-xl-n5 {
        margin-bottom: -3rem !important
    }

    .ml-xl-n5,
    .mx-xl-n5 {
        margin-left: -3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important
    }

    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important
    }

    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important
    }

    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important
    }
}







/*-----------------
7. Position
-----------------------*/
.top-left {
    position: absolute;
    top: 8px;
    left: 16px;
}

.top-right {
    position: absolute;
    top: 8px;
    right: 16px;
}

.top-center {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
}

.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
}

.bottom-center {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(-0%, 0%);
    width: 100%;
    padding: 0 20px;
}

.p-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.v-center {
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    margin: 0 auto;
}

.modal-dialog-bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: flex-end;
    min-height: calc(100% - 0rem);
}

.modal-rounded {
    border-radius: 8px 8px 0 0;
}

/*-----------------
8. Custom Checkbox
-----------------------*/
.cus-checkbox [type="checkbox"]:checked,
.cus-checkbox [type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.cus-checkbox [type="checkbox"]:checked+label,
.cus-checkbox [type="checkbox"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.cus-checkbox [type="checkbox"]:checked+label:before,
.cus-checkbox [type="checkbox"]:not(:checked)+label:before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 0;
    background: #fff;
}

.cus-checkbox [type="checkbox"]:checked+label:after,
.cus-checkbox [type="checkbox"]:not(:checked)+label:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--primary-clr);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg) !important;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.cus-checkbox [type="checkbox"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.cus-checkbox [type="checkbox"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/*############custom radio start here########*/
.cus-radio [type="radio"]:checked,
.cus-radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.cus-radio [type="radio"]:checked+label,
.cus-radio [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.cus-radio [type="radio"]:checked+label:before,
.cus-radio [type="radio"]:not(:checked)+label:before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

.cus-radio [type="radio"]:checked+label:after,
.cus-radio [type="radio"]:not(:checked)+label:after {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--primary-clr);
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.cus-radio [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.cus-radio [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.custom-select {
    background: transparent;
    background-image: url(../../assets/images/icons/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: center right 12px;
    min-width: 100px;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
}


/*-----------------
9. Reset Css
-----------------------*/
@media screen and (min-width: 320px) {
    html {
        font-size: calc(16px + 6 * ((100vw - 320px) / 680));
    }
}

@media screen and (min-width: 1000px) {
    html {
        font-size: 22px;
    }
}

html {
    font-size: 90%;
}

::selection {
    background-color: var(--primary-clr);
    color: #fff;
}

/*-----------------
10. Custom Scrollbar
-----------------------*/
.cus-scrollbar {
    margin-left: 30px;
    float: left;
    height: 200px;
    background: #F5F5F5;
    overflow-y: scroll;
    margin-bottom: 25px;
}

/* * STYLE 1 */
.style-1::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.style-1::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

.style-1::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #555;
}

/** STYLE 2 **/
.style-2::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.style-2::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

.style-2::-webkit-scrollbar-thumb {
    background-color: var(--primary-clr);
}

/*-----------------
11.Ellipsis
-----------------------*/
.ellipsis-line1 {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis-line2 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-line3 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.ellipsis-line4 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.ellipsis-line5 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

/*-----------------
12.Animation
-----------------------*/
/* Ripple effect */
.ripple {
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    transform: scale(0);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/*------------------------------
13.FLOATING LABEL
-------------------------------*/
.float-labels .form-group {
    position: relative;
    margin-bottom: 10px;
}

.float-labels input,
.float-labels textarea {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #999;
    padding: 10px 0;
    box-sizing: border-box;
}

.float-labels label {
    position: absolute;
    top: 15px;
    left: 0px;
    transition: .5s;
    pointer-events: none;
}

.float-labels input:focus~label,
.float-labels textarea:focus~label,
.float-labels input:read-only~label,
.float-labels input[disabled]~label,
.float-labels input:valid~label,
.float-labels textarea:valid~label {
    top: -6px;
    left: 0;
    font-size: 11px;
}

.float-labels input:focus,
.float-labels textarea:focus {
    box-shadow: none;
    border-bottom: 1px solid var(--primary-clr);
}

/****  floating-Lable style 2 placeholder=" " ****/
.floating-label {
    position: relative;
    margin-bottom: 20px;
}

.floating-select {
    font-size: 14px;
    padding: 4px 4px;
    display: block;
    width: 100%;
    height: 30px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #757575;
}

.floating-select:focus {
    outline: none;
    border-bottom: 1px solid var(--primary-clr);
}

.select-label {
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 5px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.floating-select:focus~label,
.floating-select:not([value=""]):valid~label {
    top: -8px;
    font-size: 11px;
}

/* active state */
.floating-select:focus~.bar:before,
.floating-select:focus~.bar:after {
    width: 50%;
}

/* highlighter */
.highlight {
    position: absolute;
    height: 50%;
    width: 100%;
    top: 15%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
.floating-input:focus~.highlight,
.floating-select:focus~.highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

/* animation */
@-webkit-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

/****  floating-Lable style end ****/

/*------------------------------
14. ACCORDION
-------------------------------*/
.accordion-plus:before {
    content: "\f107";
    position: absolute;
    right: 30px;
    font-family: FontAwesome;
}

.accordion-plus[aria-expanded="true"]:before {
    transform: rotateZ(180deg);
}

/*------------------------------
COMMON CSS
-------------------------------*/
body {
    /*font-family: 'Poppins', sans-serif;*/
    font-family: 'montserrat', sans-serif;
}

.shadow_from_top:before {
    content: "";
    background: linear-gradient(0deg, rgba(182, 182, 182, 0), rgba(0, 0, 0, 0.83));
    position: absolute;
    top: 0px;
    left: 0;
    padding: 45px 0px;
    z-index: 1;
    width: 100%;
    height: 100px;
}

.shadow_from_bottom:after {
    content: "";
    background: linear-gradient(180deg, rgba(182, 182, 182, 0), rgba(0, 0, 0, 0.83));
    position: absolute;
    bottom: 0px;
    left: 0;
    padding: 45px 0px;
    z-index: 1;
    width: 100%;
    border-radius: 0px 0px 5px 5px;
    height: 150px;
}

.shadow_from_bottom_2:before {
    content: "";
    background: linear-gradient(180deg, rgba(182, 182, 182, 0), rgba(0, 0, 0, 0.83));
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 45px 0px;
    z-index: 0;
    width: 100%;
    height: 100px;
}

.vw-100 {
    width: 100vw;
}

.vh-100 {
    height: 100vh;
}

.vh-48 {
    height: 48vh;
}


.w-120px {
    width: 120px
}

.w-250px {
    width: 250px
}

.w-100px {
    width: 100px
}

.h-60px {
    height: 60px
}

.h-120px {
    height: 120px
}

.h-130px {
    height: 130px
}

.h-150px {
    height: 150px
}

.h-160px {
    height: 160px
}

.h-180px {
    height: 180px;
}

.h-200px {
    height: 200px;
}

.h-210px {
    height: 210px;
}

.h-230px {
    height: 230px;
}

.h-250px {
    height: 250px
}

.top-1 {
    top: 1px;
}

.top-2 {
    top: 2px;
}

.top-3 {
    top: 3px;
}

.top-4 {
    top: 4px;
}

.top-5 {
    top: 5px;
}

.top-6 {
    top: 6px;
}

.cursor_pointer {
    cursor: pointer;
}

h3 {
    font-size: 18px;
}

.delete_action {
    background: red;
    color: white;
    height: 20px;
    width: 20px;
    position: absolute;
    text-align: center;
    margin-left: -10px;
    margin-top: -8px;
    border-radius: 50px;
    padding-top: 1px;
}

.fit-image {
    object-fit: cover;
}

.grayscale {
    filter: grayscale(100%);
}

.shadow-light {
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.border-white-8 {
    border: 8px solid White;
}

.zoom-hover {
    transition: all .5s ease;
}

.zoom-hover:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.zoom-hover-courses:hover {
    transition: all .5s ease;
    transform: scale(1.6);
    -webkit-transform: scale(1.6);
    z-index: 1;
    position: relative;
    box-shadow: 0px 0px 10px white;
}

.zoom-hover1 {
    transition: all .5s ease;
}

.zoom-hover1:hover {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
}

.zoom-hover2 {
    transition: all .5s ease;
}

.zoom-hover2:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.img-hover-color {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -webkit-transition: all .8s ease-in-out;
}

.img-hover-color:hover {
    filter: none;
    -webkit-filter: grayscale(0);
    -webkit-transform: scale(1.01);
}

.on_hover_show .show_div {
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(-25px);
    -moz-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -o-transform: translateY(-25px);
    transform: translateY(-25px);
    text-align: center;
    width: 100%;
    visibility: hidden;
    display: table;
    opacity: 0;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.on_hover_show:hover .show_div {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
}

.rotated_180 {
    transform: rotate(180deg);
}

.opacity-1 {
    opacity: 1;
}

.opacity-75 {
    opacity: 0.75;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-25 {
    opacity: 0.25;
}

.b-r-4 {
    border-radius: 6px;
}

.b-r-5 {
    border-radius: 5px;
}

.b-r-6 {
    border-radius: 6px;
}

.b-r-8 {
    border-radius: 8px;
}

.b-r-10 {
    border-radius: 10px;
}

.b-r-12 {
    border-radius: 12px;
}

.b-r-50 {
    border-radius: 50px;
}

.image-upload>label {
    pointer-events: inherit;
}

.image-upload>input {
    display: none;
}

.image-upload img {
    width: 40px;
    cursor: pointer;
}


.grid-item-2 {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: auto auto;
}

.grids-3 {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: auto auto auto;
}

.grids-4 {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: auto auto auto auto;
}

.card {
    border: none !important;
}

.z-index-99 {
    z-index: 99;
}

.br-7 {
    border-radius: 7px;
}

.fs-16 {
    font-size: 16px !important;
}

.strike-text {
    text-decoration: line-through;
}

.cover-image {
    background-size: cover !important;
    width: 100%;
    position: relative;
}

.bg-background-1:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    display: block;
    z-index: -1;
    top: 0;
}

.bg-background-1:before,
.banner1:before {
    background: rgb(8 59 120 / 85%) !important;
    ;
}

.ThisCourseIncludes {
    height: 120px;
    overflow-y: auto;
    overflow-x: hidden;
}

/*------------------------------
HEADER 
-------------------------------*/
.main-nav {
    -webkit-box-shadow: 0 0 15px rgb(0 0 0 / 30%);
    box-shadow: 0 0 15px rgb(0 0 0 / 30%);
}

.top-header-bg {
    background-color: var(--primary-clr);
}

.navbar-brand img {
    max-height: 90px;
    height: 90px;
}

.main-nav .navbar-light .navbar-brand {
    padding: 0;
}

.inner-banner .inner-title {
    padding-top: 50px;
    padding-bottom: 50px;
}

.main-nav nav .navbar-nav .nav-item {
    position: relative;
    padding: 10px 8px;
}

.main-nav nav .navbar-nav .nav-item a {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}

/*------------------------------
FOOTER
-------------------------------*/
.footer-bg-img {
    background-image: url(../../images/footer-bg.jpg);
    background-size: cover;
    background-position: bottom center;
    position: relative;
    z-index: 0;
}

.footer-bg-img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 70%);
    z-index: -1;
}

.footer-widget .single-contact i {
    font-size: 20px;
    margin-right: 15px;
    padding-top: 7px;
}

.footer-widget .footer-list li a {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.5s;
}

.footer-widget .footer-list li a:hover {
    color: var(--primary-clr);
    margin-left: 4px;
}

.footer-widget .single-contact p {
    margin-bottom: 0;
    color: #000;
    font-weight: 600;
}

.footer-widget h3 {
    color: var(--primary-clr);
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 14px;
}

.FollowUs li a>img {
    transition: all 0.2s ease;
    height: 24px;
    width: auto;
}

.FollowUs li a>img:hover {
    transform: scale(1.1);
}

.go-top.active {
    display: none;
}

#social-share {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
    /*transitions with relative delay*/
}

#social-share div.social-open-menu .btn-share,
#social-share ul.social-itens .btn-share {
    font-size: 20px;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    color: white;
    line-height: 1;
    outline: 0;
    border: 0;
    margin-top: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

#social-share div.social-open-menu .btn-share:hover,
#social-share ul.social-itens .btn-share:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

#social-share ul.social-itens {
    list-style: none;
    text-decoration: none;
    text-align: center;
    position: relative;
    padding: 0;
    display: none;
}

#social-share ul.social-itens.open {
    display: block;
}

#social-share ul.social-itens .btn-share {
    width: 50px;
    height: 50px;
    line-height: 50px;
    /* transform: none; */
}

#social-share ul.social-itens.open .btn-share {
    transform: scale(1);
    opacity: 1;
    /* transform: translate(0px, -15px); */
}

#social-share ul.social-itens li {
    position: relative;
}

#social-share ul.social-itens li .btn-share {
    transform: scale(0);
    opacity: 0;
}

#social-share ul.social-itens li .btn-share-text {
    /* opacity: 0; */
    position: absolute;
    bottom: 15px;
    right: 100%;
    margin-right: 10px;
    min-width: 75px;
    border-radius: 2px;
    padding: 3px 4px;
    text-align: center;
    font-weight: 300;
    background: rgba(20, 20, 20, 0.7);
    color: #fff;
    display: block;
    opacity: 0;
    /* transition: all 500ms ease-in-out  0.5s; */
}

#social-share ul.social-itens li:hover .btn-share-text {
    opacity: 1;
}

#social-share div.social-open-menu .btn-share {
    width: 65px;
    height: 65px;
    background-color: #F44336;
}

#social-share div.social-open-menu .btn-share i {
    text-shadow: 0px 0px #f32c1e, 1px 1px #f32c1e, 2px 2px #f32c1e, 3px 3px #f32c1e, 4px 4px #f32c1e, 5px 5px #f32c1e;
}

#social-share .social-itens.open .social-item-1,
#social-share .social-itens.open .social-item-1 .btn-share-text {
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s;
}

#social-share .social-itens.hidden .social-item-1,
#social-share .social-itens.open .social-item-1 .btn-share-text {
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
}

#social-share .social-itens.open .social-item-2,
#social-share .social-itens.open .social-item-2 .btn-share-text {
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s;
}

#social-share .social-itens.hidden .social-item-2,
#social-share .social-itens.open .social-item-2 .btn-share-text {
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s;
}

#social-share .social-itens.open .social-item-3,
#social-share .social-itens.open .social-item-3 .btn-share-text {
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s;
}

#social-share .social-itens.hidden .social-item-3,
#social-share .social-itens.open .social-item-3 .btn-share-text {
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s;
}

#social-share .social-itens.open .social-item-4,
#social-share .social-itens.open .social-item-4 .btn-share-text {
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
}

#social-share .social-itens.hidden .social-item-4,
#social-share .social-itens.open .social-item-4 .btn-share-text {
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s;
}

.messenger-color {
    background: -webkit-gradient(linear, left bottom, left top, from(#0078ff), to(#00c6ff));
    background: -o-linear-gradient(bottom, #0078ff, #00c6ff);
    background: linear-gradient(0deg, #0078ff, #00c6ff);
}

.whatsapp-color {
    background: -webkit-gradient(linear, left bottom, left top, from(#00b100), to(#09db09));
    background: -o-linear-gradient(bottom, #00b100, #09db09);
    background: linear-gradient(0deg, #00b100, #09db09);
}

.linkedin-color {
    background: -webkit-gradient(linear, left bottom, left top, from(#0077b5), to(#119de6));
    background: -o-linear-gradient(bottom, #0077b5, #119de6);
    background: linear-gradient(0deg, #0077b5, #119de6);
}

.instagram-color {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

/*------------------------------
HOMEPAGE
-------------------------------*/
.banner-slider-area .owl-dots {
    display: block;
    width: 100%;
    right: auto;
    left: auto;
    bottom: 0;
    top: inherit;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    margin-bottom: 10px;
}

.banner-slider-area .owl-dots .owl-dot span {
    background-color: #fff !important;
    width: 10px !important;
    height: 10px !important;
    border: 2px solid #fff;
    opacity: 0.5;
}

.banner-slider-area .owl-dots .owl-dot.active span {
    background-color: #ffc221 !important;
    width: 10px !important;
    height: 10px !important;
    border: 2px solid #ffc221;
    opacity: 1;
}

.banner-slider-area .owl-dots .owl-dot:hover span {
    background-color: #fff !important;
    width: 10px !important;
    height: 10px !important;
    border: 2px solid #ffc221;
}

.Homebanner .owl-carousel .owl-item img {
    border-radius: 0;
    object-fit: cover;
}

.Homebanner .banner-item::before {
    display: none;
}

.Homebanner .banner-item a {
    display: block;
}

.bg-video-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background: url(https://designsupply-web.com/samplecontent/vender/codepen/20181014.png) no-repeat center center/cover;
}

.bg-video-wrap:before {
    content: "";
    background: linear-gradient(180deg, hsla(0, 0%, 71.4%, 0), rgba(0, 0, 0, .83));
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 45px 0;
    width: 100%;
    height: 200px;
}

.bg-video-wrap video {
    min-width: 100%;
    min-height: 100vh;
    z-index: 1;
}

/*.bg-video-wrap .overlay {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-size: 3px 3px;
    background: #000;
    z-index: 2;
    opacity: 0.5;
    background-image: none;
}*/
.bg-video-wrap .info {
    text-align: center;
    color: #fff;
    z-index: 99;
}

.brand-item img {
    max-height: 90px;
}

.case-study-slider.owl-carousel .owl-item {
    cursor: pointer;
    margin: 14px 0px;
    transition: margin 0.4s ease;
    opacity: .6;
}

.case-study-slider.owl-carousel .owl-item.active.center {
    cursor: auto;
    margin: 0;
    opacity: 1;
}

.case-study-item .content {
    z-index: 990;
    min-height: 87px;

}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffc221;
}

.heading-new {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.homepageGategoryGrid .overlayMain:hover .title {
    display: none;
}

.testimonial .fa-quote-right {
    font-weight: bold;
    font-size: 44px;
    color: var(--primary-clr);
    margin-bottom: 14px;
}

.clients-slider .clients-content {
    min-height: 350px;
    max-height: 350px;
}

.testimonial .owl-carousel .owl-dots.disabled {
    display: block;
}

/*------------------------------
COURSES LIST 
-------------------------------*/
.case-study-item .content h3 a {
    color: #252525;
    font-size: 18px;
}

.case-study-item a img {
    transition: all 0.3s;
}

.case-study-item:hover a img {
    transform: scale(0.95);
}

/* .swiper-slide.case-study-item a img {
    min-height: 317px;
    max-height:317px;
    width: 100%;
    object-fit: cover;
} */
.case-study-item:hover {
    border: 1px solid var(--primary-clr);
    border-radius: 6px;
}

.courseList .case-study-item {
    border: 1px solid #ededed;
    border-radius: 6px;
}

.courseList .case-study-item .content {
    position: relative;
    bottom: 0;
    width: 100%;
    margin: 0;
    border-radius: 0;
    background: #fff;
}

.courseList .swiper-slide.case-study-item a img {
    border-radius: 0;
}

/*------------------------------
Course Details
-------------------------------*/
.courseDetailsBanners {
    width: 100%;
}

.courseDetailsBanners:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.courseDetailsBanners img {
    width: 100%;
    height: calc(100vh - 137px);
    object-fit: cover;
}

.BannersData {
    /*width: 75%;*/
    bottom: 30px;
}

.ShareHeartAction a.action {
    font-size: 24px;
    border: 1px solid #fff;
    padding: 12px;
    border-radius: 50px;
    transition: all 0.3s;
    cursor: pointer;
}

.ShareHeartAction a.action:hover {
    background-image: linear-gradient(to right, rgb(244, 164, 34) 0%, rgb(179, 127, 44) 100%);
    border: 1px solid #b37f2c;
}

.ShareHeartAction .dropdown-menu {
    bottom: 120%;
    min-width: 13rem;
    top: inherit;
}

.ShareHeartAction .dropdown-menu:before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 14px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

.ShareHeartAction a.active {
    background-image: linear-gradient(to right, rgb(244, 164, 34) 0%, rgb(179, 127, 44) 100%);
    border: 1px solid #b37f2c;
}

.ShareHeartAction a.active i:before {
    content: "\f004";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.ShareHeartAction>a:hover>.bxl-whatsapp:after {
    content: "";
    background: #05c605;
    border-radius: 50px;
    position: absolute;
    height: 45px;
    width: 45px;
    margin-left: -53px;
    z-index: -1;
    margin-top: 8px;
}

.box {
    position: relative;
    max-width: 600px;
    width: 90%;
    height: 400px;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.course-banner-action .cus-primary-btn {
    width: 188px;
    height: 40px;
    padding: 0;
    line-height: 40px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 6px;
    font-size: 0.8vw;
    margin: 0 20px;

}

.course-banner-action button {
    font-size: 0.8vw;
}

.course-banner-action .Interested {
    font-size: 14px;
    width: 188px;
    height: 50px;
    padding: 0;
    line-height: 47px;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 6px;
    margin-left: 10px;
}

.Accreditation-img {
    max-height: 40px;
    margin-right: 4px;
}

#AccreditationModal .Accreditation-img {
    max-height: 86px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.coursedetails-rightsidebar>ul li>.row>div:first-child {
    align-self: center;
    font-weight: bold;
    font-size: 14px;
}

.coursedetails-rightsidebar>ui li .row>div:last-child {}

.FollowUs li a>img {
    transition: all 0.2s ease;
    height: 24px;
    width: auto;
}

.FollowUs li a>img:hover {
    transform: scale(1.1);
}

.gallery-img-thumb {
    height: 36vh;
    width: 100%;
    object-fit: cover;
}

.course-details-tab .nav-link {
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    color: var(--primary-clr);
}

.course-details-tab .nav-link:focus,
.course-details-tab .nav-link:hover {
    border: none;
}

.course-details-tab .nav-link.active {
    color: #fff;
    background-color: var(--primary-clr);
    border-color: var(--primary-clr);
    border-radius: 0;
}

.instructor_info {
    text-align: left;
    padding-top: 14px;
}

.instructor_info>.heading2 {
    font-size: 14px !important;
    line-height: 14px;
}

.instructor_info *,
.instructor_info p {
    font-size: 13px !important;
    line-height: inherit;
    margin: 0px;
}

.instructor_info p {
    color: #fff !important;
}

.instructor_info .instructor_read_more {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: bold;
}

.instructor_info .instructor_read_more:hover {
    opacity: 0.8;
}

.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.media-body {
    -ms-flex: 1;
    flex: 1;
}

/*#################   Review   #################*/
.course_rating {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.rating_review {
    width: 40%;
    text-align: center;
    background-color: #f5f5f5;
    padding: 20px;
}

.review_number {
    display: block;
    font-size: 70px;
    color: #333;
    font-weight: 500;
    line-height: normal;
}

.rating_stars i {
    color: #ffc600;
    font-size: 18px;
    line-height: normal;
}

.rating_box {
    width: 60%;
    padding: 20px;
}

.course_rate {
    margin-bottom: 10px;
}

.course_rate .review_bar {
    width: calc(100% - 120px);
    margin: 0 10px;
    height: 15px;
    background-color: #DDD;
    display: inline-block;
}

.course_rate .review_bar .rating {
    background-color: #FFBC09;
    height: 15px;
}

.comment_info {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #ddd;
}

.comment_list .user_img img {
    min-width: 100px;
    max-width: 100px;
    margin-right: 15px;
}

.comment_list .meta_data {
    margin-bottom: 6px;
}

.comment_list .comment-time {
    font-size: 14px;
    text-transform: capitalize;
    color: #333;
}

.comment_content p:last-child,
.card-body p:last-child {
    margin: 0;
}

.reviewListBox {
    height: 500px;
    overflow-y: auto;
}

/*############## 
New Design
################*/
.courseDetailBannersBox {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.wideget-user-tab .tab-menu-heading {
    padding: 0;
    border: 0;
}

.details-tab-content {
    border-radius: 0 3px 0px 0px;
}

.tabs-menu1 .nav_menus a {
    display: block;
    margin: 0;
    border: 0;
    border-radius: 3px;
    font-size: 16px;
    text-align: center;
    color: #5c5776;
    padding: 10px 20px;
    text-decoration: none;
    opacity: 0.7;
    font-weight: normal;
}

.is-sticky .tabs-menu1 {
    background: var(--primary-clr);
}

.is-sticky .tabs-menu1 .nav_menus a {
    color: #fff !important;
    background: var(--primary-clr);
}

.is-sticky .tabs-menu1 .nav_menus a.active {
    color: #fff !important;
    opacity: 1;
    font-weight: normal;
    background-color: #031b38;
}

.sticky-nav .main-nav,
.sticky-nav {
    position: fixed;
    z-index: 9999 !important;
}


/******* Right Side ******/
.video-list-thumbs>li>a {
    display: block;
    position: relative;
    color: #6b6f80;
    padding: 8px;
    border-radius: 3px;
    transition: all .5s ease-in-out;
    border-radius: 4px;
}

.product-slider .class-video:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 0;
    border-radius: 7px;
}

.video-list-thumbs span {
    font-size: 50px;
    opacity: 1;
    position: absolute;
    right: 0;
    left: 0;
    top: 35%;
    margin: 0 auto;
    text-align: center;
    transition: all .5s ease-in-out;
    cursor: pointer;
}

.video-icon {
    font-size: inherit !important;
    opacity: 1 !important;
}

.video-icon i {
    background-color: #fff;
    color: #6964f7;
    transition: .2s ease;
    display: inline-flex;
    justify-content: center;
    vertical-align: middle;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    border-radius: 100%;
    padding-left: 3px;
}

.profile-pic {
    text-align: center;
}

.avatar-xxl {
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    font-size: 2rem;
}

.brround {
    border-radius: 50% !important;
}

/*#################  END  Review   #################*/

/*#################  GAllery   #################*/
.gallerySec {
    width: 70%;
}

.gallerySec .gallerySecItmem img {
    width: 250px;
    height: 170px;
    object-fit: cover;
    border-radius: 6px;
}

.gallerySecItmem {
    margin-bottom: 10px;
    padding: 0 5px;
}

.gallerySecItmemInfo {
    /*position: absolute;
    margin: -30px -50px;
    background: #fff;
    padding: 20px;
    text-align: center;
    z-index: 99;
    min-height: 228px;
    border-radius: 8px;*/
    position: relative;
    margin-top: 0;
    margin-left: 0;
    background: #fff;
    padding: 20px;
    text-align: center;
    z-index: 99;
    min-height: 228px;
    border-radius: 8px;
}

.gallerySecBox .gallerySec:first-child {
    display: none;
}

/*#################  END GAllery   #################*/

.main-nav .nav-side .nav-side-item .get-btn {
    top: 0px;
}

.Accreditation-img {
    max-height: 65px;
    margin-right: 4px;
}

.DownloadFlayer a {
    min-width: 45px;
    font-size: 10px;
    font-weight: bold;
    margin-bottom: 2px;
}

/*------------------------------
INSTRUCTORS LIST
-------------------------------*/
.Popular-Courses.instructor_list .card .card-img-top {
    height: 350px;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.Popular-Courses.instructor_list>div {
    transition: all 0.3s ease-in;
}

.Popular-Courses.instructor_list>div:hover {
    transform: scale(1.04);
}

.short_description p {
    margin-bottom: 0;
    font-size: 13px;
}

.short_description p strong {
    font-weight: normal;
}

.cc-picker-code-select-enabled {
    border: 1px solid #ced4da;
    padding: 0 10px;
    z-index: 0;
    margin-right: -1px;
    border-radius: 4px;
}

.cc-picker-code-select-enabled::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 16px;
    right: 7px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #512b2b;
}

.cc-picker-code-filter {
    padding: 2px 6px;
    border-radius: 4px;
}

.brand-area-two::before {
    content: '';
    background-color: #083b78;
    z-index: -1;
}

.CemPoint {
    position: absolute;
    top: 2%;
    left: 1.5%;
    background-image: url(../../images/CME-badge.png);
    background-size: contain;
    background-repeat: no-repeat;
    height: 150px;
    width: 150px;
    padding: 0 20px;
    vertical-align: middle;
    align-items: center;
    display: flex;
    text-align: center;
    font-weight: bold;
    color: #e9d25f;
    justify-content: center;
    font-size: 16px;
}


/*------------------------------
BLOG PAGE
-------------------------------*/

.blog-card .blog-img a {
    width: 100%;
}

.blog-card .blog-img img {
    width: 100%;
    border-radius: 0;
    height: 300px;
    object-fit: cover;
}

.side-bar-widget .widget-popular-post .item .thumb .full-image {
    height: 50px;
    background-color: #070b3b;
}
.blog-card .content {
    padding: 15px;
}
.blog-card .content .ellipsis-line2 {
    height: 32px;

}

.latestBlogImg {
    width: 100%;
    height: 50px;
    object-fit: cover;
    border-radius: 0 !important;
}

.side-bar-widget .widget-popular-post .item {
    align-items: center;
    display: flex;
}

.offer_title1 {
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
   
}

.course-banner-action {
margin: 0 auto
}

.prod-details-sec {
    background: #fff;
    border: 1px solid #ddd;
    padding: 14px;
    border-radius: 10px;
}

/*######### MEDIA QUERY START HERE ########*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 768px) {

    .f-28 {
        font-size: 18px;
    }

    .f-26 {
        font-size: 16px;
    }

    .f-24 {
        font-size: 14px;
        line-height: 18px;
    }

    /*############# HEADER   ##############*/
    .mobileUserIcons {
        position: absolute;
        top: 22px;
        right: 70px;
        font-size: 20px;
        display: inline-block;
        z-index: 999999;
    }

    .mobileUserIcons i {
        font-size: 28px;
        color: var(--primary-clr);
    }

    .side-nav-responsive .dot-menu {
        display: none;
    }

    .navbar-area {
        height: 70px;
    }

    .mean-container a.meanmenu-reveal span {
        background: var(--primary-clr);
        width: 30px;
        height: 2px;
        top: 0px;
        margin-top: 5px;

    }

    .mean-container a.meanmenu-reveal {
        color: var(--primary-clr);
    }

    .side-nav-responsive .container-max .container {
        max-width: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }

    .top-header {
        padding: 7px 0 7px;
    }

    .top-head-left {
        margin-top: 0;
    }

    .top-header-right {
        margin-top: 0;
    }

    /*#############   Homepage    ##############*/
    .bg-video-wrap video {
        min-height: 45vh;
    }

    .bg-video-wrap {
        height: 45vh;
    }

    /*#############   CoursesDetails    ##############*/
    .CoursesDetails {
        flex-direction: column-reverse;
    }

    .CoursesDetails>div {
        margin-bottom: 20px;
    }

    .is-sticky .tabs-menu1 {
        background-color: var(--primary-clr);
        top: 74px !important;
        margin-top: 0 !important;
        width: 100% !important;
        left: 0;
    }

    #mainNav {
        overflow-x: auto;
    }

    .tabs-menu1 .nav_menus a {
        line-height: 1;
    }

    .CoursesDetails .tab-content>.tab-pane {
        padding: 1rem !important;
    }

    .mySwiper {
        padding-left: 14px;
        padding-right: 14px;
    }

    .courseDetailBannersBox {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }

    .gallerySec {
        width: 94%;
        display: flex;
        flex-direction: column;
        padding-top: 26px;
        padding-bottom: 26px;
    }

    .gallerySec .row:nth-child(2) {
        order: 6 !important;
    }

    .gallerySec .row:nth-child(2)>div:nth-child(2) {
        display: none !important;
    }


    .course-banner-action .cus-primary-btn {
        font-size: 14px;
        margin: 0;
        width: 100% !important;
    }

    .course-banner-action button {
        font-size: 3vw;
        margin-left: 0 !important;
        height: 40px;
    }

    .heading-new {
        font-size: 16px;
    }

    .BannersData {
        width: 90%;
        left: 50%;
        transform: translate(-50%, 10px);
    }

    .offer_title1 {
        font-size: 12px;
    }

    .ShareHeartAction a.action {
        font-size: 16px;
        padding: 8px;
    }

    .ShareHeartAction .bxl-whatsapp {
        font-size: 43px;
    }

    .CoursesDetails3 .wideget-user-tab.wideget-user-tab3 .tabs-menu1 ul li a {
        font-size: 12px;
        line-height: 14px;
        height: 50px;
    }

    .wideget-user-tab .tab-menu-heading {
        margin-top: 20px;
    }

    .gallerySecBox {
        padding-top: 14px !important;
    }

    /*.tabs-menu1 ul li {
    height: 50px;
}*/

    .nav {
        height: 51px;
    }

    .sticky2 {
        top: 3px !important;
    }

    .courseDetailsBanners img {
        height: calc(70vh);
    }

    .Popular-Courses.instructor_list .card .card-img-top {
        height: 480px;
    }

    .ShareHeartAction>a:hover>.bxl-whatsapp:after {
        content: "";
        background: #05c605;
        border-radius: 50px;
        position: absolute;
        height: 30px;
        width: 30px;
        margin-left: -36px;
        z-index: -1;
        margin-top: 8px;
    }

    .reviewListBox {
        height: 400px;
        overflow-y: auto;
    }

    #iframeVideo {
        max-height: 250px;
    }

    .clients-slider .clients-content {
        min-height: 420px;
        max-height: 420px;
    }





}

/* Small devices (portrait tablets and large phones, 768 and down) */


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

/* Medium devices (landscape tablets, 768px and up) */


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

    /*background*/
    .lg-bg-primary {
        background: var(--primary-clr) !important;
    }

    .lg-bg-secondary {
        background: var(--secondary-clr) !important;
    }

    .lg-bg-white {
        background: #fff !important;
    }

    .lg-bg-greylight {
        background: #f3f3f3 !important;
    }

    .lg-bg-t {
        background: transparent !important;
    }

    .mt-lg-n27 {
        margin-top: -27rem !important;
    }

    .gallerySec {
        transform: scale(0.7);
    }

    .gallerySecBox .gallerySec:first-child {
        position: absolute;
        display: block;
        top: auto;
        left: auto;
        right: auto;
        transform: scale(0.9);
        max-width: 100%;
        width: 100%;
        opacity: 0.2;
    }

    .gallerySecBox .gallerySec:first-child .gallerySecItmemInfo {
        display: none;
    }

    .gallerySecBox .gallerySec:first-child .gallerySecItmem img {
        box-shadow: 0px 0px 30px 10px rgb(0 0 0 / 36%);
    }

    .gallerySec .gallerySecItmem img {
        width: 250px;
        height: 250px;
    }



}

/* Large devices (laptops/desktops, 992px and up) */


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

    html,
    body {
        overflow-x: hidden;
    }

    .container {
        max-width: 94%;
    }


}

/* Extra large devices (large laptops and desktops, 1200px and up) */

/************************* 4th Jan 2023 for Academic Calender**************/
.card-body {
    padding: 0rem 0rem;
}

.accordion-body {
    padding: 1rem 1.25rem;
    overflow: auto;
    /* height: 265px; */
}

.text-center.mx-auto.wow.fadeInUp+p.text-center.mx-auto.wow.fadeInUp {
    font-size: 18px;
    line-height: inherit;
}

.f-heading2 {
    font-weight: 600;
}

.schedule-lower-row {
    background-color: var(--primary-clr);
}

.calender-sml {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.cal-box {
    border: 1px solid;
    width: 32px;
    min-width: 32px;
    font-size: 9px;
    border-radius: 3px;
    text-align: center;
}

.cal-box-side {
    border: 1px solid;
    width: 48px;
    height: 38px;
    font-size: 12px;
    border-radius: 3px;
    text-align: center;
}

.cal-month {
    background: var(--primary-clr);
    margin-top: -0.5px;
    margin-right: -0.5px;
    margin-left: -0.5px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.side-course {
    color: var(--primary-clr);
}

.h-44 {
    height: 44px;
}

.suggestions-dropdown-results {
    position: absolute;
    width: 1050px;
    max-height: 300px;
    margin-top: -5px;
    overflow-y: auto;
    list-style: none;
    text-align: left;
    padding: 0;
    border-radius: 0 0 8px 8px;
    background: #f7f7f7;
    box-shadow: 0px 10px 13px rgba(0, 0, 0, 0.08);
    z-index: 9;
}

.suggestions-dropdown-results li {
    height: 50px;
    line-height: 1.34;
    padding: 5px 14px;
    align-items: center;
    display: flex;
    transition: all 0.5s;
}

.suggestions-dropdown-results li:not(:last-child) {
    border-bottom: 1px solid #d1d1d1;
}

.suggestions-dropdown-results li a {
    color: #252525;
    transition: all 0.5s;
}

.suggestions-dropdown-results li:hover {
    background-color: #083b78;
    color: #fff;
}

.suggestions-dropdown-results li:hover a {
    color: #fff;
}

.search-form1 {
    max-width: 1050px;
    width: 1050px;
}

.calender-sml.large {
    align-items: flex-start;
}

.calender-sml.large .cal-box {
    width: 70px;
    min-width: 70px;
    margin-right: 12px;
}

.calender-sml.large .cal-month {
    height: 26px;
    line-height: 26px;
    font-size: 16px;
}

.calender-sml.large .cal-month+div {
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px !important;
}

.calender-sml.large .banner-bottom-card {
    width: 160px !important;
    padding-top: 6px !important;
}

#search_text1 {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-image: url('images/searchicon.png');
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
}

.offer_title2 {
    color: white;
    font-weight: 700;
    width: 100%;
    left: 0;
    text-shadow: 0px 0px 3px #f1a222, 0px 0px 3px #f1a222, 0px 0px 3px #f1a222, 0px 0px 4px #f1a222, 0px 0px 7px #f1a222, 0px 0px 7px #f1a222;
    animation: blink 1s ease-in-out infinite;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
    padding: 10px 12px;
    line-height: 18px;
}

.course_drpdown {
    max-height: 85vh;
    overflow-y: auto;
}

.Combo_button::after{
    content: unset  !important
}

ul.top-head-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    list-style: none;
    column-gap: 20px;
}

ul.top-head-menu a:hover {
    color: #ffc221 !important;
}

.top-header-right .top-header-social ul li a{
    width: 26px !important;
    height: 26px !important;
}

.mobile-nav nav .navbar-nav{
    min-height: 300px;
    height: 100%;
}

.course-side-details{
    height: 581px;
    overflow-y: auto;
}

.course-side-details::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  .course-side-details::-webkit-scrollbar-track {
    background: transparent; 
  }
   
  /* Handle */
  .course-side-details::-webkit-scrollbar-thumb {
    background: #afafafad; 
    border-radius: 50px;
  }

  .border-animation {
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 600;
    animation: sway 2s ease-in-out infinite;
    position:relative
}

.border-animation::before,
.border-animation::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 0px solid transparent;
    transition: all 0.3s ease;
}

.border-animation::before {
    top: -4px;
    left: -4px;
    border-top: 2px solid #fbbf24;
    border-left: 2px solid #fbbf24;
}

.border-animation::after {
    bottom: -4px;
    right: -4px;
    border-bottom: 2px solid #fbbf24;
    border-right: 2px solid #fbbf24;
}

.border-animation:hover::before,
.border-animation:hover::after {
    width: calc(100% + 6px);
    height: calc(100% + 6px);
}

.modal-backdrop{
    opacity: 0.9 !important;
}

.modal-open{
    overflow: hidden !important;
    padding: 0 !important;
}
@keyframes sway {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    50% {
        transform: translateX(0);
    }

    75% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

.cc-picker-code-list{
    z-index: 100000 !important;
}


.floating-label-custom{
    pointer-events: none !important;
}

.sticky-nav .main-nav, .sticky-nav {
    position: fixed;
    z-index: 1000 !important;
}
  
 



