﻿/*btn-new under slider*/



.btn {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin: 0px 0px 10px;
    min-width: 150px;
}

    .btn span {
        position: relative;
        display: inline-block;
        font-size: 14px;
        font-weight: bold;
        letter-spacing: 2px;
        text-transform: uppercase;
        top: 0;
        left: 0;
        width: 100%;
        padding: 15px 20px;
        transition: 0.3s;
    }



/*--- btn-3 ---*/
.btn-3 {
    padding: 5px;
    width: 100%;
}

    .btn-3 span {
        color: rgb(4 39 70);
        background-color: rgb(245 187 41);
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
    }

        .btn-3 span:hover {
            color: #fff;
            background-color: rgb(12 72 117);
            border-radius: 3px;
            transform: translateY(-5px);
        }

    .btn-3::before,
    .btn-3::after {
        background: transparent;
        z-index: 2;
    }

/* 11. hover-border-1 */
.btn.hover-border-1::before,
.btn.hover-border-1::after {
    width: 10%;
    height: 25%;
    transition: 0.35s;
}

.btn.hover-border-1::before {
    top: 0;
    left: 0;
    border-left: 1px solid rgb(28, 31, 30);
    border-top: 1px solid rgb(28, 31, 30);
}

.btn.hover-border-1::after {
    bottom: 0;
    right: 0;
    border-right: 1px solid rgb(28, 31, 30);
    border-bottom: 1px solid rgb(28, 31, 30);
}

.btn.hover-border-1:hover::before,
.btn.hover-border-1:hover::after {
    width: 99%;
    height: 98%;
}

/* 12. hover-border-2 */
.btn.hover-border-2::before,
.btn.hover-border-2::after {
    width: 10%;
    height: 25%;
    transition: 0.35s;
}

.btn.hover-border-2::before {
    bottom: 0;
    left: 0;
    border-left: 1px solid rgb(28, 31, 30);
    border-bottom: 1px solid rgb(28, 31, 30);
}

.btn.hover-border-2::after {
    top: 0;
    right: 0;
    border-right: 1px solid rgb(28, 31, 30);
    border-top: 1px solid rgb(28, 31, 30);
}

.btn.hover-border-2:hover::before,
.btn.hover-border-2:hover::after {
    width: 99%;
    height: 99%;
}

/* 13. hover-border-3 */
.btn.hover-border-3::before,
.btn.hover-border-3::after {
    width: 0%;
    height: 0%;
    opacity: 0;
    transition: width 0.2s 0.15s linear, height 0.15s linear, opacity 0s 0.35s;
}

.btn.hover-border-3::before {
    top: 0;
    right: 0;
    border-top: 1px solid rgb(28, 31, 30);
    border-left: 1px solid rgb(28, 31, 30);
}

.btn.hover-border-3::after {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid rgb(28, 31, 30);
    border-right: 1px solid rgb(28, 31, 30);
}

.btn.hover-border-3:hover::before,
.btn.hover-border-3:hover::after {
    width: 100%;
    height: 99%;
    opacity: 1;
    transition: width 0.2s linear, height 0.15s 0.2s linear, opacity 0s;
}

/* 14. hover-border-4 */
/*.btn.hover-border-4::before,
.btn.hover-border-4::after {
  width: 0%;
  height: 0%;
  opacity: 0;
  transition: width 0.2s linear, height 0.15s 0.2s ease-out, opacity 0s 0.35s;
}
.btn.hover-border-4::before {
  bottom: 0;
  left: -1px;
  border-top: 1px solid rgb(28, 31, 30);
  border-left: 1px solid rgb(28, 31, 30);
}
.btn.hover-border-4::after {
  top: 0;
  right: 0;
  border-bottom: 1px solid rgb(28, 31, 30);
  border-right: 1px solid rgb(28, 31, 30);
}
.btn.hover-border-4:hover::before,
.btn.hover-border-4:hover::after {
  width: 100%;
  height: 99%;
  opacity: 1;
  transition: width 0.2s 0.15s ease-out, height 0.15s ease-in, opacity 0s;
}*/

/*end btn-new under slider*/

/*card-new*/
a {
    color: #3747ff;
    text-decoration: none;
    outline: 0;
    transition: all ease 0.4s;
}

.vs-btn {
    border: none;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    background-color: #195c90;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    padding: 21.5px 40px;
    border-radius: 9999px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .vs-btn:before,
    .vs-btn:after {
        content: "";
        position: absolute;
        top: 3px;
        right: 3px;
        bottom: 3px;
        left: 3px;
        background-color: #195c90;
        transform: scale(0);
        z-index: -1;
        border-radius: inherit;
        transform-origin: right bottom;
        transition: all ease 0.4s;
        opacity: 0;
        visibility: hidden;
    }

    .vs-btn:before {
        transform-origin: left top;
    }

    .vs-btn i {
        display: inline-block;
        vertical-align: middle;
        transition: all ease 0.4s;
    }

    .vs-btn:hover {
        color: #fff;
    }

        .vs-btn:hover:before,
        .vs-btn:hover:after {
            transform: scale(1);
            opacity: 1;
            visibility: visible;
        }

    .vs-btn.style2 {
        background-color: #185e92;
        color: #ffffff;
        padding: 0 35px 0 0;
    }

        .vs-btn.style2 i {
            background-color: #195c90;
            color: #fff;
            width: 60px;
            height: 60px;
            line-height: 60px;
            font-size: 22px;
            margin: 0 15px 0 0;
            border-radius: 50%;
        }

        .vs-btn.style2:after {
            transform: scale(1);
            background-color: #f5bb29;
            z-index: -2;
            border-radius: inherit;
            border: 2px solid #f5bb29;
        }

        .vs-btn.style2:hover {
            color: #fff;
        }

            .vs-btn.style2:hover:before {
                transform: scale(1);
            }

            .vs-btn.style2:hover i {
                background-color: #f5bb29;
            }

.play-btn {
    background-color: #f5bb29;
    border-radius: 50%;
    text-align: center;
    z-index: 1;
}

    .play-btn > i {
        display: inline-block;
        width: 90px;
        height: 90px;
        line-height: 90px;
        text-align: center;
        background-color: #f5bb29;
        color: #fff;
        border-radius: 50%;
        z-index: 1;
        transition: all ease 0.4s;
    }

    .play-btn:after,
    .play-btn:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0);
        border: 4px solid #f5bb29;
        transition: all ease 0.4s;
    }

    .play-btn:after {
        animation-delay: 2s;
    }

    .play-btn:hover:after,
    .play-btn:hover::before,
    .play-btn:hover i {
        background-color: #f5bb29;
        color: #fff;
    }




