
/* Roboto FONT */


@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Bold.eot');
    src: url('fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Roboto-Bold.woff2') format('woff2'),
        url('fonts/Roboto-Bold.woff') format('woff'),
        url('fonts/Roboto-Bold.ttf') format('truetype'),
        url('fonts/Roboto-Bold.svg#Roboto-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Medium.eot');
    src: url('fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'),
        url('fonts/Roboto-Medium.woff2') format('woff2'),
        url('fonts/Roboto-Medium.woff') format('woff'),
        url('fonts/Roboto-Medium.ttf') format('truetype'),
        url('fonts/Roboto-Medium.svg#Roboto-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Light.eot');
    src: url('fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'),
        url('fonts/Roboto-Light.woff2') format('woff2'),
        url('fonts/Roboto-Light.woff') format('woff'),
        url('fonts/Roboto-Light.ttf') format('truetype'),
        url('fonts/Roboto-Light.svg#Roboto-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.eot');
    src: url('fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Roboto-Regular.woff2') format('woff2'),
        url('fonts/Roboto-Regular.woff') format('woff'),
        url('fonts/Roboto-Regular.ttf') format('truetype'),
        url('fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




/* Roboto FONT */





html {
    scroll-behavior: smooth;
}

a, a:hover, a:focus {
    color: inherit;
    outline: none;
    text-decoration: none;
}
input:focus {
    outline: none;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}



/* Transitions Common */
a, *::before, *::after, img, span, input, button, .navbar, .fixedmenu, .tp-bullet, .owl-dot, .owl-prev, .owl-next {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
i::before, i::after {
    -webkit-transition: all 0s !important;
    -o-transition: all 0s !important;
    transition: all 0s !important;
}
/* Transitions Common */





body {
    color: #000;
    font-family: 'Roboto';
}


:root{
  --theme_blue_color:#0C4DA2;
  --theme_gold_color: #D1B135;
  --theme_white_color: #FFFFFF;
  --theme_grey_color: #F1F1F2;
}








/* Back To Top CSS START */
.back-top {
    color: #fff;
    right: 25px;
    font-size: 26px;
    position: fixed;
    z-index: 1600;
    opacity: 0;
    visibility: hidden;
    bottom: 45px;
    background: #222;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    height: 40px;
    border: 2px solid #ffffff;
    width: 40px;
    text-align: center;
    line-height: 36px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.back-top-visible {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}
.back-top::before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    background: #06332c;
}
.back-top:hover::before, .back-top:focus::before {
    opacity: 1;
    visibility: visible;
}
.back-top:hover, .back-top:focus {
    color: #fff;
}

/* Back To Top CSS END */











/*** Navbar taggler icon animate CSS START ***/
.navbar-toggler {
    border: 0;
    color: inherit;
}
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: 0;
}

.navbar-toggler-right {
    position: relative;
    right: 0;
    top: 0;
}

.navbar-toggler span {
   display: block;
   background-color: #000;
   height: 3px;
   width: 25px;
   margin-top: 4px;
   margin-bottom: 4px;
   -webkit-transform: rotate(0deg);
   -moz-transform: rotate(0deg);
   -o-transform: rotate(0deg);
   transform: rotate(0deg);
   position: relative;
   left: 0;
   opacity: 1;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
   -webkit-transition: transform .35s ease-in-out;
   -moz-transition: transform .35s ease-in-out;
   -o-transition: transform .35s ease-in-out;
   transition: transform .35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    position: absolute;
    left: 12px;
    top: 10px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    height: 12px;
    visibility: hidden;
    background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    position: absolute;
    left: 12px;
    top: 10px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    opacity: 0.9;
}
/*** Navbar taggler icon animate CSS END ***/











/* Sub Domains Revamp page CSS START */

.header_main_sec nav {
    color: #555;
    background: #fff;
    box-shadow: 0 3.8px 11px 0 rgba(0,0,0,0.12),0 0.5px 5px 0 rgba(0,0,0,0.04);
}
.logo_online {
    width: 240px;
}
.header_nav_wrapper {
    width: 100%;
}
.cust_navMenu.navbar-nav .nav-item .nav-link {
    color: #000;
    font-size: 18px; 
    font-family: 'Roboto';
    font-weight: 500;
    padding: 10px 15px 10px;
    margin: 0px 0px 0px;
    text-align: center;
    line-height: 1.2;
}
.cust_navMenu.navbar-nav .nav-item .nav-link:hover {   
    color: #004580;
}













































/* Gen AI Prompting page CSS START */

.headerBanner_main_sec {
    background: url("../images/banner_header_1_desktop.png") no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 500px;
    margin: 65px auto 0px;
    position: relative;
}


.btn.ctaBtn_banner {
    color: #000;
    font-size: 22px;
    font-family: 'Roboto';
    font-weight: 500;
    line-height: 1.4;
    padding: 5px 10px;
    margin-bottom: 0px;
    text-align: center;
    background: #D1B135;
    border-radius: 4px;
    display: block;
    position: absolute;
    /* bottom: 80px;
    left: 90px; */
    bottom: 70px;
    left: -20px;
    z-index: 1;
} 
.btn.ctaBtn_banner:hover {
    color: #fff;
    background: #D1B135;
    border-radius: 4px;
    box-shadow: rgba(0,0,0,0.07) 0px 1px 1px,rgba(0,0,0,0.07) 0px 2px 2px,rgba(0,0,0,0.07) 0px 4px 4px,rgba(0,0,0,0.07) 0px 8px 8px,rgba(0,0,0,0.07) 0px 16px 16px;
}





.certification_form_sec {
    position: absolute;
    right: 0;
    top: 107px;
    z-index: 9;
    width: 450px;
    height: 500px;
    margin: 0px 0px 0px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 0px 0px 7px 7px;
    box-shadow: 5px 0px 5px 3px #a6a6a6;
}
.certification_form_sec h1 {
    color: #ffff;
    font-size: 24px;    
    font-family: 'Roboto';
    font-weight: 600;
    line-height: 1.4;
    text-align: center;        
    padding: 10px 10px;    
    margin: 0px 0px 0px;    
    background: #000;
}
.form_fixFooter {
    top: inherit;
    bottom: 2px;
}








.whyChooseSRM_main_sec {
    padding: 50px 0px 50px;
    margin: 0px 0px 0px;
}
.bgHeading_1 {
    text-align: center;
    margin: 0px 0px 30px;
}
.bgHeading_1 span {
    color: #FFF;
    font-size: 28px;    
    font-family: 'Roboto';
    font-weight: 500;
    line-height: 1.4;
    padding: 5px 30px 5px;
    margin: 0px 0px 0px;
    background: #d1b135;
    border-radius: 3px;
    display: inline-block;
}



.whyChooseSRM_dataBox {   
    margin: 0px 0px 0px; 
}
.whyChooseSRM_dataBox .row .col-md-4 {   
    margin: 0px 0px 30px; 
    border-right: 1px solid #000;
}
.whyChooseSRM_dataBox .row .col-md-4:nth-of-type(3n) {   
    border-right: 0px solid #000;
}
.yChooseSRM_detail {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
.yChooseSRM_detail img {
    margin: 0px 0px 10px;
}
.yChooseSRM_detail p {
    color: #212122;
    font-size: 16px;    
    font-family: 'Roboto';
    font-weight: 400;
    margin: 0px 0px 0px;
}








.aiRevolution_main_sec {
    padding: 0px 0px 30px;
    margin: 0px 0px 0px;
}
.paraDetail_text_1 {
    color: #555555;
    font-size: 16px;    
    font-family: 'Roboto';
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    padding: 0 0px;
    margin: 0px 0px 15px;
}


.ctaBtn_sec {
    margin: 0px 0px 0px;
}
.btn.applynow_Btn {
    color: #000;
    font-size: 16px;
    font-family: 'Roboto';
    font-weight: 500;
    line-height: 1.4;
    padding: 5px 10px;
    margin-bottom: 0px;
    text-align: center;
    background: #D1B135;
    border-radius: 4px;
    min-width: 120px;
} 
.btn.applynow_Btn:hover {
    color: #fff;
    background: #D1B135;
    border-radius: 4px;
    box-shadow: rgba(0,0,0,0.07) 0px 1px 1px,rgba(0,0,0,0.07) 0px 2px 2px,rgba(0,0,0,0.07) 0px 4px 4px,rgba(0,0,0,0.07) 0px 8px 8px,rgba(0,0,0,0.07) 0px 16px 16px;
}




.aiRevolution_banner_sec {
    background: url("../images/banner_aiRevolution_desktop.jpg") no-repeat center center;
    background-size: cover;
    width: 95%;
    height: 500px;
    margin: 0px auto 0px;
    position: relative;
}
.btn.ctaBtn_banner.aiRevolution_banner_btn {
    padding: 5px 20px;
    margin-bottom: 0px;
    display: block;
    position: absolute;
    bottom: 90px;
    left: 46%;
    z-index: 1;
} 







.whoCanJoinCourse_main_sec {
    padding: 50px 0px 30px;
    margin: 0px 0px 0px;
}

.whoCanJoinCourse_slide_show .whoJoinCourse_item {
    color: #212122;
    font-size: 16px;
    font-family: 'Roboto';
    font-weight: 400;
    padding: 10px 10px;
    margin: 0px 10px 0px;
    line-height: 1.2;
    text-align: center;
    background: #fff;
    border-radius: 0px;
    display: block;
    border: 1px solid #767676;
    background: linear-gradient(to bottom,  #d3d3d3 0%,#ececec 100%);
}





.learnAnytime_banner_sec {
    width: 95%;
    text-align: center;
    margin: 0px auto 50px;
    position: relative;
}
.learnAnytime_banner_sec h4 {
    color: #0C4DA2;
    font-size: 14px;
    font-family: 'Roboto';
    font-weight: 600;
    font-style: italic;
    padding: 0px 0px;
    margin: 0px 0px 10px;
    line-height: 1.2;
    text-align: center;
}
.learnAnytime_banner_sec img {
    width: 100%;
}







.intellAssets_main_sec {
    background: url("../images/banner_intell_assets_desktop.jpg") no-repeat center center;
    background-size: cover;
    height: 500px;
    padding: 50px 0px 50px;
    margin: 0px auto 50px;
    position: relative;
}


.intellAssets_dataBox {
    width: 70%;
    margin: 0 auto;
}
.intellAssets_detail {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0px 0px 24px;
}
.intellAssets_detail span {
    width: 80px;
    height: 80px;
    margin: 0px 0px 10px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.intellAssets_detail span img {
    width: 40px;
    height: 40px;
}
.intellAssets_detail p {
    color: #fff;
    font-size: 16px;
    font-family: 'Roboto';
    font-weight: 500;
    margin: 0px 0px 0px;
    line-height: 1.2;
    text-align: center;
}
.intellAssets_detail hr {
    width: 50px;
    height: 1px;
    margin: 10px 0px 0px; 
    background: #ffffff;
}







.whyChooseSRMonline_main_sec {
    background: url("../images/banner_whychoose_srmonline_desktop.png") no-repeat center center;
    background-size: cover;
    height: 500px;
    padding: 50px 0px 50px;
    margin: 0px auto 0px;
    position: relative;
}

.yChoSRMonline_dataBox {
    width: 70%;
    margin: 0 auto;
}
.yChoSRMonline_detail {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 0px 24px;
}
.yChoSRMonline_detail span {
    width: 80px;
    height: 80px;
    margin: 0px 10px 0px 0px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.yChoSRMonline_detail span img {
    width: 40px;
    height: 40px;
}
.yChoSRMonline_detail p {
    color: #fff;
    font-size: 16px;
    font-family: 'Roboto';
    font-weight: 500;
    margin: 0px 0px 0px;
    line-height: 1.2;
    text-align: left;
}




.flexible_banner_sec {
    text-decoration: cadetblue;
    margin: 0px auto 0px;
}
.flexible_banner_sec img {
    width: 100%;
}



.howHelp_and_Recruit_main_sec {
    padding: 50px 0px 50px;
    margin: 0px 0px 0px;
}
.howHelp_dataBox {
    width: 100%;
    margin: 0px auto 30px;
}
.helpDetail {
    color: #fff;
    font-size: 18px;
    font-family: 'Roboto';
    font-weight: 500;
    padding: 10px;
    margin: 0px 0px 30px;
    line-height: 1.2;
    text-align: center;
    background: #0C4DA2;
    border-radius: 7px;
}



.topRecruit_dataBox {
    width: 100%;
    margin: 0px auto 0px;
}
.topRecruit {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.topRecruit img {
    width: 250px;
    object-fit: cover;
}






.topRecruit_slide_show.slick-slider .slick-track {
    display: flex;
    margin-bottom: 30px;
}
.topRecruit_slide_show.slick-slider .slick-track .slick-slide {
    height: auto;
}

.topRecruit_slide_show .topRecruit_item {
    padding: 10px 10px;
    margin: 10px 10px;
    text-align: center;
    background: #fff;
    border: 1px solid #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-shadow: 0px 3px 3px #eaeaea;
}
.topRecruit_slide_show .topRecruit_item img {
    width: 200px;
    object-fit: cover;
}







.hearFromStudent_sec {
    padding: 50px 0px 50px;
    margin: 0px 0px 0px;
    background: #f0f1f3;
}
.alumniTitle {
    color: #000;
    font-size: 25px;
    font-family: 'Roboto';
    font-weight: 500;
    padding: 0px;
    margin: 0px 0px 50px;
    line-height: 1.2;
    text-align: center;
}

.hearFromStudent_slide_show .hearFromStudent_item {
    color: #212122;
    font-size: 16px;
    font-family: 'Roboto';
    font-weight: 500;
    padding: 50px 15px 15px;
    margin: 40px 10px 15px;
    line-height: 1.2;
    text-align: center;
    min-height: 205px;
    display: block;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #0c4da2;
    position: relative;
}
.hearFromStudent_item .alumni_icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #0c4da2;
    border: 2px solid #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: -40px;
    margin: 0px auto 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hearFromStudent_item .alumni_icon img {
    width: 50px;
    height: 50px;
}


.hearFromStudent_item p {
    color: #212122;
    font-size: 16px;
    font-family: 'Roboto';
    font-weight: 400;
    padding: 0px 30px 0px;
    margin: 0px 0px 5px;
    line-height: 1.4;
    text-align: center;
}
.hearFromStudent_item p span {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    display: block;
}



.starRateBox {
    display: flex;
    justify-content: center;
}
.star_rating {
    font-size:1.5em;
    padding:0 0em;
    line-height: 1;
    text-align:center;
    width: 4em;
    display:flex;
    align-items: center;
    justify-content:space-around;
    flex-direction: row-reverse;
  }
  
  .star_rating input {
    display:none;
  }
  
  .star_rating label {
    color:#0c4da2;
    font-size: 20px;
    cursor:pointer;
    margin-bottom: 0;
  }
  
  .star_rating :checked ~ label {
    color:#f90;
  }
  
  .star_rating label:hover,
  .star_rating label:hover ~ label {
    color:#fc0;
  }






.slick-dots li {
    margin: 0px 2px;
}
.slick-dots li button:before {
    font-size: 30px;
    line-height: 20px;
}  
.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #0C4DA2;
}
.slick-dots li button:before {
    opacity: .75;
    color: #D9D9D9;
}






.careerUnlock_banner_sec {
    background: url("../images/banner_careerUnlock_desktop.png") no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 500px;
    margin: 0px auto 0px;
    position: relative;
}

.btn.ctaBtn_banner.careerUnlock_banner_btn {
    padding: 10px 20px;
    margin-bottom: 0px;
    display: block;
    position: absolute;
    bottom: 106px;
    left: -3.5%;
    z-index: 1;
}


/* Gen AI Prompting page CSS END */










/* Background Color */

.blue_bg{
    background-color: var(--theme_blue_color);
}
.gold_bg{
    background-color: var(--theme_gold_color);
}


/* Background Color */



/* Banner Images */
.python_main_sec {
    background: url("../images/Phython.png") no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 775px;
    margin: 65px auto 0px;
    position: relative;
}
     
.data_btn {
    color: #000;
    font-size: 16px;
    font-family: 'Roboto';
    font-weight: 500;
    line-height: 1.4;
    padding: 5px 10px;
    margin-bottom: 0px;
    text-align: center;
    background: #D1B135;
    border-radius: 4px;
    display: block;
    position: absolute;
    bottom: 127px;
    left: -4px;
    z-index: 1;
}



.pt_10{
    padding-top: 10px;
}


.sec_space{
   margin: 30px 0px 0px;
}
.blue_bg_space{
 margin: 30px 0px;
 padding: 30px 0px 30px;
}
.margin_pos{
    margin: 15% 0px;
}





/* Data Analysis Start  */
.title_flex{
    display: flex;
    justify-content: center;
}
.course_title h3 {
    font-size: 28px;
    text-align: center;
    color: var(--theme_blue_color);
    background-color: var(--theme_gold_color);
    border-radius: 9px;
    display: inline;
    padding: 6px 52px;
    font-weight: 700; 
       margin: 0px 0px 30px;
}
.course p {
   margin: 0;
    font-size: 18px;
    text-align: center;
    font-weight: 400;
}

.admission_title h3 {
    font-size: 28px;
    text-align: center;
    color: var(--theme_white_color);
    background-color: var(--theme_gold_color);
    border-radius: 9px;
   display: inline;
    padding: 6px 52px;
    font-weight: 700;
    line-height: 1.3;
       margin: 0px 0px 30px;
}


.about_course{
    background-color: var(--theme_blue_color);
   
}


.about_title h3 {
    font-size: 28px;
    text-align: center;
    color: var(--theme_white_color);
    background-color: var(--theme_gold_color);
    border-radius: 9px;
    font-weight: 700;
    margin: 15px 0px 30px;
    display: inline;
    padding: 6px 52px;
}

.about p{
    font-size: 18px;
    text-align: center;
    color: var(--theme_white_color);
}
.about p span {
    display: block;
    margin: 10px 0px;
}

.about_text p{
    font-size: 18px;
    font-weight: 700;
     color: var(--theme_white_color);
}
.about_text p span{
    font-weight: 400;
    display: block;
}
.about_content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border: 4px solid var(--theme_gold_color);
     padding: 15px 20px;
     margin: 10px 0px;
     height: 100%;
}
.first_border{
  border-radius: 0px 0px 30px 0px;
}
.second_border{
    border-radius: 0px 0px 0px 30px;
}
.third_border{
     border-radius: 0px 30px 0px 0px;
}
.fourth_border{
     border-radius: 30px 0px 0px 0px;
}
.side_img img{
    background-color: var(--theme_white_color);
    width: 70px;
    height: 70px;
    object-fit: cover;
   
}
.side_img {
    width: 20%;
    margin: 0px 17px;
}
.study_title h3 {
    font-size: 28px;
    text-align: center;
    color: var(--theme_blue_color);
    background-color: var(--theme_gold_color);
    border-radius: 9px;
    font-weight: 700;
    margin: 0px 0px 30px;
    display: inline;
    padding: 10px 50px;
}
.img-container {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 15px;
}
.img-1 .inner_img img{
    border-radius: 40px 0px 60px;
}
.img-2 .inner_img img{
    border-radius: 0px 40px 0px 60px;
}
.img-3 .inner_img img{
    border-radius: 0px 40px 0px 60px;
}
.img-4 .inner_img img{
    border-radius: 40px 0px 60px;
}

.study_list{
    list-style: none;
    padding: 10px 0px 0px 10px;
}
.study_list li{
   margin-bottom: 20px;
}
.study_text p{
    font-size: 18px;
    font-weight: 400;
}
.study_text p span{
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 25px;
}
.course_box {
    background: var(--theme_white_color);
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 20px 20px 0px 0px;
}
.course_box p {
    font-size: 18px;
    font-weight: 400;
}
.course_box p span {
    font-weight: 700;
    display: block;
}
.course_box_2 {
    border-radius:  0px 0px 20px 20px;
}
.program_box_3{
    padding: 20px 50px;
    background-color: var(--theme_grey_color);
}
.program_box_3 p{
    font-weight: 700;
    margin: 0;
}
.assesment p{
    font-size: 22px;
    color: var(--theme_blue_color);
    font-weight: 500;
    text-align: center;
}

.assesment_side_method img{
    border-radius: 97%;
     /* position: absolute;
    left: -9%; */
   
}
.assesment_list {
    list-style: none;
    padding: 0;
}
.assesment_list li {
    background-color: #f2f2f2;
    border-radius: 9px 9px 0px 0px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
    margin-bottom: 20px;
    padding: 1px 15px;
}
.assesment_list li p {
    color: #000;
    font-size: 22px;
    font-weight: 400;
    margin: 0;
}
.list_inner {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.eligibility{
    text-align: center;
     background-color: #f2f2f2;
     padding: 30px 30px;
     display: flex;
    justify-content: end;
     border-radius: 0px 50px 50px 0px;
         margin: 75px 0px;
         width: 55rem;
}
.eligibility p{
    font-size: 18px;
    color: #000000;
    font-weight: 400;
  
}
.eligibility p span {
    color: #000000;
    font-weight: 700;
    display: block;
    padding: 11px 32px;
}

.eligibility_pos {
      position: absolute;
    right: 0px;
    bottom: 0;
}
.study_img{
    display: flex;
    justify-content: end;
}
.study_img img{
    width: 50px;
}

.eligibility_sec {
    background-color: var(--theme_blue_color);
    height: 585px;
    overflow: hidden;
}
.left_wrap{
    position: absolute;
    left: 0%;
	width:62%;
}
.right_wrap{
    position: absolute;
    right: 21%;
    top: 0%;
}
.about_text {
    width: 80%;
    display: flex;
    justify-content: center;
    text-align: end;
}

.assesment_flex{
    display: flex;
    justify-content: end;
    align-items: flex-start;
    margin: 5% 0px;
}

/* Data Analysis End */























/* Green Supply */

.course p span {
 display: block;
     margin: 15px 0px 0px;
}

.green_course_title h3 {
    color: var(--theme_blue_color);
    background-color: var(--theme_grey_color);
}
.green_img img{
    background-color: var(--theme_white_color);
    border-radius: 50%;
    padding: 7px;
    width: 55px;
    height: 55px;
}

.green_about_img p{
    font-size: 22px;
    font-weight: 400;
    color: var(--theme_white_color);
   margin-top: 30px;
}

.green_inner_title h3{
    font-size: 35px;
    font-weight: 700;
    color: var(--theme_gold_color);

}
.green_list{
    list-style: none;
    padding: 0;
}
.green_about_text p{
    font-size: 21px;
    font-weight: 400;
    color: var(--theme_white_color);
}
.green_about_text p span {
   font-weight: 700;
}
.green_list li{
    margin-top: 20px;

}

.green_card_box p{
    text-align: left;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
.study_slide .slider_div {
    margin: 10px;
 }
.content_inner {
    background-color: var(--theme_grey_color);
    position: relative;
    height: 170px;
    border-radius: 9px;
    margin-bottom: 40px;
}
.content-img img {
    background-color: var(--theme_gold_color);
    padding: 5px;
    border-radius: 70%;
    margin-bottom: 30px;
    position: absolute;
    left: 35%;
    top: -15%;
    width: 75px;
    height: 75px;
}
 .content_inner p {
     font-size: 20px;
     display: flex;
     justify-content: center;
     align-items: center;
     height: 100%;
     padding: 20px 20px;
     position: absolute;
     bottom: -40px;
 }
 .content_inner p span{
    display: contents;
    font-weight: 700;
 }
.graded_text p{
    font-size: 18px;
    text-align: center;
     margin:0px;
}
.graded_text p span{
    font-weight: 700;
}
.assesment_bg {
    background-image: linear-gradient(rgba(121, 119, 119, 0.5), rgba(132, 131, 131, 0.5)),
        url("../images/green_supply/green_assesment.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: overlay; }

.grey_bg {
    background-color: var(--theme_white_color);
    border-radius: 20px;
    padding: 10px 20px;
    margin: 10px 0px;
    height: 75px;
}
.grey_bg_1 {
    background-color: var(--theme_grey_color);
    height: 100px;
}

.graded_text{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.graded_sub_text p {
    font-size: 25px;
    text-align: center;
    font-weight: 700;
    margin: 20px 0px;
}

.assessment_flex{
    display: flex;
    justify-content: center;
}
.learn_icon img {
    width: 70px;
    height: 70px;
    background-color: var(--theme_white_color);
    padding: 12px;
    border-radius: 50%;
    position: absolute;
}
.learn_box {
    background-color: var(--theme_gold_color);
    border-radius: 10px;
    position: relative;
    height: 290px;
}
.learn_container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.learn_icon img {
    width: 70px;
    height: 70px;
    background-color: var(--theme_white_color);
    padding: 12px;
    border-radius: 50%;
    position: absolute;
    left: 35%;
    top: -6% ;
}
.learn_box p {
    font-size: 24px;
    padding: 21px;
    margin: 0;
}
.learn_flex {
    display: flex;
    justify-content: center;
    align-items: end;
    height: 100%;
    text-align: center;
}
.program {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}
.program li{
    display: flex;
    justify-content: center;
}
.program li p {
    background: var(--theme_grey_color);
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    width: 70%;
    padding: 12px 20px;
}
.footer_text p{
    font-size: 30px;
    font-weight: 900;
   text-transform: capitalize;
}
.footer_text p span {
     display: block;
}
.footer_text button {
    background: var(--theme_gold_color);
    border-color: var(--theme_gold_color);
    font-weight: 700;
    width: 33%;
    font-size: 25px;
}
.footer_text .btn:focus,
.footer_text .btn.focus {
    outline: 0;
    box-shadow: none;
}
/* Green Supply */











/* Python */


.python_title h3{
    color: var(--theme_white_color);
    background-color: var(--theme_gold_color);
}
.python_about {
    background: linear-gradient(to bottom, #0C4DA2, rgba(12, 77, 162, 0)),
        url('../images/python_about.png');
        background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.about_para p{
    font-size: 25px;
    color: var(--theme_white_color);
    font-weight: 700;
    text-align: center;
}
.python_box_container{
   display: flex ;
   justify-content: center;
}
.python_study_container {
    display: grid;
    grid-template-columns: repeat(3, 190px);
    gap: 50px;
}
.audience-card {
    background-color: #f5f5f5;
    /* border-radius: 50px 50px 30px 30px; */
    border-radius: 0px 166px 166px 166px;
    padding: 40px 20px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100% ;
}


.audience-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px auto 0;
}

.audience-card h5 {
    font-weight: bold;
    line-height: 1.5;
}
.audience-card h5 span{
    font-weight: 400;
}

.audience-card p {
    margin-bottom: 0;
}

.python_course_content{
    background:
            url('../images/python_content.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
}
.list_flex{
    display: flex;
    justify-content: end ;
}
.python-list {
    list-style: none;
    padding-left: 0;
    max-width: 600px;
}


.python-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 700;
    color: var(--theme_white_color);
}

.python-list li::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 4px;
    width: 19px;
    height: 30px;
    background-image: url("../images/python_list_icon.png");
    background-size: contain;
    background-repeat: no-repeat;
}
.python_assesment_img img{
  border-radius: 320px 320px 0% 0%;
}
.assesment_para p{
    font-size: 25px;
    font-weight: 700;
}

.python_assesment_list {
    list-style: none;
    padding-left: 0;
   
}


.python_assesment_list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 700;
    color: #000;
}

.python_assesment_list li::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 4px;
    width: 19px;
    height: 30px;
    background-image: url("../images/star_icon.png");
    background-size: contain;
    background-repeat: no-repeat;
}
.python_eligibility_content {
    background: url("../images/python_eligibility.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px;
    height: 600px;
}
.python_eligibilty_text{
	padding-top:30%;
}
.python_eligibilty_text p{
    color: var(--theme_white_color);
    font-size: 25px;
    font-weight: 700;
}
.python_sub_title p{
    text-align: center;
    font-weight: 700;
    font-size: 25px;
    margin: 21px 0px;
}
.python_learn {
    background-color: var(--theme_grey_color);
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9px;
    border: 1px solid #000;
    padding: 30px;
}
.python_learn p{
    font-size: 20px;
    font-weight: 700;
}
.python_program_content{
    background:
            url('../images/python_program.png');
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
}
.python_program_card {
    background-color: var(--theme_white_color);
    min-height: 125px;
    border-radius: 20px;
    position: relative;
    padding: 50px 20px 30px;
}
.program_icon img {
    width: 70px;
    height: 70px;
    background-color: var(--theme_gold_color);
    padding: 20px 20px;
    border-radius: 50%;
    position: absolute;
    top: -21%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.program_text p {
    /* padding: 0px 20px; */
    font-weight: 700;
    margin: 0;
}
.program_flex{
    margin-top: 30px;
}
.python_apply button{
    background: var(--theme_gold_color);
    border-color: var(--theme_gold_color);
    font-weight: 500;
    width: 20%;
    font-size: 22px;
	padding:10px 20px;
}
/* Python */

.WebOnly{
		display:block;
	}
	.mobileOnly{
		display:none;
	}




































































/* Responsive CSS START */


@media only screen and (min-width: 1920px) and (max-width: 2050px) {
	/* For Screen 67% - Screen size */	 
    .headerBanner_main_sec {
        height: 49rem;
    }	
    .btn.ctaBtn_banner {
        position: absolute;
        bottom: 150px;
        left: -300px;
    } 
}
 
 
@media only screen and (min-width: 1800px) and (max-width: 1919px) {
	/* For Screen 75% - UnKnown Screen size */	 
    .headerBanner_main_sec {
        height: 43rem;
    }	
    .btn.ctaBtn_banner {
        position: absolute;
        bottom: 120px;
        left: -210px;
    } 
}
 
 
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
	/* For Screen 80% - Sasi Screen size */	 
    .headerBanner_main_sec {
        height: 40rem;
    }	
    .btn.ctaBtn_banner {
        position: absolute;
        bottom: 110px;
        left: -160px;
    }  
}
 
 
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
	/* For Screen 90% - Chidm Screen for 1920px Size */    
    .headerBanner_main_sec {
        height: 36rem;
    }	
    .btn.ctaBtn_banner {
        position: absolute;
        bottom: 90px;
        left: -80px;
    } 
        .eligibility_sec {
       
        margin: 10px 0px 0px;
    }
    .pt-5{
    padding-top: 15px !important;
}
       .eligibility {
    width: 45rem;
}
.right_wrap {
    position: absolute;
    right: 16%;
    top: 0%;
}
}


@media (max-width: 1400px){
    .learn_container {
    display: grid
;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}
.eligibility {
    width: 100%;
}
.eligibility_img img{
    height: 470px;
}
.eligibility_sec {
    background-color: var(--theme_blue_color);
    margin: 180px 0px 0px;
    height: 470px;
    overflow: hidden;
}
.right_wrap {
    position: absolute;
    right: 12%;
    top: 0%;
}
.eligibility {

    padding: 30px 30px;
}
    .eligibility_sec {
        background-color: var(--theme_blue_color);
        margin: 10px 0px 0px;
        height: 470px;
        overflow: hidden;
    }
}


@media (max-width:1350px){
    .eligibility {
    width: 50rem;
}
}

/* Medium devices (tablets, less than 992px)*/
@media (max-width: 992px) {
    .assesment_flex{
    display: flex;
    justify-content: end;
    align-items: flex-start;
    margin: 0px;
}
    .learn_image{
        margin-bottom: 20px;
    }
    .about_title h3 , .study_title h3, .admission_title h3 , .course_title h3{
    font-size: 20px;
}
.eligibility {
    width: 100%;
}
.study_text p span {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
}
.study_text p {
    font-size: 16px;
    font-weight: 400;
}
.eligibility_img img{
    height: 470px;
}
.eligibility_sec {
    background-color: var(--theme_blue_color);
    margin: 180px 0px 0px;
    height: 470px;
    overflow: hidden;
}
.right_wrap {
    position: absolute;
    right: -1%;
    top: 0%;
}
.eligibility {

    padding: 30px 12px;
}
.assesment_side_method img {
    border-radius: 97%;
    /* position: relative;
    left: -11%; */
}
.about_course {
    background-color: var(--theme_blue_color);
}

.course p {
    font-size: 16px;
}
.about p , .about_text p {
    font-size: 16px;
    text-align: center;
    color: var(--theme_white_color);
}
.about_text {
    width: 100%;
}
.about_content {
    flex-direction: row-reverse;
}
.first_border,.second_border,.third_border,.fourth_border{
  border-radius:  9px;
}
.img-4{
    margin-bottom: 20px;
}
.assesment_list {
    list-style: none;
    padding: 0;
}
.assesment_list li p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}
.assesment_list li {
    margin-bottom: 15px;
}
.list_inner {
    height: 50px;
    display: flex
;
    justify-content: center;
    align-items: center;
}
.pt-5{
    padding-top: 10px !important;
}

}








@media only screen and (max-width: 568px) {
	.python_main_sec {
        background: url("../images/Phython_Mobile.png") no-repeat top center;
        background-size: 100% 100%;
        height: 100vh;
        margin: 60px auto 0px;
    }
	.python_eligibilty_text{
		padding-top:0;
	}
	.WebOnly{
		display:none;
	}
	.mobileOnly{
		display:block;
	}
    .python-list li {
    font-size: 18px;
	}
	.footer_text p{
		font-size:25px;
	}
    .about_para p {
    font-size: 18px;
    color: var(--theme_white_color);
    font-weight: 700;
    text-align: center;
}
.python_course_content {
    background-position: right;

}
.assesment_para p {
    font-size: 18px;
    font-weight: 700;
}
.python_assesment_list li {
    font-size: 18px;
}
.python_eligibility_content {
    height: 100%;
}
.python_eligibilty_text p {
    font-size: 18px;
}
    .program li p {
    width: 100%;
}
.margin_pos {
    margin: 10px 0px 10px;
}
    .program_box_3 {
    border-radius: 9px;
            align-items: center !important;
}
    .program_box_3 p {
     font-weight: 400;
         font-size: 18px;
        }
        .footer_text button {
    background: var(--theme_gold_color);
    border-color: var(--theme_gold_color);
    font-weight: 700;
    width: 45%;
    font-size: 25px;
}
    .sec_space {
    margin: 20px 0px 0px;
}
.blue_bg_space {
    margin: 20px 0px;
    padding: 15px 0px 15px;
}
    .assesment p {
    font-size: 16px;
    color: var(--theme_blue_color);
    font-weight: 500;
    text-align: center;
}
.footer_text{
    text-align: center;
}
    .grey_bg_1 {
    height: 80px !important;
}
    .grey_bg {
    height: 32px;
}
    .content_inner {
    background-color: var(--theme_grey_color);
    position: relative;
    height: 183px;
    border-radius: 9px;
    margin-bottom: 40px;
}
.content_inner p {
    font-size: 20px;
    padding: 7px 9px;
    position: absolute;
    bottom: -33px;
}
    .learn_image {
        margin-bottom: 0px;
    }


    .learn_container{
        order: 1;
    }
    .learn_image{
        order: 2;
    }
    .learn_box {
        height: 120px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .learn_box p {
    font-size: 20px;
    padding: 20px;
    margin: 0;
}
.learn_icon{
    width: 21%;
}

.course_box {
    height: 63px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 20px;
    padding: 5px;

}
    .eligibility_img img {
        height: 318px;
    }

    .content-img img {
            left: 18%;
    top: -15%;
}
    .python_learn {
        height: 80px;
    margin-bottom: 20px;
}
.python_learn p {
     margin: 0;
     font-size: 18px;

}
.learn_icon img {
    left: -6%;
    top: 22%;
}
.learn_container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
.course{
    padding: 10px;
}
    .study_list li {
    margin-bottom: 10px;
}
.python_assesment_img img {
  margin-bottom: 20px;
}
.python_program_card {
    margin-bottom: 50px;
}
.python_program_card {
    text-align: center;
    padding: 50px 20px 30px;
}
.python_study_container {
    display: grid;
    grid-template-columns: repeat(1, 190px);
    gap: 50px;
}
.list_inner {
    padding: 15px;
}
.assesment_list li p {
    text-align: center;
}
.eligibility_sec {
    background-color: var(--theme_blue_color);
    margin: 0px 0px 30px;
    height: 372px;
    overflow: hidden;
}

.right_wrap {
    position: absolute;
    right: -1%;
    top: 15%;
}
    .eligibility_img {
        display: flex;
        justify-content: end;
        height: 319px;
    }
.left_wrap {
    position: absolute;
    left: 0%;
    width: 281px;
}
.eligibility p {
    font-size: 12px;
    color: #000000;
    font-weight: 400;
}
    .eligibility {
        padding: 10px 115px 0px 20px;
        margin: 30px 0px;
        height: 100%;
        width: 100%;
    }

.assesment_list {
    list-style: none;
    padding: 0;
}

.second_border,.fourth_border{
    flex-direction: row;
}




    .header_nav_wrapper {
        width: 100%;
    }

    .logo_online {
        width: 200px;
    }
    .cust_navMenu.navbar-nav {
        margin: 10px 0px 0px;
    }
    



    /* From Here Gen AI Prompting page */

    /* .headerBanner_main_sec {
        background: url("../images/banner_header_1_mobile.png") no-repeat top center;
        background-size: 100% 100%;
        height: 16rem;
        margin: 60px auto 0px;
    }
     .data_main_sec {
        background: url("../images/Data_R_mobile.png") no-repeat top center;
        background-size: 100% 100%;
        height: 100vh;
        margin: 60px auto 0px;
    } */
    .btn.ctaBtn_banner {
        position: absolute;
        bottom: 50px;
        left: 28px;
        z-index: 1;
    } 

    .certification_form_sec {
        position: relative;
        top: 0px;
        right: 0;
        z-index: 1;
        width: 88%;
        height: 500px;
        margin: 0px auto 30px;
        background: #fff;
        border: 1px solid #e9e9e9;
        border-radius: 0px;
        box-shadow: 0px 5px 10px 0px #e5e5e5;
    }
    .certification_form_sec h1 {
        font-size: 20px;
    }
    

    .bgHeading_1 span {
        font-size: 25px;
        padding: 5px 15px 5px;
    }

    .whyChooseSRM_main_sec {
        padding: 20px 0px 50px;
    }
    .whyChooseSRM_dataBox .row .col-md-4:nth-of-type(3n) {   
        border-right: 1px solid #000;
    }
    .whyChooseSRM_dataBox .row .col-md-4:nth-of-type(2n) {   
        border-right: 0px solid #000;
    }
    .whyChooseSRM_dataBox .row .col-md-4:last-child {   
        border-right: 0px solid #000;
    }
    .yChooseSRM_detail p {
        text-align: center;
    }


    
    .aiRevolution_banner_sec {
        background: url("../images/banner_aiRevolution_mobile.jpg") no-repeat center center;
        background-size: 100% 100%;
        width: 100%;
        height: 16rem;
    }
    .btn.ctaBtn_banner.aiRevolution_banner_btn {
        padding: 2px 10px;
        margin-bottom: 0px;
        display: block;
        position: absolute;
        bottom: 90px;
        left: 7%;
        z-index: 1;
    } 
    .whoCanJoinCourse_slide_show .whoJoinCourse_item {
        min-height: 60px;
        margin-bottom: 10px;
    }

    .learnAnytime_banner_sec {
        width: 100%;
    }




    .intellAssets_main_sec {
        background: url("../images/banner_intell_assets_desktop.jpg") no-repeat center center;
        background-size: cover;
        height: 48rem;
    }    
    .intellAssets_dataBox {
        width: 100%;
        margin: 0 auto;
    }

    .whyChooseSRMonline_main_sec {
        background: url("../images/banner_whychoose_srmonline_desktop.png") no-repeat center center;
        background-size: cover;
        height: 45rem;
    }
    .yChoSRMonline_dataBox {
        width: 100%;
        margin: 0 auto;
    }
    .yChoSRMonline_detail {
        flex-direction: column;
    }
    .yChoSRMonline_detail span {
        margin: 0px 0px 10px 0px;
    }
    .yChoSRMonline_detail p {
        text-align: center;
    }


    .howHelp_dataBox {
        width: 100%;
    }
    .topRecruit {
        margin: 0px 0px 30px;
    }




    .careerUnlock_banner_sec {
        background: url("../images/banner_careerUnlock_mobile.png") no-repeat center center;
        background-size: contain;
        width: 100%;
        height: 12rem;
    }
    
       .btn.ctaBtn_banner.careerUnlock_banner_btn {
        position: absolute;
        bottom: 17px;
        left: 35px;
    }

.btn.ctaBtn_banner.careerUnlock_banner_btn {
    padding: 4px 21px;
    margin-bottom: 0px;
    display: block;
    position: absolute;
    z-index: 1;
}
.btn.ctaBtn_banner {
    color: #000;
    font-size: 16px;
}


    .ctaBtn_sec {
        text-align: center;
    }
    .btn.applynow_Btn {
        font-size: 20px;
        padding: 7px 25px;
    } 

    .mobile_viewOnly {
        display: block !important;
    }





}







