.media_photos_section {
    width: 100%;
    position: relative;
}

.media_photos_section .inner {
    width: 100%;
    margin-bottom: 24px;
}

.media_photos_section .inner img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.media_videos_section {
    width: 100%;
    position: relative;
    margin-bottom: 24px;
}

.media_videos_section .inner {
    width: 100%;
    margin-bottom: 10px;
}

.media_videos_section .inner img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.video_thumb {
    position: relative;

}

.video_playBtn {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    top: 0;
    left: 0;
}

.button_player {
    display: inline-block;
    position: relative;
}

.button_player.is-play {
    background-color: #004795;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    cursor: pointer;
}

.button_player.is-play .button-outer-circle {
    /* background: rgba(255,255,255,0.2); */
    background: rgb(0 71 149 / 90%);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.button_player.is-play .button-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
}

.button_player.is-play .button-icon .triangle {
    -webkit-animation: fadeIn 7s ease;
    animation: fadeIn 7s ease;
}

.button_player.is-play .button-icon .path {
    stroke-dasharray: 90;
    stroke-dashoffset: 0;
    -webkit-animation: triangleStroke 3s;
    animation: triangleStroke 3s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
}

.has-scale-animation {
    -webkit-animation: smallScale 3s infinite;
    animation: smallScale 3s infinite;
}