.course-style1 {
    transition: all 0.3s ease-in-out;
    border-radius: -3px;
    margin-bottom: 30px;
    background-color: #fff;
    position: relative;
    /* transition: all ease 0.4s; */
    padding-bottom: 0.1px;
}

    .course-style1 .course-teacher {
        font-size: 14px;
        text-transform: uppercase;
    }

    .course-style1 .course-img {
        position: relative;
        overflow: hidden;
        /* border-radius: 20px 20px 0 0; */
    }

        .course-style1 .course-img:before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            top: 0;
            opacity: 0;
            z-index: 0;
            background-color: rgba(0, 0, 0, 0.4);
            transition: all ease 0.4s;
        }

    .course-style1 .vs-btn {
        position: absolute;
        left: 25%;
        top: 40%;
        opacity: 0;
        transform: translateY(-50px);
    }

        .course-style1 .vs-btn i {
            font-size: 19px;
        }

    .course-style1 .course-category {
        background-color: #ffc005;
        color: #000000;
        font-size: 13px;
        font-weight: 700;
        padding: 3px 13px;
        left: 20px;
        border-radius: 20px;
        position: absolute;
        text-align: center;
        top: 20px;
        z-index: 1;
        text-transform: uppercase;
        transition: all ease 0.4s;
    }

        .course-style1 .course-category a {
            color: #000000;
        }

    .course-style1 .course-content {
        padding: 25px 40px 22px 40px;
    }

    .course-style1 .course-meta {
        border: 1px solid rgba(188, 188, 188, 0.4);
        padding: 10px 8px;
        /* margin: 0 10px 10px 10px; */
        /* display: flex; */
        justify-content: space-between;
        /* border-radius: 20px; */
        transition: all ease 0.4s;
        /* border-bottom: 3px solid #f5bb29; */
        background-color: #195c90;
        text-align: center;
        /* color: #000; */
        text-transform: uppercase;
    }

        .course-style1 .course-meta span {
            font-size: 14px;
            color: #fff;
            font-weight: 600;
            padding: 8px 10px 0px;
            /* color: #2b4a66; */
            /* display: inline-block; */
            /* font-size: 25px; */
            /* margin-right: 15px; */
            /* font-weight: 600; */
            /* text-align: center; */
        }

            .course-style1 .course-meta span:last-child {
                margin-right: 0;
            }

        .course-style1 .course-meta a:hover {
            color: #f5bb29;
        }

        .course-style1 .course-meta i {
            font-size: 14px;
            margin-right: 7px;
            color: #f5bb29;
        }

    .course-style1 .course-top {
        display: flex;
        justify-content: space-between;
        margin-bottom: 5px;
    }

    .course-style1 .course-price {
        font-size: 24px;
        font-weight: 700;
        color: #f5bb29;
        display: block;
    }

    .course-style1 .course-review {
        margin-bottom: 9px;
        color: #6d6d6d;
        font-weight: bold;
    }

        .course-style1 .course-review i {
            color: #f6b800;
            display: inline-block;
            font-size: 14px;
            margin-right: 3px;
        }

            .course-style1 .course-review i:last-of-type {
                margin-right: 10px;
            }

    .course-style1 .course-name {
        margin-bottom: 9px;
    }

        .course-style1 .course-name a {
            color: #fff;
        }

            .course-style1 .course-name a:hover {
                color: #fff;
            }

    .course-style1:hover .course-category {
        opacity: 0;
    }

    .course-style1:hover .course-img:before {
        opacity: 1;
    }

    .course-style1:hover .course-meta {
        border-color: #fff;
    }

    .course-style1:hover .vs-btn {
        opacity: 1;
        transform: translateY(0);
    }

    .course-style1.has-border {
        border: 0px solid #fff;
    }

        .course-style1.has-border .course-img {
            margin: 0px;
            padding: 5px 5px;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        }

        .course-style1.has-border:hover {
            border-color: #fff;
            transform: translateY(-5px);
        }

/*ennd card-new*/


.img-1 {
    overflow: hidden;
}

.mega-hover {
    position: relative;
    overflow: hidden;
}

    .mega-hover:hover img {
        transform: scale(1.05);
    }

    .mega-hover img {
        transition: all 2s ease;
        transform: scale(1);
    }

    .mega-hover:before {
        top: -10%;
        right: 51%;
        bottom: -10%;
        left: 50%;
        background: rgba(255, 255, 255, .3);
    }

    .mega-hover:after, .mega-hover:before {
        content: "";
        position: absolute;
        pointer-events: none;
        opacity: 1;
        z-index: 3;
        transform: rotate(5deg);
    }



.mega-hover {
    position: relative;
    overflow: hidden;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}

    .mega-hover img {
        transition: all 2s ease;
        transform: scale(1);
        border: 1px solid #00000014;
        padding: 4px;
    }

    .mega-hover:after, .mega-hover:before {
        content: "";
        position: absolute;
        pointer-events: none;
        opacity: 1;
        z-index: 3;
        transform: rotate(5deg)
    }

    .mega-hover:before {
        top: -10%;
        right: 51%;
        bottom: -10%;
        left: 50%;
        background: rgba(255,255,255,.3)
    }

    .mega-hover:after {
        top: 50%;
        right: -10%;
        bottom: 50%;
        left: -10%;
        background: rgba(255,255,255,.6)
    }

    .mega-hover:hover:before {
        left: 0;
        right: 0;
        opacity: 0;
        transition: all 900ms linear
    }

    .mega-hover:hover:after {
        top: 0;
        bottom: 0;
        opacity: 0;
        transition: all 900ms linear
    }

    .mega-hover:hover img {
        transform: scale(1.05);
    }



.img-shadow1 {
    box-shadow: .34px .94px 68px rgba(35,31,32,.1)
}

@keyframes newlabel {
    0% {
        background-color: var(--theme-color)
    }

    50% {
        background-color: var(--theme-color2)
    }

    100% {
        background-color: var(--theme-color)
    }
}




/*feature-style2*/
.feature-style2 {
    position: relative;
    overflow: hidden;
}

    .feature-style2 .feature-img {
        position: relative;
        overflow: hidden;
    }

    .feature-style2 .feature-icon {
        display: block;
        margin-bottom: 35px;
    }

    .feature-style2 .feature-img img {
        width: 100%;
    }

    .feature-style2 .feature-content {
        bottom: 0;
        padding: 0px 30px 90px;
        position: absolute;
        text-align: center;
        transform: translateY(230px);
        transition: all ease 0.6s;
    }

    .feature-style2 .feature-icon {
        display: block;
        margin-bottom: 35px;
    }

    .feature-style2 .feature-title {
        color: #ffffff;
        font-size: 25px;
        margin-bottom: 21px;
    }

    .feature-style2 .feature-text {
        color: #ffffff;
        font-weight: 500;
        margin-bottom: 40px;
        opacity: 0;
        transition: all ease 0.6s;
    }

    .feature-style2 .feature-link {
        color: #ffffff;
        font-weight: bold;
        text-decoration: underline;
        opacity: 0;
        transition: all ease 0.6s;
    }

        .feature-style2 .feature-link i {
            border: 1px solid #ffffff;
            border-radius: 50%;
            color: #ffffff;
            height: 27px;
            line-height: 27px;
            margin-left: 15px;
            text-align: center;
            width: 27px;
            transition: all ease 0.4s;
        }

    .feature-style2 .feature-title a {
        color: inherit;
    }

    .feature-style2 .feature-title {
        color: #ffffff;
        font-size: 25px;
        margin-bottom: 21px;
    }

.h5, h5 {
    font-size: 24px;
}

.fs-md {
    font-size: 18px;
}

.feature-style2 .feature-text {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 40px;
    opacity: 0;
    transition: all ease 0.6s;
}

.feature-style2 .feature-link i {
    border: 1px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    height: 27px;
    line-height: 27px;
    margin-left: 15px;
    text-align: center;
    width: 27px;
    transition: all ease 0.4s;
}



.feature-style2 {
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
}

    .feature-style2 .feature-img {
        position: relative;
        overflow: hidden;
    }

        .feature-style2 .feature-img img {
            width: 100%;
        }

        .feature-style2 .feature-img:before {
            content: "";
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            left: 0;
            background-color: rgb(0 0 0 / 0%);
            transition: all ease 0.4s;
        }

    .feature-style2 .feature-content {
        bottom: 0;
        padding: 0px 30px 90px;
        position: absolute;
        text-align: center;
        transform: translateY(230px);
        transition: all ease 0.6s;
    }

    .feature-style2 .feature-icon {
        display: block;
        margin-bottom: 14px;
    }

    .feature-style2 .feature-title {
        color: #ffffff;
        font-size: 18px;
        margin-bottom: 38px;
        background: #195c90;
        padding: 10px;
        width: 60%;
        display: flex;
        justify-content: center;
        border-radius: 4px;
    }

        .feature-style2 .feature-title a {
            color: inherit;
        }

            .feature-style2 .feature-title a:hover {
                color: #ffffff;
            }

    .feature-style2 .feature-text {
        color: #ffffff;
        font-weight: 500;
        margin-bottom: 40px;
        opacity: 0;
        transition: all ease 0.6s;
    }

    .feature-style2 .feature-link {
        color: #000 !important;
        /* font-weight: bold; */
        text-decoration: underline;
        opacity: 0;
        transition: all ease 0.6s;
        background-color: #f5bb29;
        padding: 14px;
        border-radius: 5px;
    }

        .feature-style2 .feature-link i {
            border: 1px solid #ffffff;
            border-radius: 50%;
            color: #ffffff;
            height: 27px;
            line-height: 27px;
            margin-left: 15px;
            text-align: center;
            width: 27px;
            transition: all ease 0.4s;
        }

        .feature-style2 .feature-link:hover {
            color: #ffffff;
        }

            .feature-style2 .feature-link:hover i {
                background-color: #195c90;
                color: #fff;
                border-color: rgba(0, 0, 0, 0);
            }

    .feature-style2:hover .feature-img:before {
        background-color: #195c90b3;
    }

    .feature-style2:hover .feature-content {
        transform: translateY(0);
    }

    .feature-style2:hover .feature-text,
    .feature-style2:hover .feature-link {
        opacity: 1;
    }


.border-new {
    /* background-color: #f5bb29; */
    /* border-radius: 4px; */
    /* box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5); */
    /* border: 1px solid #000; */
    padding: 7px;
    /*width: 33%;*/
    margin-bottom: 8px;
}

.rank-1 {
    border-top: 2px solid #195c90;
    border-bottom: 2px solid #195c90;
    padding-bottom: 13px;
    margin: 10px 11px 7px 0px;
}

.award_box {
    transition: all 0.3s ease-in-out;
    text-align: center;
}

    .award_box:hover {
        transform: translateY(-5px);
    }

/*feature-style2*/

.bg-new {
    /*background-image: url('../../welcome-bg.png');*/
    background-image: url('../../home.png');
}

.tsm-card {
    padding: 10px;
    /* padding: 30px 30px 30px 30px; */
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: #efefef;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
    margin-bottom: 19px;
    background-color: #ffffff;
    background-image: url('../../welcome-bg.png');
    background-image: linear-gradient(rgb(255 255 255 / 73%), rgb(255 252 252 / 72%)), url(../../bg-slider.png);
    /*background-image: url('../../bg-slider.png');*/
    background-repeat: no-repeat;
    background-size: cover;
}

.study_box {
    transition: all 0.3s ease-in-out;
}

    .study_box:hover {
        transform: translateY(-5px);
    }

.bg-sky {
    background-color: #fdfff7;
}
/*counter*/

th,
td {
    margin: 0;
    padding: 0;
    font-size: 13px;
    direction: ltr;
}

.sectionClass {
    padding: 1px 0px 0px 0px;
    position: relative;
    display: block;
}

.fullWidth {
    width: 100% !important;
    display: table;
    float: none;
    padding: 0;
    min-height: 1px;
    height: 100%;
    position: relative;
}

.sectiontitle {
    background-position: center;
    margin: 30px 0 0px;
    text-align: center;
    min-height: 20px;
}

    .sectiontitle h2 {
        font-size: 30px;
        color: #222;
        margin-bottom: 0px;
        padding-right: 10px;
        padding-left: 10px;
    }

.headerLine {
    width: 160px;
    height: 2px;
    display: inline-block;
    background: #101f2e;
}

.projectFactsWrap {
    display: flex;
    margin-top: 0px;
    flex-direction: row;
    flex-wrap: wrap;
}

#projectFacts .fullWidth {
    padding: 0;
}