.has-delay-short {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

.video_title {
    padding-left: 5px;
}

.video_title h5 {
    font-size: 20px;
    margin-bottom: 0px;
}

.video_title p {
    font-size: 14px;
    margin-bottom: 0;
    color: #857a7a;
}

/* User Feedback Section */
.feedback_sections {
    position: relative;
    height: 100%;
}

/* .section_overlay{
    position: absolute;
    bottom: 50%;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: #000;
} */
.user_feedback_box {
    padding: 20px;
    background: #fff;
    /* border: 1px solid #ece8e4; */
    border-radius: 15px;
    margin-bottom: 24px;
    min-height: 250px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 6px 16px;
}

.feedback_header_part {
    display: flex;
    /* align-items: center; */
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.user_logo_name_side {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user_logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

.user_dteail h6 {
    font-size: 17px;
    margin-bottom: 0;
}

.user_dteail span {
    font-size: 12px;
    margin-bottom: 0;
    line-height: 16px;
}

.feedback_date span {
    font-size: 13px;
    font-weight: 500;
}

.feedback_body p {
    margin-bottom: 0;
    color: #000;
}

/* About Page Design */
.page_content_button {
    width: 100%;

    position: sticky;
    top: 0;
    left: 0;
}

.page_content_details {
    height: 100%;
}

.page_content_button .nav-pills .nav-link {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
    padding: 20px;
    background-color: #e7f4f6;
    margin-bottom: 10px;
    border-radius: 10px;
}

.page_content_button .nav-pills .nav-link.active {
    background-color: #004795;
    color: #fff;
}

.about_inner_details {
    width: 100%;
}

.about_inner_details {
    padding: 35px 30px;
    background: #fff;
    border: 1px solid #ece8e4;
    border-radius: 15px;
    margin-bottom: 24px;
}

.vission_inner_view {
    padding: 35px 30px;
    background: #fff;
    border: 1px solid #ece8e4;
    border-radius: 15px;
    margin-bottom: 24px;
}

.mission_inner_view {
    padding: 35px 30px;
    background: #fff;
    border: 1px solid #ece8e4;
    border-radius: 15px;
    margin-bottom: 24px;
}

.speacial_feature_view {
    padding: 35px 30px;
    background: #fff;
    border: 1px solid #ece8e4;
    border-radius: 15px;
    margin-bottom: 24px;
}

.mission_inner_view .mission_list {
    background-color: #e7f4f6;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    transition: .4s;
}

.mission_icon {
    width: 55px;
    height: 55px;
    color: #004795;
    font-size: 23px;
    background-color: #fff;
    border-radius: 50%;
    /* padding: 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.mission_inner_view .mission_list:hover {
    transform: translateY(-5px);
}

.mission_inner_view .mission_list:hover .mission_icon {
    background-color: #004795;
}

.mission_inner_view .mission_list:hover .mission_icon img {
    filter: invert(10)brightness(150);
}

.mission_inner_view .mission_list img {
    width: 24px;
    height: 24px;

}

.speatial_list li {
    text-align: left;
}

.speatial_list_icons {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #e7f4f6;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: .4s;
}

.speatial_list_icons img {
    height: 20px;
    height: 20px;
}

.speatial_list_icons:hover {
    transform: translateY(-5px);
}

.speatial_list_icons:hover .mission_icon{
    color: white;
}

.speatial_list_icons:hover .mission_icon {
    background-color: #004795;
}

.speatial_list_icons:hover .mission_icon img {
    filter: invert(10)brightness(150);
}

.section_image img {
    height: 400px;
    width: 100%;
    object-fit: contain;
    margin-top: 30px;
    background-color: #e7f4f6;
    border-radius: 10px;
}


/* Footer Icons */
.icon_effect {
    width: 32px;
    height: 32px;
    /* background-color: #717274; */
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.icon_effect:hover {
    background-color: #fff;
    border: 1px solid #fff;
}

.icon_effect:hover a {
    color: #004795 !important;
}

.icon_effect a {
    margin-right: 0 !important;
}

.header_media {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e7f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_media a {
    line-height: 0;
}

.header_media a i {
    font-size: 16px !important;
}

.headerNew .topHeader .socialMedias li {
    margin: 0 !important;
    margin-right: 8px !important;
}


.text_side_cols {
    padding: 35px 30px;
    background: #fff;
    border: 1px solid #ece8e4;
    border-radius: 15px;
    margin-bottom: 24px;
}

.supporting_image {
    width: 100%;
    margin: 30px 0px 20px;
}

.supporting_image img {
    width: 100%;
    border-radius: 15px;
}

.domestic_partner {
    width: 100%;
    background-color: #fff;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 24px;
    border: 1px solid #ece8e4;
}

.domestic_partner .inner {
    width: 100%;
}

.domestic_partner .inner img {
    height: 75px;
    width: 100%;
    object-fit: contain;
    display: block;
    margin: auto;
}
.domestic_job_portal {
    width: 100%;
    background-color: #fff;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 24px;
    border: 1px solid #ece8e4;
}

.domestic_job_portal .inner {
    width: 100%;
}

.domestic_job_portal .inner img {
    max-height: 305px;
    width: 100%;
    object-fit: contain;
    display: block;
    margin: auto;
}

.international_placement {
    background-color: #fff !important;
}

.international_partner {
    width: 100%;
    background-color: #eee;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 24px;
    border: 1px solid #ece8e4;
}

.international_partner .inner {
    width: 100%;
}

.international_partner .inner img {
    height: 75px;
    width: 100%;
    object-fit: contain;
    display: block;
    margin: auto;
}

.pt-35 {
    padding-top: 35px;
}

.pb-35 {
    padding-bottom: 35px;
}

.candidates_cards .courses__item-thumb img {
    max-height: 175px;
    object-fit: contain;
    background-color: #f6f4f6;
}

.candidates_cards .title {
    text-align: center;
}

.candidates_cards .author {
    justify-content: center;
}

.placed_candidate_tabs .nav-pills .nav-link {
    border-radius: 0px;
    font-size: 18px;
    font-weight: 500;
    background-color: transparent;
    margin-right: 15px;
    padding: 0px 0px 5px 0px;
}

.placed_candidate_tabs .nav-pills .nav-link.active {
    background-color: transparent;
    color: #004795;
    border-bottom: 2px solid #004795;
}

.candidate_areas {
    padding: 25px 20px;
    background-color: #fff;
    border-radius: 15px;
    margin-bottom: 24px;
    border: 1px solid #ece8e4;
}

.succes_story {
    padding: 25px 20px;
    background-color: #fff;
    border-radius: 15px;
    margin-bottom: 24px;
    border: 1px solid #ece8e4;
}


/* Fee Based Courses */
.fee_based_courses .courses__item-thumb img {
    width: 100%;
    height: 190px !important;
    object-fit: cover;
    border-radius: 6px;
}

.fee_based_courses .courses__item .author {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Banner */
/* .bannerstyle .owl-stage-outer {
    padding: 20px;
    margin: -20px;
} */

.bannerstyle .categories-items .cate-item {
    position: relative;
    transition: all 500ms ease;
    box-shadow: 0 0 30px #eee;
    background: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 0 10px #eae4e4;
    padding: 25px;
    text-align: center;
}

.bannerstyle .categories-items .cate-item .cate-img img {
    width: 60px;
    margin: 0 auto;
}

.bannerstyle .categories-items .cate-item .cate-content .title {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    margin: 25px 0px 20px 0px;
}

.bannerstyle .categories-items .cate-item .cate-content .title a {
    color: #101010;
}

.bannerstyle .categories-items .cate-item .cate-content .title a:hover {
    color: #592203;
}

.bannerstyle .categories-items .cate-item .cate-content .course-qnty {
    color: #101010;
}

.bannerstyle .categories-items .cate-item:hover {
    transform: translateY(-10px);
}

.bannerstyle .owl-nav .owl-next,
.bannerstyle .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    border: 1px solid #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    background: 0 0;
    transition: .4s;
    margin: 0 auto;
    text-align: center;
}

.bannerstyle .owl-nav .owl-next i,
.bannerstyle .owl-nav .owl-prev i {
    margin-top: 13px;
}

.bannerstyle .owl-nav .owl-next i:before,
.bannerstyle .owl-nav .owl-prev i:before {
    content: "bi bi-arrow-left";
    font-family: Flaticon;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
}

.bannerstyle .owl-nav .owl-next:hover,
.bannerstyle .owl-nav .owl-prev:hover {
    background: #592203;
    color: #ffffff;
    border: 1px solid #592203;
}
.bannerstyle .owl-dots{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}
.bannerstyle .rs-carousel .owl-dots .owl-dot.active {
    background: #004795 !important;
    opacity: 1;
}
.bannerstyle .rs-carousel .owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    display: inline-block;
    margin: 0 6px;
    padding: 3px 0;
    border-radius: 30px;
    border: 1px solid #fff;
    background: transparent;
    opacity: 0.7;
    cursor: pointer;
}
.bannerstyle .owl-nav .owl-next {
    right: 15px;
    left: unset;
}

.bannerstyle .owl-nav .owl-next i:before {
    content: "\f133";
    font-size: 18px;
    font-weight: 400;
}

.bannerstyle .owl-nav .owl-prev {
    right: unset;
    left: 15px;
}

.bannerstyle .owl-nav .owl-prev i:before {
    content: "\f134";
    font-size: 18px;
    font-weight: 400;
}


.web_hero_area {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    height: 600px;
    display: flex;
    align-items: center;
}

.web_hero_area::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(273.16deg, rgba(0, 63, 155, 0) 3.58%, #003F9B 90.04%);
    z-index: 11;
}



.web_hero_area_slider_image_only::after {
    display: none;
}

.web_hero_area .container {
    position: relative;
    z-index: 1111;
    /* height: 100%;
    max-width: 100% !important; */
    /* padding: 120px 0px; */
}

.web_hero_area .banner_silding_text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner_silding_text h2 {
    font-size: 55px;
    color: #fff;
    font-weight: 700;
}

.banner_silding_text h2 span {
    font-size: 48px;
    font-weight: 500;
    color: #fff;
}

.banner_silding_text p {
    color: #fff;
    font-size: 14px;
    min-height: 176px;
}

.banner_main_promot {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    right: -50px;
}

/* .banner_main_promot img {
    height: inherit;
} */

.web_hero_area_two .container {
    position: relative;
    z-index: 1111;
    /* height: 100%;
    max-width: 100% !important; */
    padding: 120px 0px
}
@media only screen and (max-width: 500px) and (min-width: 320px){
    .banner_silding_text h2 br{
        display: none;
    }
    .banner_silding_text h2{
        font-size: 34px;
    }
    .banner_silding_text h2 span{
        font-size: 32px;
    }
    .web_hero_area .container{
        /* padding: 40px 20px !important; */
    }
    /* .web_hero_area_slider_image_only{
        height: 448px !important;
    } */
    /* .web_hero_area_slider_image_only .container{
        padding: 140px 20px !important;
    } */
}
@media only screen and (max-width: 767px){
    /* .web_hero_area .container{
        padding: 60px;
    } */
    /* .web_hero_area_slider_image_only{
        height: 635px;
    } */
    /* .web_hero_area_slider_image_only .container{
        padding: 100px 60px !important;
    } */
}
@media only screen and (max-width: 992px) and (min-width: 320px) {
    .banner_main_promot {
        display: none;
    }
    .headerNew .bottomHeader {
        z-index: 99999;
    }
}
@media only screen and (max-width: 992px) and (min-width: 320px) {
    .banner_main_promot {
        display: none;
    }
    .headerNew .bottomHeader {
        z-index: 99999;
    }
}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .banner_silding_text h2 br {
        display: none;
    }

    .banner_silding_text h2 {
        font-size: 32px;
    }

    /* .web_hero_area{
        height: 715px;
    } */
    .banner_silding_text h2 span {
        font-size: 32px;
    }

    /* .banner_main_promot img {
        height: auto;
    } */

    /* .web_hero_area_two .container {
        padding: 60px;
    } */

    /* .web_hero_area .container {
        padding: 60px;
    } */

    /* .web_hero_area_slider_image_only .container {
        padding: 140px 60px 140px 60px !important;
    } */

    /* .web_hero_area_slider_image_only .container {
        height: 508.8px;
    } */

    .banner_silding_text p {
        /* min-height: 226px;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden; */
    }
}

@media only screen and (max-width: 1365px) and (min-width: 1200px) {
    .banner_silding_text h2 {
        font-size: 45px;
    }

    .web_hero_area {
        height: 715px;
    }

    .banner_silding_text h2 span {
        font-size: 45px;
    }

    /* .banner_main_promot_img_size img{
        min-height: 450px;
    } */
}

@media only screen and (max-width: 1440px) and (min-width: 1366px) {
    .banner_silding_text h2 {
        font-size: 55px;
    }

    /* .banner_main_promot_img_size img {
        min-height: 450px;
    } */
}

@media only screen and (max-width: 1920px) and (min-width: 1441px) {
    /* .web_hero_area_slider_image_only .container {
        padding: 200px 150px 180px 150px !important;
    } */

    /* .banner_main_promot img {
        height: 650px;
    } */

    /* .web_hero_area_slider_image_only {
        height: 756px;
        background-size: 100% 100%;
        background-position: center;
    } */
}

/* Courses Details Page */

.courses-details .courses-card img{
    border-radius: 10px;
    max-height: 400px;
    object-fit: cover;
}
.courses-details .courses-card  .img{
    margin-bottom: 20px;
}
.courses-details .courses-card h2{
    margin-bottom: 16px;
}
.postbox__meta {
    padding-bottom: 24px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(77, 87, 86, .5);
}
.postbox__meta span:not(:last-child) {
    margin-right: 28px;
}
.postbox__meta span {
    display: inline-block;
    padding-bottom: 5px;
    position: relative;
    padding-left: 25px;
    font-size: 16px;
}
.postbox__meta span i {
    position: absolute;
    top: 0px;
    left: 0;
    display: inline-block;
    font-size: 16px;
    color: #004795;
}
.description .nav-pills .nav-link{
    margin-right: 16px;
    padding: 14px 28px;
    font-weight: 500;
    background-color: #e7f4f6;
}
.description .nav-pills .nav-link.active{
    background-color: #004795;
}
.list_points li{
    list-style: circle;
    margin-bottom: 10px;
}
.career_opertunites .list_points li{
    list-style: disc;
}
.career_opertunites .list_points li::marker{
    color: #ee1b23;
}


.p-sticky{
    position: sticky;
    top: 20px;
}
.enroll-courses{
    border-radius: 6px;
}
.related-download{
    border-radius: 6px;
}
.course_small_cols img{
    border-radius: 6px;
    margin-bottom: 20px;
    height: 210px;
    object-fit: cover;
    width: 100%;
}
.related-download ul li{
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .web_hero_area{
      height: 500px !important;
    }
    .web_hero_area_two .container{
      padding: 60px 20px !important;
    }

    .tp-vedio-wrap video{
        width: 100% !important;
    }
    .rs-about.style1 .about-part .desc {
        font-size: 18px !important;
        line-height: 30px !important;
    }
    .rs-cta h2{
        font-size: 45px !important;
    }

  }














/* @media only screen and (max-width: 1440px) and (min-width: 1366px) {
    .web_hero_area .banner_container{
        padding: 150px 0px 150px 120px;
    }
   
    .banner_silding_text h2{
        font-size: 58px;
    }
}
@media only screen and (max-width: 1366px) and (min-width: 1200px) {
} */