.projectFactsWrap .item {
    width: 33%;
    height: 100%;
    padding: 20px 0px;
    text-align: center;
}

    .projectFactsWrap .item:nth-child(1) {
        /* background: rgb(16, 31, 46); */
    }

    .projectFactsWrap .item:nth-child(2) {
        /* background: rgb(18, 34, 51); */
    }

    .projectFactsWrap .item:nth-child(3) {
        /* background: rgb(21, 38, 56); */
    }

    .projectFactsWrap .item:nth-child(4) {
        background: rgb(23, 44, 66);
    }

    .projectFactsWrap .item p.number {
        font-size: 30px;
        padding: 8px 0px 0px;
        font-weight: 700;
        font-family: 'Montserrat';
    }

    .projectFactsWrap .item p {
        color: rgb(25 92 144);
        font-size: 18px;
        margin: 0;
        padding: 5px 0px 0px;
        font-family: 'Montserrat';
        text-transform: capitalize;
        font-weight: 500;
    }

    .projectFactsWrap .item span {
        width: 60px;
        background: rgb(25 92 144);
        height: 2px;
        display: block;
        margin: 0 auto;
    }

    .projectFactsWrap .item i {
        vertical-align: middle;
        font-size: 60px;
        color: rgb(245 187 41);
        margin-bottom: 15px;
    }

    .projectFactsWrap .item:hover i,
    .projectFactsWrap .item:hover p {
        /* color: white; */
    }

    .projectFactsWrap .item:hover span {
        /* background: white; */
    }

.border-leader {
    border: 2px solid #195c90;
    text-align: center;
    border-radius: 5px;
}


.mt-10 {
    margin-top: 132px;
}


.list-group-item {
    text-align: left !important;
}

.labs {
    height: 480px;
}



@media screen and (min-width:768px) and (max-width:900px) {
    .btn-holder {
        display: flex;
        width: 100%;
    }

    .gallery img {
        height: 126px !important;
        object-fit: cover !important;
        margin: 2px;
        flex: 1 0 auto;
    }

    .expr {
        position: absolute;
        color: #0f0000;
        font-size: 16px;
    }

    .testimonial_content h1 {
        font: normal normal 800 21px Montserrat;
        letter-spacing: 10px;
        color: var(--yellow-color);
        margin-left: 46px;
    }

    .tsm-green {
        color: #fff;
        font-size: 16px !important;
        font-weight: 600;
    }

    .latest_box {
        background-color: var(--blue-color);
        display: flex;
        position: relative;
        padding: 7px;
        border-radius: 7px;
        margin-top: -7px;
        margin-left: -50px;
    }

    .testimonial_content p, .name_testi h4 {
        font: normal normal 400 13px / 23px Montserrat;
    }

    .testimonial_content h2 {
        font: normal normal 800 26px Montserrat;
        letter-spacing: 10px;
    }
}










@media (max-width: 767px) {
    .projectFactsWrap .item {
        flex: 3 0 50%;
    }

    .feature-style2 .feature__box .feature-title {
        margin: 0 auto 0px !important;
    }

    .feature-style2 .feature-content {
        bottom: 0;
        padding: 0px 10px 140px !important;
    }


    .feature-style2 .feature-title {
        color: #ffffff;
        font-size: 18px;
        margin-bottom: 38px;
        background: #195c90;
        padding: 10px;
        width: 100%;
        display: flex;
        justify-content: center;
        border-radius: 4px;
    }







    .mt-10 {
        margin-top: 2px;
    }

    .labs {
        height: auto;
    }
}




.about-me-img {
    width: 120px;
    height: 120px;
    left: 10px;
    /* bottom: 30px; */
    position: relative;
    border-radius: 100px;
}

    .about-me-img img {
    }

.authorWindow {
    width: 600px;
    background: #75439a;
    padding: 22px 20px 22px 20px;
    border-radius: 5px;
    overflow: hidden;
}

.authorWindowWrapper {
    display: none;
    left: 110px;
    top: 0;
    padding-left: 25px;
    position: absolute;
}

.trans {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media screen and (max-width: 768px) {
    .authorWindow {
        width: 210px;
    }

    .authorWindowWrapper {
        bottom: -170px;
        margin-bottom: 20px;
    }
}

.counter-border {
    padding: 10px;
    /* padding: 30px 30px 30px 30px; */
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: #efefef;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
    margin-bottom: 19px;
    background-color: #ffffff;
    background-image: url(../../welcome-bg.png);
    background-image: linear-gradient(rgb(255 255 255 / 73%), rgb(255 252 252 / 72%)), url(../../bg-slider.png);
    /* background-image: url(../../bg-slider.png); */
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 11px;
    transition: all 0.3s ease-in-out;
}

    .counter-border:hover {
        transform: translateY(-5px);
    }

ul.more_info.new-s {
    background-color: #ffffff;
    border-radius: 5px;
    position: absolute;
}

.history-facts ul {
    list-style: none;
    text-align: left;
}

    .history-facts ul li {
        border-bottom: 1px solid #ededed;
        padding: 15px 5px;
    }

        .history-facts ul li a:after {
            content: "";
            background: url(../../icons/arrow-right-light.svg);
            background-repeat: no-repeat;
            position: absolute;
            width: 30px;
            height: 20px;
            right: 0;
            transform: translateX(-10px);
            transition: all .4s;
            top: 7px;
        }

        .history-facts ul li a {
            position: relative;
            display: block;
            color: #000;
            font-size: 20px;
            font-weight: 500;
        }

/*end counter*/


/*accordion*/



ul.accordion-list {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 20px;
    margin: 0;
    list-style: none;
    background-color: #f9f9fA;
}

    ul.accordion-list li {
        position: relative;
        display: block;
        width: 100%;
        height: auto;
        background-color: #FFF;
        padding: 20px;
        margin: 0 auto 15px auto;
        border: 1px solid #eee;
        border-radius: 5px;
        cursor: pointer;
    }

        ul.accordion-list li.active h3:after {
            transform: rotate(45deg);
        }

        ul.accordion-list li h3 {
            font-weight: 700;
            position: relative;
            display: block;
            width: 100%;
            height: auto;
            padding: 0 0 0 0;
            margin: 0;
            font-size: 15px;
            letter-spacing: 0.01em;
            cursor: pointer;
            text-align: left;
        }

            ul.accordion-list li h3:after {
                content: "+";
                position: absolute;
                right: 0;
                top: 0;
                color: #195c90;
                transition: all 0.3s ease-in-out;
                font-size: 18px;
            }

        ul.accordion-list li div.answer {
            position: relative;
            display: block;
            width: 100%;
            height: auto;
            margin: 0;
            padding: 0;
            cursor: pointer;
        }

            ul.accordion-list li div.answer p {
                position: relative;
                display: block;
                font-weight: 300;
                padding: 10px 0 0 0;
                cursor: pointer;
                line-height: 150%;
                margin: 0 0 15px 0;
                font-size: 16px;
            }


/*end accordion*/

.admissons-page .programme-facts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.programme-facts li .fact-no {
    color: #195c90;
    font-size: 32px;
    font-weight: 700;
    text-align: left;
}

.programme-facts li .fact-des {
    color: #195c90;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}

.programme-facts ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.programme-facts li {
    padding: 20px 0;
    border-bottom: 1px solid rgb(20 1 1);
}

.left-pattern::before {
    background-image: url('../../icons/self-pattern.svg');
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-position: top right;
    background-repeat: no-repeat;
    height: 100%;
    width: 24vw;
    background-size: cover;
    z-index: 0;
}

.section-red {
    background: #195c90;
    position: relative;
}

.propectus-btn {
    position: relative;
    right: 67px;
    bottom: 0;
    top: 0px;
}

    .propectus-btn a img {
        width: 49px;
        height: 21px;
    }

    .propectus-btn a {
        width: 480px;
        height: 80px;
        display: flex;
        justify-content: space-between;
        color: #080708;
        font-size: 24px;
        line-height: 160%;
        align-items: center;
        position: relative;
        transform: rotate(0deg);
        bottom: 0;
        right: 0;
        border-radius: 0;
        left: 0;
        top: 0;
    }

.history-about a {
    position: absolute;
    display: flex;
    width: 100%;
    height: 76px;
    padding: 27.369px 16.911px 26.079px 17.137px;
    justify-content: center;
    align-items: center;
    /* border-radius: 100px; */
    background: #f5bb29;
    color: #231f20;
    font-size: 14px;
    /* transform: rotate(-30deg); */
    top: -79px;
    left: 9%;
    font-size: 27px;
    font-weight: 600;
}


/*apply now*/
.banner-section {
    background-image: linear-gradient(rgb(255 255 255 / 77%), rgb(255 255 255)), url(../images/slider/01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    /* border-top: 5px solid #f58121; */
    height: 570px;
}

.logo_sec {
    text-align: center;
}

.lpu_admit {
    font-weight: 600;
    font-size: 18px;
    padding-top: 25px;
    padding-bottom: 5px;
}
/*end apply now*/


.b_content_sec {
    /* padding: 10px; */
    /* padding: 30px 30px 30px 30px; */
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: #efefef;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
    margin-bottom: 19px;
    background-color: #ffffff9e;
    /* background-image: url(../../welcome-bg.png); */
    /* background-image: linear-gradient(rgb(255 255 255 / 73%), rgb(255 252 252 / 72%)), url(../../bg-slider.png); */
    /* background-image: url(../../bg-slider.png); */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
}


/*form icons*/

.clearfix:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
}

.form_wrapper {
    border: 2px solid #195c90;
    background: #f5f9fc;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 25px;
    margin: 7% auto 0;
    position: relative;
    z-index: 1;
    /* border-top: 5px solid #195c90; */
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition: none;
    transition: none;
    /* -webkit-animation: expand 0.8s 0.6s ease-out forwards; */
    /* animation: expand 0.8s 0.6s ease-out forwards; */
    /* opacity: 0; */
}

    .form_wrapper h2 {
        font-size: 1.5em;
        line-height: 1.5em;
        margin: 0;
    }

    .form_wrapper .title_container {
        text-align: center;
        padding-bottom: 15px;
    }

    .form_wrapper h3 {
        font-size: 1.1em;
        font-weight: normal;
        line-height: 1.5em;
        margin: 0;
    }

    .form_wrapper label {
        font-size: 16px;
    }

    .form_wrapper .row {
        margin: 10px -15px;
    }

        .form_wrapper .row > div {
            padding: 0 15px;
            box-sizing: border-box;
        }

    .form_wrapper .col_half {
        width: 50%;
        float: left;
    }

    .form_wrapper .input_field {
        position: relative;
        margin-bottom: 20px;
        -webkit-animation: bounce 0.6s ease-out;
        animation: bounce 0.6s ease-out;
    }

        .form_wrapper .input_field > span {
            position: absolute;
            left: 0;
            top: 0;
            color: #195c90;
            height: 100%;
            border-right: 1px solid #cccccc;
            text-align: center;
            width: 30px;
        }

            .form_wrapper .input_field > span > i {
                padding-top: 10px;
            }

    .form_wrapper .textarea_field > span > i {
        padding-top: 10px;
    }

    .form_wrapper input[type=text], .form_wrapper input[type=email], .form_wrapper input[type=password] {
        width: 100%;
        padding: 8px 10px 9px 35px;
        height: 35px;
        border: 1px solid #cccccc;
        box-sizing: border-box;
        outline: none;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

        .form_wrapper input[type=text]:hover, .form_wrapper input[type=email]:hover, .form_wrapper input[type=password]:hover {
            background: #fafafa;
        }

        .form_wrapper input[type=text]:focus, .form_wrapper input[type=email]:focus, .form_wrapper input[type=password]:focus {
            -webkit-box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
            -moz-box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
            box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
            border: 1px solid #f5ba1a;
            background: #fafafa;
        }

    .form_wrapper input[type=submit] {
        background: #195c90;
        height: 35px;
        line-height: 35px;
        width: 100%;
        border: none;
        outline: none;
        cursor: pointer;
        color: #fff;
        font-size: 1.1em;
        margin-bottom: 10px;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

        .form_wrapper input[type=submit]:hover {
            background: #195c90;
        }

        .form_wrapper input[type=submit]:focus {
            background: #e1a70a;
        }

    .form_wrapper input[type=checkbox], .form_wrapper input[type=radio] {
        border: 0;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 20px;
    }

.form_container .row .col_half.last {
    border-left: 1px solid #cccccc;
}

.checkbox_option label {
    margin-right: 1em;
    position: relative;
}

    .checkbox_option label:before {
        content: "";
        display: inline-block;
        width: 14px;
        height: 14px;
        margin-right: 0.5em;
        vertical-align: -2px;
        border: 2px solid #cccccc;
        padding: 0.12em;
        background-color: transparent;
        background-clip: content-box;
        transition: all 0.2s ease;
    }

    .checkbox_option label:after {
        border-right: 2px solid #000000;
        border-top: 2px solid #000000;
        content: "";
        height: 20px;
        left: 3px;
        position: absolute;
        top: 13px;
        transform: scaleX(-1) rotate(135deg);
        transform-origin: left top;
        width: 7px;
        display: none;
    }

.checkbox_option input:hover + label:before {
    border-color: #000000;
}

.checkbox_option input:checked + label:before {
    border-color: #000000;
}

.checkbox_option input:checked + label:after {
    -moz-animation: check 0.8s ease 0s running;
    -webkit-animation: check 0.8s ease 0s running;
    animation: check 0.8s ease 0s running;
    display: block;
    width: 4px;
    height: 7px;
    border-color: #000000;
}

.radio_option label {
    margin-right: 1em;
}

    .radio_option label:before {
        content: "";
        display: inline-block;
        width: 0.5em;
        height: 0.5em;
        margin-right: 0.5em;
        border-radius: 100%;
        vertical-align: -3px;
        border: 2px solid #cccccc;
        padding: 0.15em;
        background-color: transparent;
        background-clip: content-box;
        transition: all 0.2s ease;
    }

.radio_option input:hover + label:before {
    border-color: #000000;
}

.radio_option input:checked + label:before {
    background-color: #000000;
    border-color: #000000;
}

.select_option {
    position: relative;
    width: 100%;
}

    .select_option select {
        display: inline-block;
        width: 100%;
        height: 35px;
        padding: 0px 36px;
        cursor: pointer;
        color: #7b7b7b;
        border: 1px solid #cccccc;
        border-radius: 0;
        background: #fff;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        transition: all 0.2s ease;
    }

        .select_option select::-ms-expand {
            display: none;
        }

        .select_option select:hover, .select_option select:focus {
            color: #000000;
            background: #fafafa;
            border-color: #000000;
            outline: none;
        }

.select_arrow {
    position: absolute;
    top: calc(50% - 4px);
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-width: 8px 5px 0 5px;
    border-style: solid;
    border-color: #7b7b7b transparent transparent transparent;
}

.select_option select:hover + .select_arrow, .select_option select:focus + .select_arrow {
    border-top-color: #000000;
}

.credit {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 15px;
    color: #f5ba1a;
}

    .credit a {
        color: #e1a70a;
    }

@-webkit-keyframes check {
    0% {
        height: 0;
        width: 0;
    }

    25% {
        height: 0;
        width: 7px;
    }

    50% {
        height: 20px;
        width: 7px;
    }
}

@keyframes check {
    0% {
        height: 0;
        width: 0;
    }

    25% {
        height: 0;
        width: 7px;
    }

    50% {
        height: 20px;
        width: 7px;
    }
}

@-webkit-keyframes expand {
    0% {
        -webkit-transform: scale3d(1, 0, 1);
        opacity: 0;
    }

    25% {
        -webkit-transform: scale3d(1, 1.2, 1);
    }

    50% {
        -webkit-transform: scale3d(1, 0.85, 1);
    }

    75% {
        -webkit-transform: scale3d(1, 1.05, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

@keyframes expand {
    0% {
        -webkit-transform: scale3d(1, 0, 1);
        transform: scale3d(1, 0, 1);
        opacity: 0;
    }

    25% {
        -webkit-transform: scale3d(1, 1.2, 1);
        transform: scale3d(1, 1.2, 1);
    }

    50% {
        -webkit-transform: scale3d(1, 0.85, 1);
        transform: scale3d(1, 0.85, 1);
    }

    75% {
        -webkit-transform: scale3d(1, 1.05, 1);
        transform: scale3d(1, 1.05, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

@-webkit-keyframes bounce {
    0% {
        -webkit-transform: translate3d(0, -25px, 0);
        opacity: 0;
    }

    25% {
        -webkit-transform: translate3d(0, 10px, 0);
    }

    50% {
        -webkit-transform: translate3d(0, -6px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 2px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes bounce {
    0% {
        -webkit-transform: translate3d(0, -25px, 0);
        transform: translate3d(0, -25px, 0);
        opacity: 0;
    }

    25% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    50% {
        -webkit-transform: translate3d(0, -6px, 0);
        transform: translate3d(0, -6px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 2px, 0);
        transform: translate3d(0, 2px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .form_wrapper .col_half {
        width: 100%;
        float: none;
    }

    .bottom_row .col_half {
        width: 50%;
        float: left;
    }

    .form_container .row .col_half.last {
        border-left: none;
    }

    .remember_me {
        padding-bottom: 20px;
    }
}
/*end form icons*/



.reg-form {
    margin-top: 44px;
    padding: 10px;
    /* padding: 30px 30px 30px 30px; */
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: #efefef;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
    /* margin-bottom: 19px; */
    background-color: #ffffff;
    background-image: url(../../welcome-bg.png);
    background-image: linear-gradient(rgb(255 255 255 / 73%), rgb(255 252 252 / 72%)), url(../../bg-slider.png);
    /* background-image: url(../../bg-slider.png); */
    background-repeat: no-repeat;
    background-size: cover;
}


a.tsm-green {
    color: #fff;
    font-size: 21px;
    font-weight: 600;
}

.business {
    padding: 30px 15px 25px 15px;
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: #efefef;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
    margin-bottom: 19px;
    background-color: #ffffff;
    background-image: url(../../welcome-bg.png);
    background-image: linear-gradient(rgb(255 255 255 / 73%), rgb(255 252 252 / 72%)), url(../../bg-slider.png);
    /* background-image: url(../../bg-slider.png); */
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s ease-in-out;
    text-align: center;
    min-height: 460px;
}

    .business:hover {
        transform: translateY(-5px);
    }

.Experienced {
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 0px;
    margin: 0;
    font-weight: 600;
}

.page__title {
    /*padding: 174px 0px;*/
    padding: 150px 0px;
}

.icons-f {
    background-color: #f69f2e;
    color: #ffffff;
    border-radius: 50px;
    width: 85px;
    height: 85px;
    margin: 1px auto;
    margin-bottom: 8px;
    padding: 25px 25px 19px 25px;
    font-size: 10px;
    border: 3px solid #ffffff;
    box-shadow: rgb(34 84 123 / 28%) 0px 8px 24px;
}

.read-more {
    border: 1px solid #fff !important;
    color: #fff !important;
    padding: 15px !important;
}

.height-new {
    height: 321px;
    width: 100%;
    object-fit: cover;
    border: 4px solid #195c90;
}


/*card-new*/
.feature-style5 {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 7px;
}

    .feature-style5, .feature-style5 .feature-img {
        position: relative;
        /* margin-bottom: 8px; */
    }

        .feature-style5 img {
            transform: scale(1);
            transition: all .4s ease
        }

        .feature-style5 .feature-content {
            bottom: 0;
            left: 0;
            position: absolute;
            right: 0;
            top: 0;
            transition: all .4s ease
        }

        .feature-style5 .text, .feature-style5 .title, .feature-style5 .ud-btn2 {
            color: #fff
        }

        .feature-style5 .ud-btn2 {
            font-size: 14px;
            font-weight: 400
        }

        .feature-style5 .bottom-area {
            transform: translateY(50px);
            transition: all .4s ease
        }

        .feature-style5 .top-area {
            padding-left: 30px;
            position: absolute;
            top: 0px;
            background-color: #f5bb29;
            /* font-size: 40px; */
            padding: 6px;
            /* border-bottom-right-radius: 26px; */
        }

        .feature-style5 .bottom-area {
            left: 30px;
            bottom: 30px;
            position: absolute
        }

        .feature-style5:hover .feature-content {
            background-color: rgba(24,26,32,.6)
        }

        .feature-style5:hover .bottom-area {
            transform: translateY(0)
        }

        .feature-style5:hover img {
            transform: scale(1.1) rotate(-1deg)
        }

.feature-style2 {
    position: relative
}

.feature-style5 .feature-img {
    border-radius: 12px;
    overflow: hidden;
    position: relative
}

.feature-style5 img {
    transform: scale(1);
    transition: all .4s ease
}

.feature-style5 .text, .feature-style2 .title {
    color: var(--headings-color);
    font-family: var(--title-font-family)
}

.feature-style5:hover img {
    transform: scale(1.1) rotate(-1deg)
}

.feature-style5 {
    position: relative
}

    .feature-style5 .feature-img {
        overflow: hidden;
        position: relative
    }

    .feature-style5 img {
        transform: scale(1)
    }

    .feature-style5 .feature-content, .feature-style3 img {
        transition: all .4s ease
    }

    .feature-style5:hover img {
        transform: scale(1.1) rotate(-1deg)
    }

.why-chose-list {
    position: relative
}

    .why-chose-list .list-one .list-icon {
        background-color: hsla(8,79%,62%,.07);
        border-radius: 50%;
        color: #eb6753;
        display: block;
        font-size: 30px;
        height: 70px;
        line-height: 80px;
        text-align: center;
        width: 70px;
        transition: all .4s ease
    }

    .why-chose-list .list-one:hover .list-icon {
        background-color: #eb6753;
        color: #fff
    }

    .why-chose-list.style2 .list-one:hover .list-icon {
        background-color: hsla(8,79%,62%,.6);
        color: #fff
    }

    .why-chose-list.style2 .list-icon {
        color: var(--headings-color)
    }

    .why-chose-list.style3 .list-icon {
        background-color: #f7f7f7;
        color: var(--headings-color)
    }

.home9-city-style {
    position: relative;
    padding: 20px;
    transition: all .4s ease
}

    .home9-city-style:hover {
        border-radius: 12px;
        -o-box-shadow: 0 10px 40px rgba(24,26,32,.05);
        box-shadow: 0 10px 40px rgba(24,26,32,.05)
    }

.form-style1 {
    position: relative
}

    .form-style1 .form-control {
        border-radius: 8px;
        border: 1px solid #ddd;
        box-shadow: none;
        font-size: 14px;
        height: 55px;
        outline: none;
        padding-left: 15px
    }

        .form-style1 .form-control::placeholder {
            color: #717171;
            font-family: var(--title-font-family)
        }

        .form-style1 .form-control.active, .form-style1 .form-control:focus {
            border: 1px solid transparent;
            outline: 2px solid var(--headings-color);
            color: var(--headings-color)
        }

    .form-style1 .form-label {
        font-family: var(--title-font-family)
    }

    .form-style1 .custom_checkbox {
        line-height: 26px
    }

        .form-style1 .custom_checkbox .checkmark {
            top: 7px
        }

    .form-style1 .form-select {
        height: 50px
    }

        .form-style1 .form-select option {
            font-size: 14px;
            font-family: var(--title-font-family);
            font-weight: 400;
            height: 50px;
            border-bottom: 1px solid #ddd;
        }

            .form-style1 .form-select option:hover {
                background-color: hsla(8,79%,62%,.07)
            }

        .form-style1 .form-select:before {
            background-color: #ddd;
            content: "";
            position: absolute;
            height: 50px;
            right: 30px;
            width: 1px
        }

.form-style2 {
    position: relative
}

.title.mb-1 {
    color: #000000;
    font-weight: 600;
    font-size: 14px;
}
/*end card new*/



.p-3 {
    padding: 8px !important;
}

.mb-3 {
    margin-bottom: 4px !important;
}

.small, small {
    font-size: 13px;
    font-weight: 700;
}

.nav-pills-custom .nav-link {
    color: #fff;
    background: #195c90;
    position: relative;
}

div#v-pills-tabContent {
    /*border-radius: 2px;
    border: 3px solid #195c90;*/
    padding: 0px 10px;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #f5ba29;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
    margin-bottom: 19px;
    background-color: #ffffff;
    /* background-image: url(../../welcome-bg.png); */
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: none !important;
}

.nav-pills-custom .nav-link.active {
    color: #000000;
    background: #f5bb29;
}

/* Add indicator arrow for the active tab */
@media (min-width: 992px) {
    .nav-pills-custom .nav-link::before {
        content: "";
        display: block;
        border-top: 8px solid transparent;
        border-left: 10px solid #f5bb29;
        border-bottom: 8px solid transparent;
        position: absolute;
        top: 50%;
        right: -10px;
        transform: translateY(-50%);
        opacity: 0;
    }
}

.nav-pills-custom .nav-link.active::before {
    opacity: 1;
}





@media screen and (max-width:767px) {
    .btn span {
        position: relative;
        display: inline-block;
        font-size: 11px !important;
        font-weight: bold;
        letter-spacing: 2px;
        text-transform: uppercase;
        top: 0;
        left: 0;
        width: 100%;
        padding: 15px 5px;
        transition: 0.3s;
    }

    .tsm-card {
        margin-top: 10px;
    }

    .sub_heading {
        font-size: 25px;
        color: #195c90;
        text-transform: uppercase;
        font-weight: 700;
        text-align: center;
        line-height: 37px;
    }

    .school_of-phr .sub_heading {
        color: #fff !important;
    }

    .gallery img {
        height: auto !important;
        object-fit: cover !important;
        margin: 2px;
        flex: 1 0 auto;
        width: 100% !important;
    }

    .projectFactsWrap .item {
        /* width: 100% !important; */
        height: 100%;
        padding: 4px 0px;
        text-align: center;
        margin-left: 9px;
    }

    .history-facts ul li a {
        position: relative;
        display: block;
        color: #000;
        font-size: 13px;
        font-weight: 600;
    }

    .banner-section {
        height: auto;
    }


    .feature-style2 .feature-content {
        top: 70px !important;
        /* padding: 0px 30px 90px; */
        position: absolute !important;
        /* text-align: center; */
        /* transform: translateY(230px); */
        /* transition: all ease 0.6s; */
    }
}













@media screen and (min-width:1400px) and (max-width:2000px) {
    .gallery img {
        height: 261px !important;
    }
}

.feature-link {
    color: #195c90 !important;
    font-weight: bold;
    text-decoration: underline;
    transition: all ease 0.6s;
    background-color: #f5bb29;
    padding: 10px 10px;
    border-radius: 5px;
}

.for_innerpg .course-style1.has-border {
    padding-bottom: 30px;
}

.feature-style2 .feature__box .feature-title {
    margin: 0 auto 40px;
}

.navbar-expand-lg .navbar-nav .dropdown-toggle::after {
    color: #ff000000;
}

.school_of-phr .para__s {
    color: white;
}

ul.list__sob.notes_ll li {
    font-weight: unset;
}

@media screen and (min-width:320px) and (max-width:991px) {
    .page__title {
        padding: 50px 0px !important;
    }

    .page-title {
        background-size: cover !important;
        background-color: #195c90 !important;
        background-image: unset !important;
    }
}

@media screen and (min-width:1199px) and (max-width:1370px) {
    .page__title {
        padding: 120px 0px !important;
    }
}


.btn-3 span.pga {
    font-size: 13px;
    /* color: black !important; */
}

@media (max-width: 767px) {
    .business_two {
        min-height: auto !important;
    }

    .pds {
        padding: 35px 0px 35px;
    }
}

@media (max-width: 420px) {
    .page-title h1 {
        position: relative;
        font-size: 25px;
        line-height: 30px !important;
        font-weight: 600;
        margin-bottom: 0;
        letter-spacing: 1px;
        color: #ffffff;
        text-transform: capitalize;
    }

    h3.my_page_title {
        font-size: 20px !important;
        color: #000406 !important;
        margin-bottom: 10px !important;
        position: relative !important;
        font-weight: 700 !important;
        margin-top: 15px;
    }
}


@media (max-width: 500px) {
    .feature-style2 .feature-content {
        top: -30px !important;
        position: absolute !important;
    }
}

.course-metas {
    text-align: center;
    background: #195c90;
    padding: 10px 0px;
    color: #fff;
}


.history-facts ul li span {
    position: relative;
    display: block;
    color: #000;
    font-size: 20px;
    font-weight: 500;
}



.tsmzooms {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 0px 2px -4px, rgba(0, 0, 0, 0.3) 0px 0px 2px 0px;
    margin-top: 25px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid silver;
    padding: 0px;
    background: #195c90;
    min-height: 230px;
}

.business_two {
    padding: 25px 15px 15px 15px;
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: #efefef;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
    margin-bottom: 19px;
    background-color: #ffffff;
    background-image: url(../../welcome-bg.png);
    background-image: linear-gradient(rgb(255 255 255 / 73%), rgb(255 252 252 / 72%)), url(../../bg-slider.png);
    /* background-image: url(../../bg-slider.png); */
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s ease-in-out;
    text-align: center;
    min-height: 373px;
}

.img_s img {
    margin-bottom: 8px;
}

.mob_apply {
    background: #195c90;
    padding: 10px 9px;
    color: #fff;
    border-radius: 6px;
}

    .mob_apply:hover {
        color: #fff;
    }

/* ===========================
   Large Desktop
=========================== */
@media (min-width:1400px) {

    .container {
        max-width: 1320px;
    }

    .feature-style2 .feature-content {
        padding: 0 30px 70px;
    }

    .business,
    .business_two {
        min-height: 420px;
    }
}

/* ===========================
   Laptop
=========================== */
@media (max-width:1199px) {

    .business,
    .business_two {
        min-height: auto;
    }

    .feature-style2 .feature-content {
        padding: 0 20px 60px;
    }

    .course-style1 .course-content {
        padding: 20px;
    }

    .page__title {
        padding: 100px 0;
    }
}

/* ===========================
   Tablet
=========================== */
@media (max-width:991px) {

    .page__title {
        padding: 70px 0;
    }

    .business,
    .business_two {
        min-height: auto;
    }

    .feature-style2 .feature-content {
        position: absolute;
        top: 40px;
        transform: translateY(0);
        padding: 0 15px;
    }

    .feature-style2 .feature-title {
        width: 100%;
        font-size: 16px;
    }

    .projectFactsWrap .item {
        width: 50%;
    }

    .gallery img {
        width: 100%;
        height: auto !important;
    }

    .btn span {
        font-size: 12px;
        padding: 12px;
    }
}

/* ===========================
   Mobile
=========================== */
@media (max-width:767px) {

    .page__title {
        padding: 50px 0;
    }

    .feature-style2 .feature-content {
        position: absolute;
        top: 30px;
        padding: 0 10px;
    }

    .feature-style2 .feature-title {
        width: 100%;
        font-size: 15px;
        margin-bottom: 15px;
    }

    .projectFactsWrap .item {
        width: 100%;
    }

    .course-style1 .course-content {
        padding: 15px;
    }

    .business,
    .business_two {
        min-height: auto;
        padding: 20px 15px;
    }

    .btn {
        min-width: 120px;
    }

        .btn span {
            font-size: 11px;
            letter-spacing: 1px;
        }

    .height-new {
        height: auto;
    }
}

/* ===========================
   Small Mobile
=========================== */
@media (max-width:480px) {

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    .feature-style2 .feature-content {
        top: 10px;
    }

    .feature-style2 .feature-title {
        font-size: 14px;
        padding: 8px;
    }

    .btn span {
        font-size: 10px;
        padding: 10px;
    }

    .icons-f {
        width: 70px;
        height: 70px;
        padding: 18px;
    }

    .page-title h1 {
        font-size: 24px;
        line-height: 30px;
    }
}