@import url('https://cdn-uicons.flaticon.com/2.3.0/uicons-brands/css/uicons-brands.css');
@import url('https://cdn-uicons.flaticon.com/2.4.2/uicons-regular-rounded/css/uicons-regular-rounded.css');

body *{
    padding: 0;
    margin: 0;
}

a{
    text-decoration: none;
    transition: .4s all;
}

body{
    font-family: "Work Sans", sans-serif;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh; 
    padding: 0 !important;   
    display: flex;
    flex-direction: column;
}

html{
    overflow-x: hidden;
}

li{
    list-style: none;
}

figure img{
    max-width: 300px;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
}

section{
    position: relative;
}

.container{
    max-width: 1530px;
}

.content {
    flex: 1;
}

/* ====================================== */

h1{
    font-size: 60px;
    font-weight: 600;
    line-height: 70px;
}

h2{
    font-size: 65px;
    font-weight: 700;
    line-height: 76px;
}

h3{
    font-size: 40px;
    font-weight: 600;
    line-height: 46px;
}

p{
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
}

.header {
    background: transparent;
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    padding: 0 200px;
    padding-top: 30px;
    z-index: 10;
    position: fixed;
    top: 0;
    transition: 0.2s all ease-in-out;
    margin: auto;
    right: 0;
    left: 0;
}

.header-lists {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 35px;
    width: 100%;
}

.header-lists li a{
    font-size: 18px;
    color: white;
    font-weight: 500;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.header-lists li a::before, .header-lists li a.active:after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: #FB3636;
    transition: 0.4s all;
}

.header-lists li a:hover::before, .header-lists li a.active:after{
    width: 100%;
    left: 0;
    right: unset;
}

.header-left figure{
    display: flex;
    align-items: center;
    gap: 12px;
}



.banner-section{
    background: #25273d;
    height: 800px;
    /* padding: 98px 0 0px; */
    z-index: 1;
    overflow: hidden;
}

.banner-section h1{
    margin-bottom: 20px;
    color: white;
}

.banner-section h1 span{
    text-transform: uppercase;
}

.banner-section p{
    margin-bottom: 50px;
    font-weight: 500;
    color: #fff;
}

.red-btn{
    height: 58px;
    padding: 0 40px;
    border: 1px solid #FF0000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 12px;
    font-weight: 500;
    background: #FF0000;
    color: #fff;
}

.red-btn:hover{
    background: transparent;
    border: 1px solid #fff;
    color: white;
}

.apply-btn{
    border: 1px solid #fff;
    background: transparent;
    margin-left: 4px;
}

.apply-btn:hover{
    background: #FF0000;
    border: 1px solid #FF0000;
}

.banner-info{
    max-width: 570px;
}

.banner-figure{
    width: 100%;
    text-align: center;
}

.banner-section:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: url(../images/banner-after.png) no-repeat center / cover ;
    z-index: -1;
    opacity: 0.7;
}

.banner-wrapper.banner-wrapper .owl-dots, .gallery-slider.gallery-slider .owl-dots{
    position: relative;
    z-index: 9;
    text-align: center;
    transition: 0.4s all;
    bottom: 40px;
}

.banner-wrapper.banner-wrapper .owl-dot, .gallery-slider.gallery-slider .owl-dot{
    height: 10px;
    width: 20px;
    background: white;
    border-radius: 20px;
    margin: 0 3px;
    transition: 0.4s all
}

.banner-wrapper.banner-wrapper .owl-dot.active{
    background: #EA4646;
}

.gallery-slider.gallery-slider .owl-dots{
    bottom: 0;
    margin-top: 25px;
}

.gallery-slider.gallery-slider .owl-dot.active{
    background: #950303;
}



.about-us {
    background: #fff;
    padding: 105px 0 60px;
    z-index: 8;
}

.about-info {
    color: #fff;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.about-info-left {
    flex: none;
    max-width: 500px;
    position: relative;
    z-index: 1;
    margin-top: 25px;
}

/* .about-info-left::after {
    content: "";
    position: absolute;
    top: -95px;
    left: -115px;
    height: 640px;
    width: 640px;
    border-radius: 50%;
    background: #EA4646;
    z-index: -1;
} */

.about-info p{
    max-width: 790px;
    line-height: 32px;
}

.about-info p span{
    font-weight: 600;
}

.about-info-left h2{
    margin-bottom: 15px;
}

.vision-para{
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 7px;
    color: #202020;
    margin-bottom: 24px;
}

.vision-para:last-child{
    margin-bottom: 0;
}

.vision-para img{
    position: relative;
    top: 5px;
}

.vision-para p{
    font-size: 20px;
}

.mission-vision {
    position: relative;
    z-index: 9;
    background: #e1f7ff;
    border-radius: 30px;
    padding: 30px 26px;
    height: 100%;
    transition: 0.4s all;
}

.mission-vision:hover{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.dtls-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.dtls-info h4{
    font-size: 36px;
    font-weight: 600;
    line-height: 42px;
    color: #000;
}

.dtls-info h4 span{
    color: black;
}

.red-clr{
    color: #FF0000;
    font-weight: 600;
}

.offer-info h2{
    text-align: center;
    color: #fff;
    margin-bottom: 22px;
}

.about-us .offer-info{
    margin-top: 75px;
}

.offer-list-info {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: end;
    text-align: right;
    color: #fff;
}

.offer-list-info p {
    font-weight: 600;
    max-width: 350px;
}

.offer-list-info figure{
    flex: none;
}

.offer-list-info figure {
    flex: none;
    height: 86px;
    width: 86px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdding-right{
    padding-right: 40px;
}

.offer-list li{
    margin-bottom: 35px;
}

.offer-list li:last-child{
    margin-bottom: 0;
}

.waiting{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdding-left{
    padding-left: 40px;
}

.pdding-left .offer-list-info{
    justify-content: start;
    text-align: left;
}


.about-us .about-info h2,.about-us .about-info h3,.about-info p{
    color: #000;
}

/* .about-us::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: url(../images/abt-banner.png) no-repeat center / cover ;
    z-index: -1;
} */

.focus-area{
    padding: 60px 0;
    background: #fff;
}

.focus-area .offer-info h2 {
    color: #000;
    margin-bottom: 35px;
}

.focus-area.focus-area .vision-para p {
    line-height: 32px;
    color: #1F1F1F;
}

.apply-now{
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 32px;
}

.apply-now:hover{
    color: #000;
    letter-spacing: 1.2px;
    opacity: 0.8;
}

.focus-area.focus-area .mission-vision {
    padding: 30px 35px 40px;
}

.involved-section{
    padding: 60px 0;
    background: #2d3454;
    z-index: 2;
}

.accordian-wrapper.accordian-wrapper .accordion-flush .accordion-item {
    border-radius: 30px;
    overflow: hidden;
    background: #151515;
    color: white;
    margin-bottom: 14px;
}

.accordian-wrapper.accordian-wrapper .accordion-flush .accordion-item:last-child{
    margin-bottom: 0;
}

.accordian-wrapper.accordian-wrapper .accordion-header {
    line-height: 28px;
}

.accordian-wrapper.accordian-wrapper .accordion-button {
    font-size: 25px;
    font-weight: 600;
    background: #151515;
    color: white;
    padding: 20px 20px 20px 40px;
    gap: 20px;
    text-transform: capitalize;
}

.accordian-wrapper.accordian-wrapper .accordion-body{
    padding: 0px 20px 20px 40px;
}

.accordian-wrapper.accordian-wrapper .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.accordian-wrapper.accordian-wrapper .accordion-button:focus {
    border-color: #151515;
    box-shadow: none;
}

.accordian-wrapper.accordian-wrapper .apply-now {
    color: #fff;
    margin-top: 35px;
}

.accordian-wrapper.accordian-wrapper .accordion-body p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 25px;
}

.accordian-wrapper.accordian-wrapper .accordion-button::after{
    width: 50px;
    height: 50px;
}

.accordian-wrapper.accordian-wrapper .accordion-button:not(.collapsed)::after{
    background: url(../images/minus.png) no-repeat center / contain !important;
}

.accordian-wrapper.accordian-wrapper .accordion-button.collapsed::after{
    background: url(../images/plus.png) no-repeat center / contain ;
}

.involved-info .offer-info h2 {
    text-align: left;
    color: #fff;
    margin-bottom: 25px;
}

.involved-fig{
    width: 600px;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.involved-info{
    max-width: 90%;
}

/* .involved-section::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: url(../images/in-after.png) no-repeat center / cover ;
    z-index: -1;
} */

.view-classroom{
    padding: 70px 0;
}

.room-info{
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 50px;
}

img.degree-ing {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 9;
    left: 0;
    right: 0;
    margin: auto;
    width: 140px;
}

.gallry-hding h2{
    text-align: center;
    margin-bottom: 28px;
    color: #000;
}

.gallery-wrapper{
    position: relative;
    padding: 0 20px;
}

.gallery-slider figure{
    border-radius: 30px;
    overflow: hidden;
}

/* .view-classroom:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 172px;
    background: #EA4646;
} */

.compensate-for-scrollbar {
    margin-right: 0 !important;
}

.footer{
    position: relative;
    background: #1b2644;
    padding: 10px 0 10px;
}

.footer-logo{
    width: 145px;
    margin-bottom: 40px;
}

.footer-tiu h5{
    font-size: 20px;
    color: white;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.footer-tiu h5:after,.footer-tiu h5::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 2px;
    background: #7A7A7A;
}

.footer-tiu h5::before{
    left: 4px;
}

.footer-tiu {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin-bottom: 14px;
}

.tiu-innfo {
    color: white;
    font-size: 18px;
    margin-bottom: 14px;
}

.tiu-innfo span{
    color: #FF0000;
}

.techno-india i{
    color: white;
    font-size: 20px;
    margin-right: 6px;
    transition: 0.4s all;
}

.techno-india a{
    font-size: 20px;
    display: inline-block;
    font-weight: 600;
    color: #FF0000;
}

.techno-india a:hover{
    color: white;
}

.techno-india a:hover i{
    color: #FF0000;
}

.footer-lists {
    position: relative;
    margin-top: 25px;
}

.footer-lists h4{
    font-size: 24px;
    line-height: 28px;
    color: white;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-lists ul li a{
    font-size: 18px;
    font-weight: 400;
    color: white;
}

.footer-lists > ul li a:hover{
    color: #FF0000;
    letter-spacing: 1.1px;
}

.footer-lists ul li{
    margin-bottom: 16px;
}

.footer-lists ul li:last-child{
    margin-bottom: 0;
}

.footer-logo-dtls {
    max-width: 87%;
}

.dtls-address p {
    font-size: 20px;
    color: white;
}

.dtls-address p:first-child{
    font-weight: 600;
}

.dtls-contact {
    position: relative;
    padding-left: 75px;
    margin-bottom: 30px;
}

.dtls-contact i {
    height: 50px;
    width: 50px;
    border: 1px dashed white;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
}

.dtls-address{
    padding-top: 8px;
}

.dtls-address p a{
    color: white;
    display: inline-block;
    margin-top: 2px;
}

.dtls-address p a:hover{
    color: #FF0000;
}

.social-media li{
    margin-bottom: 0 !important;
}

.social-media li a i{
    height: 50px;
    width: 50px;
    color: white;
    border: 1px dashed white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    transition: 0.4s all;
}

.social-media.social-media li a i:hover{
    background: #EA4646;
    color: #fff !important;
    border: 1px dashed #EA4646;
}

ul.social-media {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding-top: 35px;
}

ul.social-media::before, ul.social-media::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #393837;
}

ul.social-media::after{
    top: 6px;
}

.copy-right{
    font-size: 18px;
    font-weight: 500;
    color: #B0B0B0;
    text-align: center;
    margin-top: 30px;
    padding-top: 8px;
    border-top: 0px solid #7A7A7A;
}

.journey-section{
    padding: 120px 0;
    background: #043a5b;
    z-index: 2;
}

.journey-wrapper .j-figure{
    max-width: 620px;
    margin: auto;
    position: relative;
}

.journey-section figcaption {
    font-size: 60px;
    font-weight: 600;
    line-height: 68px;
    color: black;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: max-content;
    max-width: 360px;
    text-align: center;
}

.journey-section figcaption span{
    color: #FF0000;
    font-weight: 700;
}

.journey-wrapper{
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.detls-jrny figure{
    height: 110px;
    width: 110px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 10px solid black;
}

.detls-jrny{
    display: flex;
}

.detls-jrny p {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: white;
    max-width: 155px;
    padding-left: 20px;
    padding-top: 4px;
    position: relative;
    z-index: 4;
}

.detls-jrny p:after {
    content: "";
    position: absolute;
    top: 60px;
    left: -1px;
    bottom: 0;
    height: 62px;
    width: 210px;
    background: url(../images/top_line.png) no-repeat center / contain;
}

.abt-journey li {
    position: absolute;
}

.abt-journey li:nth-child(1) {
    top: -60px;
    left: 124px;
}

.abt-journey li:nth-child(2) {
    top: -60px;
    right: 124px;
}

.abt-journey li:nth-child(even) .detls-jrny p:after {
    transform: rotateY(180deg);
    left: -77px;
}

.abt-journey li:nth-child(even) .detls-jrny p{
    padding-right: 20px;
    padding-top: 20px;
    padding-left: 0;
}

.abt-journey li:nth-child(3) {
    top: 90px;
    left: 3px;
}

.abt-journey li:nth-child(4) {
    top: 90px;
    right: 13px;
}

.abt-journey li:nth-child(5) .detls-jrny p:after{
    background: url(../images/middle_line.png) no-repeat center / contain;
    top: 12px;
    left: -2px;
}

.abt-journey li:nth-child(5){
    bottom: 0;
    left: 0;
}

.abt-journey li:nth-child(5) {
    bottom: 136px;
    left: 0px;
}

.abt-journey li:nth-child(6) .detls-jrny p:after{
    background: url(../images/middle_line.png) no-repeat center / contain;
    top: 12px;
    width: 200px;
}

.abt-journey li:nth-child(6) {
    bottom: 136px;
    right: 18px;
}

.abt-journey li:nth-child(7) .detls-jrny p:after{
    background: url(../images/bottom_line.png) no-repeat center / contain;
    top: 4px;
}

.abt-journey li:nth-child(7) {
    bottom: -17px;
    left: 89px;
}

.abt-journey li:nth-child(8) .detls-jrny p:after {
    background: url(../images/bottom_line.png) no-repeat center / contain;
    top: 4px;
    left: -80px;
}

.abt-journey li:nth-child(8) {
    bottom: -17px;
    right: 95px;
}

/* .journey-section::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/after-after.png) no-repeat center / cover ;
    z-index: -1;
} */

.bar-dtls{
    display: none !important;
}

.times-cross{
    display: none !important;
}

.sticky_hdr .header {
    -webkit-filter: drop-shadow(0px 15px 25px rgba(0,76,102,0.15));
    box-shadow: -1px 3px 8px 5px rgba(0, 0, 0, 0.1);
    background: #393f5c;
    padding-top: 32px;
    padding-bottom: 32px;
}

/* ======== 19-06-2024 ================ */

.banner-top {
    width: 100%;
    height: 680px;
    background-size: cover;
    background-position: top;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rev-fig, .banner-figure{
    position: relative;
}

.banner-top:before, .rev-fig::before, .new-bnr.new-bnr::before  {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 8%);
    top: 0;
    left: 0;
    right: 0;
}

.new-bnr.new-bnr::before{
    background: rgb(0 0 0 / 60%);
}

.bnr-tp-new.bnr-tp-new::before{
    opacity: 0;
}

.rev-fig::before{
    background: rgb(0 0 0 / 15%);
}

.banner-top h2 {
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: .5px;
    line-height: 70px;
    max-width: 1480px;
    padding-left: 100px;
}

.banner-top h2 span {
    color: red;
}

.abt-detailss p span {
    font-weight: 600;
}

.abt-detailss h2{
    margin-bottom: 15px;
}

.abt-detailss{
    text-align: center;
    margin-bottom: 30px;
}

.fig-abt{
    max-width: 480px;
    margin: auto;
    position: relative;
}

.fig-abt:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    border: 10px solid #3F86FA;
    top: 40px;
    left: -40px;
    z-index: -1;
}

.fig-abt img{
    max-width: 100%;
}

.list-info img {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    background: #BD4CEC;
    padding: 5px;
    position: relative;
}

.list-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.list-info h4{
    font-size: 26px;
    font-weight: 600;
}

.fig-list li{
    margin-bottom: 18px;
}

.fig-list li:last-child{
    margin-bottom: 0;
}

.fig-list li:nth-child(2) .list-info img,
.fig-list li:nth-child(7) .list-info img{
    background: #00AAEF;
}

.fig-list li:nth-child(3) .list-info img,
.fig-list li:nth-child(6) .list-info img{
    background: #19CCB1;
}

.fig-list li:nth-child(4) .list-info img{
    background: #DF48BE;
}

.fig-list li:nth-child(5) .list-info img{
    background: #EB6C40;
}

.fig-list{
    padding-top: 10px;
}

.new-rev-section{
    background: #132748;
    color: white;
}

.new-rev-section .mango-revolution-wrapper{
    background: #132748;
    padding-top: 28px;
}

.changing-project{
    background: #A5A355;
}

.focus-area.focus-area.focus-area .mission-vision {
    padding: 8px;
    box-shadow: 0px 0px 44.9px 0px #A9A9A940;
    border-radius: 0;
    background: white;
}

.upcoming-game.upcoming-game.upcoming-game figure {
    border-radius: 0;
}

.dtls-info.dtls-info.dtls-info.dtls-info h4{
    font-size: 28px;
    padding: 0 0 0 10px;
}

.vision-para.vision-para{
    padding: 0 10px 10px;
}

/* .about-section.about-section{
    padding-bottom: 90px !important;
} */

.news-tg {
    background: #0AC775;
    transition: 0.4s all;
    width: 50%;
}

.news-tg:hover h6 i{
    padding-left: 6px;
}

.news-tg:hover h6{
    letter-spacing: 0.25px;
}

.news-tg a{
    padding: 20px 15px;
    display: block;
    height: 100%;
}

.news-wrapper h5{
    font-size: 17px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    line-height: 22px;
}

.news-tg p{
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: white;
    margin-bottom: 10px;
}

.nws-fig img{
    max-width: 100%;
    height: 100%;
}

.news-tg h6{
    font-size: 17px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    transition: 0.4s all;
    gap: 6px;
}

.news-tg h6 i {
    line-height: 0;
    position: relative;
    top: 2px;
    transition: 0.4s all;
}

.news-wrapper {
    display: flex;
}

figure.nws-fig {
    flex: none;
    width: 50%;
}

.four-wrapper.four-wrapper.four-wrapper .news-tg{
    background: #F6F7FB;
}

.four-wrapper.four-wrapper.four-wrapper h5, .four-wrapper.four-wrapper.four-wrapper h6, .four-wrapper.four-wrapper.four-wrapper p{
    color: black;
}

.nws-fig img {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.news-section.news-section .latest-news h2{
    color: black;
    margin-bottom: 20px;
}

.banr-innr.banr-innr {
    height: 550px;
}

.banr-innr h1 {
    color: white;
    z-index: 5;
    padding-left: 100px;
}

/* ======== 19-06-2024 ================ */

.mi-vi-section{
    background: #1F57B5;
    color: white;
}

.mivi-info h3{
    margin-bottom: 14px;
}

.mivi-info p{
    font-size: 16px;
}

.mivi-fig{
    max-width: 450px;
    margin: auto;
}

.mivi-fig img{
    max-width: 100%;
}

.row-revrse{
    flex-direction: row-reverse;
    margin-top: 60px;
}

.row-revrse .mivi-fig{
    max-width: 520px;
}

.mivi-hding span{
    font-size: 25px;
}

.mivi-hding h2 {
    font-size: 50px;
    line-height: 66px;
}

.mivi-hding {
    margin-bottom: 40px;
    text-align: center;
}

.strategy-dtls{
    background: white;
    padding: 15px 20px;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.strategy-section{
    /* background: #A5A355; */
    background: #dddddda3;
}

.strategy-dtls h4 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.strategy-dtls ul li{
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 6px;
}

.strategy-dtls ul li:last-child{
    margin-bottom: 0;
}

.strategy-dtls ul li i{
    font-size: 15px;
    font-weight: 600;
}

.strategy-dtls ul li i img{
    width: 25px;
}

.strategy-dtls{
    margin-bottom: 16px;
}

/* .value-section{
    background: #A5A355;
} */

.value-section.value-section .mivi-info p {
    font-size: 18px;
    line-height: 32px;
}

.value-section.value-section .mivi-fig img{
    border-radius: 6px;
    padding: 2px;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.past-video iframe {
    width: 100%;
    max-width: 1000px;
    display: block;
    min-height: 600px;
    margin: auto;
    border-radius: 10px;
}

.past-news{
    margin-bottom: 40px;
}

.presnt-wrapper{
    display: flex;
    justify-content: center;
    gap: 40px;
}

.presnt-wrapper figure {
    flex: none;
    width: 48%;
    max-width: 530px;
}

.presnt-wrapper figure img {
    max-width: 100%;
    border-radius: 6px;
    background: #1b26448f;
    padding: 2px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.presnt-dtls-wrapper{
    width: 48%;
}

.dtls-info-presnt{
    margin-bottom: 30px;
}

/* ================== 21-06-2024 ==================== */

.ai-row{
    margin: 60px 0;
}

.ai-initiative-frame{
    text-align: center;
}

.ai-initiative-frame iframe{
    width: 90%;
    border-radius: 6px;
}

.ai-initiative .mivi-info{
    max-width: 90%;
    margin-left: auto;
}

.ai-initiative h4{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 22px;
}

.ai-initiative p{
    font-weight: 500;
}

.dates-info h5 {
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    margin-bottom: 6px;
    position: relative;
    padding-left: 27px;
}

.fn-bld {
    font-weight: 500;
    position: absolute;
    left: 0;
    top: 0;
    height: 30px;
    width: 20px;
    text-align: right;
}

.admsn-fig{
    flex: none;
    max-width: 425px;
}

.admsn-fig img {
    max-width: 100%;
    /* height: 100%; */
    border-radius: 6px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    overflow: hidden;
}

.admisn-info {
    display: flex;
    gap: 35px;
}

.dtls-admns{
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.card-new .card_img{
    max-width: 700px;
    margin: auto;
}

.card-new{
    background-attachment: fixed;
}

.vdo-dttls iframe{
    height: 420px;
    border-radius: 6px;
}

.sec-awre.sec-awre .presnt-dtls-wrapper {
    width: 37%;
}

.only-mrgin{
    margin: 40px 0;
}

.nw-hdr.nw-hdr{
    -webkit-filter: drop-shadow(0px 15px 25px rgba(0, 76, 102, 0.15));
    box-shadow: -1px 3px 8px 5px rgba(0, 0, 0, 0.1);
    background: #393f5c;
    padding-top: 32px;
    padding-bottom: 32px;
}

.bnr-tp-new.bnr-tp-new{
    margin-top: 80px;
}

.bnr-tp-new.bnr-tp-new.bnr-tp-new.bnr-tp-new .owl-dots{
    bottom: 15px !important;
    position: absolute;
    width: 100%;
}

.bnr-tp-new.bnr-tp-new{
    height: auto;
}

.global-info figure {
    text-align: center;
    width: 320px;
    margin: 0 auto 20px;
}

.global-info figure img{
    max-width: 100%;
    width: 100%;
}

.points-section{
    padding-top: 0px !important;
}

ul.key-lists {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

ul.key-lists li {
    width: 32.4%;
    margin-bottom: 20px;
}

.list-dtls {
    padding: 20px;
    box-shadow: 0px 4px 48.2px 0px #66666630;
    border-radius: 8px;
    height: 100%;
    text-align: center;
    background: white;
}

.list-dtls figure {
    max-width: 150px;
    margin: 0 auto 20px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-dtls figure img{
    width: 100%;
    max-width: 100%;
}

.gry-sec{
    background: #F4F4F4;
}

.list-dtls h4{
    font-size: 22px;
    line-height: 27px;
}

.flip-wrap img{
    width: 100%;
}

.flip-list li {
    font-size: 16px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.flip-list li:after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #1b2644;
}

.flip-list li:last-child{
    margin-bottom: 0;
}

ul.flip-list {
    padding: 12px;
    min-height: 182px;
}

.flip-wrap{
    border: 1px solid #e1e1e1d4;
    border-top: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 2px 4px 0px;
    /* height: 100%; */
    border-radius: 10px;
}

.asso-fig{
    max-width: 320px;
    margin: auto;
}

.asso-fig img{
    width: 100%;
    max-width: 100%;
}

.asso-dtls h3{
    margin-bottom: 24px;
    font-weight: 700;
}

.solar-park.solar-park {
    padding: 0 20px;
    height: 40px;
    /* border: 1px solid white; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #FB3636;
    animation: mymove1 1.5s infinite;
}

@keyframes mymove1 {
    0%   {background-color: #FB3636; opacity: 1;}
    50%  {background-color: transparent; opacity: 1}
    100% {background-color: #FB3636; opacity: 1;}
}

/* .solar-park.solar-park a{
    color: black;
} */

.header-lists li.solar-park.solar-park a::before, .header-lists li.solar-park.solar-park a.active:after{
    display: none;
}

.new-overview h6{
    line-height: 30px !important;
    margin-top: 35px;
    margin-bottom: 6px;
}

.nws-dtls-new.nws-dtls-new .apply-now {
    color: #1b2644 !important;
    border: 1px solid #1b2644 !important;
}

.new-overview p, .new-overview.new-overview ul li{
    font-size: 18px;
    list-style: none;
    position: relative;
}

.new-overview.new-overview ul{
    padding-left: 0;
}

.new-overview.new-overview ul li{
    padding-left: 20px;
}

.new-overview.new-overview ul li:after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    bottom: 0;
    height: 8px;
    width: 8px;
    background: #e5110e;
    border-radius: 50%;
}

.smr-biotech.smr-biotech {
    padding-top: 30px !important;
}

.new-overview.new-overview ul li:after {
    top: 9px;
    height: 6px;
    width: 6px;
}

.new-overview.new-overview ul li {
    padding-left: 15px;
}

.ifrme-details{
    /* background: black; */
    /* max-width: 800px; */
    margin: auto;
    padding: 30px 0;
    border-radius: 0 0 10px 10px;
    /* float: right; */
}

.ifrme-details iframe {
    display: block;
    padding: 6px;
    background-color: white;
    margin: auto;
    /* border: 1px solid black !important; */
    max-width: 560px;
    width: 100%;
    height: 320px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.modal-iframe{
    height: 500px;
}

.modal-iframe iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.founder-frame {
    height: 500px;
    border-radius: 14px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
    margin-top: 40px;
}


@media only screen and (max-width: 1560px) {

    .nws-fig img {
        max-width: 100%;
        height: 242px;
        object-fit: cover;
        width: 100%;
    }

    .sec-awre.sec-awre.sec-awre.sec-awre .presnt-wrapper figure {
        max-width: 460px;
    }

    .sec-awre.sec-awre .presnt-dtls-wrapper {
        width: 40%;
    }

    .banr-innr.banr-innr {
        height: 450px;
    }

    h1 {
        font-size: 40px;
        font-weight: 600;
        line-height: 52px;
    }

    .banr-innr h1 {
        font-size: 50px;
        padding-left: 100px;
    }

    h2 {
        font-size: 42px;
        line-height: 50px;
    }

    h3 {
        font-size: 26px;
        line-height: 34px;
    }

    p {
        font-size: 15px;
        line-height: 23px;
    }

    .banner-section {
        /* padding: 85px 0 0px; */
    }

    .banner-info {
        max-width: 500px;
    }

    .red-btn {
        height: 48px;
        padding: 0 35px;
        font-size: 15px;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0px;
    }

    .header{
        max-width: 100%;
        padding: 25px 80px 0;
    }

    .header .header-left.header-left {
        position: absolute;
        top: 4px;
        width: 75px;
    }

    .header-lists li a {
        font-size: 14px;
        padding-bottom: 4px;
    }

    .header-left figure a img{
        width: 85px;
    }

    .header-left figure a:first-child img{
        width: 360px;
    }

    .header-left figure {
        gap: 8px;
    }

    .banner-figure {
        width: 100%;
        margin: auto;
    }

    .banner-wrapper.banner-wrapper .owl-dot, .gallery-slider.gallery-slider .owl-dot {
        height: 8px;
        /* width: 8px; */
        margin: 0 2px;
    }

    .about-info-left h2 {
        margin-bottom: 10px;
    }

    .about-info-left {
        flex: none;
        max-width: 500px;
        position: relative;
        z-index: 1;
        margin-top: 0px; 
        padding-left: 6%;
    }

    .about-info p {
        max-width: 860px;
        line-height: 27px;
    }

    .about-info-left::after {
        top: -80px;
        left: -60px;
        height: 500px;
        width: 350px;
    }

    .about-info {
        margin-bottom: 32px;
    }

    .about-us {
        padding: 80px 0 50px;
    }

    .dtls-info figure{
        width: 65px;
    }

    .dtls-info.dtls-info.dtls-info.dtls-info h4 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 5px;
    }

    .mission-vision {
        padding: 20px 18px;
    }

    .dtls-info {
        gap: 8px;
        margin-bottom: 12px;
    }

    .vision-para p {
        font-size: 15px;
    }

    .vision-para img {
        width: 14px;
    }

    .vision-para {
        gap: 5px;
        margin-bottom: 17px;
    }

    .about-us .offer-info {
        margin-top: 60px;
    }

    .offer-info h2 {
        margin-bottom: 20px;
    }

    .offer-list-info figure {
        height: 65px;
        width: 65px;
        padding: 15px;
    }

    .offer-list-info {
        gap: 16px;
    }

    .offer-list li {
        margin-bottom: 25px;
    }

    .focus-area {
        padding: 40px 0;
    }

    .focus-area .offer-info h2 {
        margin-bottom: 25px;
    }

    .focus-area.focus-area .vision-para p {
        line-height: 27px;
    }

    .focus-area.focus-area .mission-vision {
        padding: 20px 22px;
    }

    .apply-now {
        font-size: 15px;
        line-height: 28px;
    }

    .apply-now img {
        width: 14px;
        top: -1px;
        position: relative;
    }

    .involved-section {
        padding: 40px 0;
    }

    .involved-info .offer-info h2 {
        margin-bottom: 20px;
    }

    .accordian-wrapper.accordian-wrapper .accordion-button {
        font-size: 17px;
        padding: 12px 15px 12px 30px;
        gap: 18px;
        line-height: 22px;
    }

    .accordian-wrapper.accordian-wrapper .accordion-body {
        padding: 0px 15px 12px 30px;
    }

    .accordian-wrapper.accordian-wrapper .accordion-body p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .accordian-wrapper.accordian-wrapper .accordion-button::after {
        width: 35px;
        height: 35px;
    }

    .involved-fig {
        width: 460px;
    }

    .view-classroom {
        padding: 40px 0;
    }

    .room-info {
        margin-bottom: 35px;
    }

    img.degree-ing {
        width: 100px;
    }

    .gallry-hding h2 {
        margin-bottom: 22px;
    }

    .gallery-slider.gallery-slider .owl-dots {
        margin-top: 20px;
    }

    .view-classroom:after {
        height: 121px;
    }

    .accordian-wrapper.accordian-wrapper .accordion-flush .accordion-item {
        margin-bottom: 12px;
    }

    .footer {
        padding: 0px 0 8px;
    }

    .footer-logo {
        width: 120px;
        margin-bottom: 32px;
    }

    .footer-tiu h5 {
        font-size: 15px;
        padding-left: 20px;
    }

    .tiu-innfo {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .techno-india a {
        font-size: 15px;
    }

    .techno-india i {
        font-size: 16px;
        margin-right: 4px;
        vertical-align: middle;
    }

    .footer-lists h4 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .footer-lists ul li a {
        font-size: 14px;
    }

    .footer-lists ul li {
        margin-bottom: 10px;
    }

    .dtls-contact i {
        height: 40px;
        width: 40px;
        font-size: 16px;
    }

    .dtls-address p {
        font-size: 15px;
    }

    .dtls-contact {
        padding-left: 55px;
        margin-bottom: 20px;
    }

    .dtls-address {
        padding-top: 6px;
    }

    .social-media li a i {
        height: 40px;
        width: 40px;
        font-size: 16px;
    }

    ul.social-media {
        gap: 14px;
        padding-top: 26px;
    }

    .copy-right {
        font-size: 14px;
        margin-top: 10px;
        padding-top: 6px;
    }

    .journey-wrapper .j-figure {
        max-width: 460px;
        margin: auto;
        position: relative;
    }

    .journey-section figcaption {
        font-size: 40px;
        line-height: 48px;
        max-width: 260px;
    }

    .detls-jrny p {
        font-size: 15px;
        line-height: 20px;
        max-width: 140px;
        padding-left: 15px;
        padding-top: 4px;
    }

    .detls-jrny figure {
        height: 95px;
        width: 95px;
        padding: 17px;
        border: 8px solid black;
    }

    .journey-wrapper {
        max-width: 1000px;
    }

    .detls-jrny p:after {
        top: 49px;
        height: 47px;
        width: 160px;
    }

    .abt-journey li:nth-child(1) {
        top: -48px;
    }

    .abt-journey li:nth-child(2) {
        top: -48px;
        right: 126px;
    }

    .abt-journey li:nth-child(even) .detls-jrny p:after {
        transform: rotateY(180deg);
        left: -60px;
    }

    .abt-journey li:nth-child(even) .detls-jrny p {
        padding-right: 15px;
    }

    .abt-journey li:nth-child(3) {
        top: 80px;
        left: 34px;
    }

    .abt-journey li:nth-child(4) {
        top: 80px;
        right: 41px;
    }

    .abt-journey li:nth-child(5) {
        bottom: 106px;
        left: 35px;
    }

    .abt-journey li:nth-child(6) {
        bottom: 106px;
        right: 47px;
    }

    .abt-journey li:nth-child(6) .detls-jrny p:after {
        width: 150px;
    }

    .abt-journey li:nth-child(7) {
        bottom: -22px;
        left: 100px;
    }

    .abt-journey li:nth-child(8) {
        bottom: -22px;
        right: 107px;
    }

    .abt-journey li:nth-child(8) .detls-jrny p:after {
        left: -63px;
    }

    .journey-section {
        padding: 40px 0;
    }

    .fig-abt {
        max-width: 350px;
    }

    .fig-abt:after {
        border: 9px solid #3F86FA;
        top: 36px;
        left: -36px;
    }

    .list-info h4 {
        font-size: 18px;
    }

    .list-info img {
        height: 46px;
        width: 46px;
        padding: 7px;
    }

    .fig-list li {
        margin-bottom: 13px;
    }

    .banner-top {
        height: 520px;
    }

    .banner-top h2 {
        font-size: 40px;
        margin-bottom: 0;
        letter-spacing: .5px;
        line-height: 55px;
        padding-left: 80px;
    }

    .upcoming-game figure img{
        height: 280px;
        object-fit: cover;
    }

    .mivi-hding h2 {
        font-size: 40px;
        line-height: 52px;
    }

    .mivi-hding span {
        font-size: 22px;
    }

    .strategy-dtls h4 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .strategy-dtls ul li {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .strategy-dtls ul li i {
        font-size: 14px;
    }

    .value-section.value-section .mivi-fig {
        max-width: 400px;
    }

    .mivi-hding {
        margin-bottom: 20px;
    }

    .value-section.value-section .mivi-info p {
        font-size: 16px;
        line-height: 29px;
    }

    .row-revrse {
        margin-top: 50px;
    }

    .abt-pdng{
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .global-info p{
        font-size: 18px;
        line-height: 25px;
        font-weight: 600;
    }

    .list-dtls figure {
        max-width: 104px;
        margin: 0 auto 15px;
        height: 120px;
    }

    .list-dtls h4 {
        font-size: 18px;
        line-height: 24px;
    }

    .flip-list li {
        font-size: 15px;
        margin-bottom: 8px;
        padding-left: 12px;
    }

    .flip-list li:after {
        top: 9px;
        left: 0;
        height: 5px;
        width: 5px;
    }

    ul.flip-list {
        min-height: 208px;
    }

    .asso-fig {
        max-width: 260px;
    }

    .asso-dtls h3 {
        font-size: 28px;
    }

    .global-info figure {
        width: 300px;
    }

    .new-bnr.new-bnr h1{
        max-width: 1200px;
    }

    .solar-park.solar-park {
        padding: 0 16px;
        height: 34px;
        animation: mymove1 1.5s infinite;
    }

    .new-overview h6 {
        line-height: 25px !important;
        margin-top: 30px;
        font-size: 22px;
    }

    .new-overview p, .new-overview.new-overview ul li {
        font-size: 16px;
    }

    .smr-biotech.smr-biotech{
        padding-top: 20px !important;
    }

    .founder-frame {
        height: 450px;
        margin-top: 40px;
    }

  
}



@media only screen and (max-width: 1300px){
    .header-lists {
        gap: 26px;
    }

    .header-left figure a img {
        width: 80px;
    }

    .header-left figure a:first-child img {
        width: 220px;
    }

    
}



@media only screen and (max-width: 991px) {

    .container {
        padding: 0 30px;
    }

    h1 {
        font-size: 28px;
        line-height: 38px;
    }

    h2 {
        font-size: 28px;
        line-height: 38px;
    }

    h3 {
        font-size: 18px;
        line-height: 26px;
    }

    p {
        font-size: 13px;
        line-height: 22px;
    }

    .header {
        padding: 15px 30px 0;
        align-items: center;
    }

    .banner-section h1 {
        margin-bottom: 8px;
    }

    .banner-section p {
        margin-bottom: 30px;
    }

    .red-btn {
        height: 38px;
        padding: 0 25px;
        font-size: 13px;
        border-radius: 8px;
    }

    .banner-info {
        max-width: 330px;
    }

    .banner-figure {
        width: 100%;
    }

    .banner-wrapper.banner-wrapper .owl-dots, .gallery-slider.gallery-slider .owl-dots {
        bottom: 0px;
    }

    .about-us {
        padding: 55px 0 30px;
    }

    .about-info p {
        max-width: 460px;
        line-height: 24px;
    }

    .about-us ul li{
        font-size: 13px;
    }

    .about-info-left {
        max-width: 270px;
        margin-top: 15px;
    }

    .about-info-left::after {
        top: -45px;
        left: -28px;
        height: 270px;
        width: 270px;
    }

    .about-info-left h2 {
        margin-bottom: 5px;
    }

    .about-info {
        margin-bottom: 25px;
    }

    .mission-vision {
        padding: 15px;
        margin-bottom: 15px;
        height: auto;
    }

    .dtls-info figure {
        width: 50px;
    }

    .dtls-info {
        gap: 8px;
        margin-bottom: 8px;
    }

    .vision-para p {
        font-size: 13px;
    }

    .vision-para {
        gap: 4px;
        margin-bottom: 8px;
    }

    .vision-para img {
        width: 12px;
    }

    .dtls-info h4 {
        font-size: 18px;
        line-height: 26px;
    }

    .about-us .offer-info {
        margin-top: 20px;
    }

    .offer-info h2 {
        margin-bottom: 14px;
    }

    .pdding-right .offer-list-info {
        gap: 11px;
        justify-content: start;
        text-align: left;
        flex-direction: row-reverse;
    }

    .pdding-right {
        padding-right: 0;
        margin-bottom: 10px;
    }

    .offer-list-info{
        gap: 12px;
    }

    .offer-list-info figure {
        height: 50px;
        width: 50px;
        padding: 10px;
    }

    .offer-list li {
        margin-bottom: 14px;
    }

    .pdding-left {
        padding-left: 0;
    }

    ul.offer-list {
        column-count: 2;
    }

    .waiting {
        max-width: 320px;
        margin: 15px auto 0;
    }

    .journey-section {
        padding: 30px 0;
    }

    .abt-journey li {
        position: relative;
        left: 0 !important;
        top: 0 !important;
        margin-bottom: 10px;
    }

    .abt-journey li:last-child{
        margin-bottom: 0;
    }

    .abt-journey li:nth-child(4){
        margin-bottom: 0;
    }

    .detls-jrny p {
        font-size: 13px;
        line-height: 20px;
        padding-left: 0 !important;
        padding-top: 0 !important;
    }

    .detls-jrny {
        display: flex;
        justify-content: start;
        align-items: center;
    }

    .detls-jrny p:after{
        display: none;
    }

    .journey-wrapper .j-figure {
        max-width: 100%;
    }

    .journey-wrapper .j-figure img{
        display: none;
    }

    .journey-section figcaption span {
        color: #ffffff;
        font-weight: 700;
    }

    .journey-section figcaption {
        font-size: 26px;
        line-height: 32px;
        max-width: 100%;
        position: relative;
        text-align: left;
        color: white;
        margin-bottom: 14px;
    }

    .abt-journey li:nth-child(even) .detls-jrny p {
        padding-right: 0;
    }

    .abt-journey li:nth-child(even) .detls-jrny{
        flex-direction: row-reverse;
    }

    .detls-jrny {
        gap: 12px;
    }

    .oder-2{
        order: 2;
    }

    .detls-jrny figure {
        height: 65px;
        width: 65px;
        padding: 12px;
        border: 5px solid black;
        flex: none;
    }

    ul.abt-journey {
        column-count: 2;
    }

    .focus-area {
        padding: 30px 0 15px;
    }

    .focus-area .offer-info h2 {
        margin-bottom: 14px;
    }

    .focus-area.focus-area .mission-vision {
        padding: 15px 18px;
    }

    .apply-now {
        font-size: 13px;
        line-height: 25px;
    }

    .apply-now img {
        width: 11px;
        top: -1px;
        position: relative;
    }

    .focus-area.focus-area .vision-para p {
        line-height: 23px;
    }

    .involved-section {
        padding: 30px 0;
    }

    .involved-info .offer-info h2 {
        margin-bottom: 14px;
    }

    .accordian-wrapper.accordian-wrapper .accordion-button {
        font-size: 15px;
        padding: 8px 12px 8px 22px;
        gap: 18px;
        line-height: 20px;
    }

    .accordian-wrapper.accordian-wrapper .accordion-body {
        padding: 0px 12px 8px 20px;
    }

    .accordian-wrapper.accordian-wrapper .accordion-button::after {
        width: 28px;
        height: 28px;
    }

    .accordian-wrapper.accordian-wrapper .accordion-body p {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 8px;
    }

    .accordian-wrapper.accordian-wrapper .accordion-flush .accordion-item {
        border-radius: 24px;
    }

    .involved-fig {
        width: 300px;
        margin-top: 16px;
    }

    .involved-info {
        max-width: 100%;
    }

    img.degree-ing {
        width: 80px;
    }

    .view-classroom {
        padding: 30px 0;
    }

    .room-info {
        margin-bottom: 20px;
    }

    .gallry-hding h2 {
        margin-bottom: 14px;
    }

    .view-classroom:after {
        height: 100px;
    }

    .gallery-slider.gallery-slider .owl-dots {
        margin-top: 6px;
    }

    .gallery-slider figure {
        border-radius: 25px;
    }

    .footer {
        padding: 0px 0 5px;
    }

    .footer-logo {
        width: 90px;
        margin-bottom: 20px;
    }

    .footer-logo-dtls {
        max-width: 100%;
    }

    .footer-tiu {
        gap: 15px;
        margin-bottom: 10px;
    }

    .footer-tiu h5 {
        font-size: 14px;
        padding-left: 18px;
    }

    .tiu-innfo {
        font-size: 13px;
        margin-bottom: 11px;
    }

    .techno-india a {
        font-size: 14px;
    }

    .footer-lists {
        margin-top: 15px;
    }

    .footer-lists h4 {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 8px;
    }

    .footer-lists ul{
        column-count: 2;
    }

    .footer-lists ul li {
        margin-bottom: 5px;
    }

    .dtls-contact i {
        height: 35px;
        width: 35px;
        font-size: 14px;
    }

    .dtls-contact {
        padding-left: 45px;
        margin-bottom: 15px;
    }

    .dtls-address p {
        font-size: 13px;
    }

    .dtls-address {
        padding-top: 4px;
    }

    .social-media li a i {
        height: 35px;
        width: 35px;
        font-size: 14px;
    }

    ul.social-media {
        gap: 10px;
        padding-top: 22px;
    }

    .copy-right {
        font-size: 12px;
        margin-top: 5px;
        padding-top: 5px;
    }

    .gallery-wrapper {
        padding: 0 14px;
    }

    .header-lists{
        display: none;
    }

    .bar-dtls, .times-cross {
        display: block !important;
        color: white;
        font-size: 20px;
        z-index: 12;
        position: absolute;
        right: 30px;
    }

    .times-cross{
        display: none !important;
    }

    .hdr-rspnsive.hdr-rspnsive .fa-bars{
        display: none !important;
    }

    .hdr-rspnsive.hdr-rspnsive .times-cross{
        display: block !important;
    }

    .header-lists {
        display: block;
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        /* background: #ea4646; */
        background: #241e1e;
        height: 100dvh;
        padding: 65px 30px 40px;
        transition: all 0.4s ease-in-out;
        z-index: 11;
        text-align: center;
    }

    .header-lists li a {
        font-size: 20px;
        padding-bottom: 4px;
    }

    .header-lists li{
        margin-bottom: 10px;
    }

    .hdr-rspnsive.hdr-rspnsive {
        left: 0;
    }

    .fig-list {
        padding-top: 10px;
        column-count: 2;
    }

    .comn-sec.about-section .fig-abt{
        margin: 25px auto 55px;
    }

    .comn-sec.news-section.news-section{
        padding-top: 0px !important;
    }
    
}

@media only screen and (max-width: 768px){

    .comn-sec.news-section.news-section{
        padding-top: 0px !important;
    }
}    

@media only screen and (max-width: 767px){

    .banner-section {
        padding: 0px;
    }

    .banner-figure {
        width: 100%;
        margin: 0px auto;
    }

    .mute-button {
        top: 60px;
     }

    .company-left.right-company ul li,
    .company-left.compny-scnd ul li{
        width: 100%;
     }

     .glnce-dtls.glnce-dtls ul li {
        width: 100% !important;
        padding: 8px;
    }

    .upcoming-game .dtls-info h4 {
        margin-top: 10px;
        font-size: 22px;
        margin-bottom: 6px;
    }

    .upcoming-game.upcoming-game .mission-vision .vision-para p{
        font-size: 16px !important;
    }

    .foundr-pic-bx figure img {
        max-width: 100%;
        width: 100%;
    }

    .comn-sec.comn-sec{
        padding: 60px 20px 50px;
    }

    .mivi-hding span {
        font-size: 17px;
    }

    .mivi-hding h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .mivi-info h3 {
        margin-bottom: 8px;
        font-size: 20px;
    }

    .mivi-info p {
        font-size: 14px !important;
    }

    .mivi-info{
        margin-bottom: 12px;
    }

    .row-revrse {
        margin-top: 20px;
    }

    .strategy-dtls h4 {
        font-size: 17px;
        margin-bottom: 11px;
    }

    .strategy-dtls ul li {
        font-size: 13px;
        margin-bottom: 4px;
        display: flex;
        gap: 5px;
    }

    .strategy-dtls ul li i {
        font-size: 13px;
        position: relative;
        top: 0px;
    }

    .strategy-dtls ul li i img {
        width: 22px;
    }

    .strategy-dtls {
        padding: 12px 16px;
        margin-bottom: 12px;
    }

    .mivi-hding {
        margin-bottom: 5px;
    }

    .value-section.value-section .mivi-info p {
        line-height: 24px;
    }

    .mivi-info span{
        font-size: 14px;
    }

    
}

@media only screen and (max-width: 575px){

    .tg-fig{
        text-align: center;
    }

    .foundr-pic-bx{
        margin-bottom: 25px !important;
    }

    h1 {
        font-size: 24px;
        line-height: 32px;
    }

    p {
        line-height: 22px;
    }

    .banner-section p {
        margin-bottom: 22px;
        line-height: 20px;
        font-size: 14px;
    }

    .red-btn {
        height: 34px;
        padding: 0 21px;
        font-size: 12px;
    }

    .container {
        padding: 0 15px;
    }

    .banner-figure {
        width: 100%;
        margin: 0px auto 2px;
    }

    .banner-wrapper.banner-wrapper .owl-dot, .gallery-slider.gallery-slider .owl-dot {
        height: 6px;
        width: 6px;
        margin: 0 2px;
    }

    .banner-section {
        padding: 50px 0 12px;
    }

    .about-info {
        margin-bottom: 15px;
        flex-direction: column;
    }

    .about-info p {
        max-width: 100%;
        line-height: 22px;
        z-index: 8;
        margin-top: 8px;
    }

    h2 {
        font-size: 24px;
        line-height: 30px;
    }

    h3 {
        font-size: 16px;
        line-height: 22px;
    }

    .about-info-left::after {
        top: -25px;
        left: -12px;
        height: 110px;
        width: 110px;
    }

    .about-us {
        padding: 20px 0;
    }

    .dtls-info {
        gap: 7px;
        margin-bottom: 4px;
    }

    .vision-para {
        gap: 3px;
        margin-bottom: 6px;
    }

    .upcoming-game.mission-vision {
        padding: 12px;
        margin-bottom: 18px;
    }

    .about-us .offer-info {
        margin-top: 15px;
    }

    .offer-info h2 {
        margin-bottom: 10px;
    }

    ul.offer-list {
        column-count: 1;
    }

    .offer-list li {
        margin-bottom: 10px;
    }

    .waiting {
        max-width: 250px;
        margin: 10px auto 4px;
    }

    .journey-section figcaption {
        font-size: 22px;
        line-height: 27px;
        margin-bottom: 10px;
    }

    .detls-jrny figure {
        height: 60px;
        width: 60px;
        padding: 12px;
        border: 4px solid black;
    }

    .detls-jrny {
        gap: 8px;
    }

    .detls-jrny p {
        line-height: 18px;
    }

    .journey-section {
        padding: 20px 0;
    }

    .focus-area {
        padding: 20px 0 10px;
    }

    .focus-area.focus-area .mission-vision {
        padding: 12px 15px;
        border-radius: 20px;
    }

    .focus-area.focus-area .vision-para p {
        line-height: 21px;
    }

    .involved-section {
        padding: 20px 0;
    }

    .accordian-wrapper.accordian-wrapper .accordion-button {
        font-size: 14px;
        padding: 8px 12px 8px 22px;
        gap: 18px;
        line-height: 18px;
    }

    .accordian-wrapper.accordian-wrapper .accordion-button::after {
        width: 27px;
        height: 27px;
    }

    .involved-fig {
        width: 260px;
        margin-top: 12px;
    }

    img.degree-ing {
        width: 60px;
    }

    .room-info {
        margin-bottom: 15px;
    }

    .gallry-hding h2 {
        margin-bottom: 10px;
    }

    .gallery-wrapper {
        padding: 0 10px;
    }

    .view-classroom:after {
        height: 80px;
    }

    .gallery-slider.gallery-slider .owl-dots {
        margin-top: 2px;
    }

    .view-classroom {
        padding: 20px 0;
    }

    .footer {
        padding: 0px 0 5px;
    }

    .footer-lists ul li {
        margin-bottom: 2px;
    }

    .footer-lists ul li a {
        font-size: 13px;
    }

    .accordian-wrapper.accordian-wrapper .accordion-body p {
        line-height: 20px;
        margin-bottom: 6px;
    }

    .dtls-address p a {
        margin-top: 0px;
    }

    .header-left figure a:first-child img {
        width: 200px;
    }

    .header-left figure a img {
        width: 55px;
    }

    .header {
        padding: 14px 15px 0;
    }

    .sticky_hdr .header {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .header-lists li a {
        font-size: 16px;
        padding-bottom: 3px;
    }

    .header-lists {
        text-align: left;
    }

    .focus-area .offer-info h2 {
        margin-bottom: 10px;
    }

    .involved-info .offer-info h2 {
        margin-bottom: 10px;
    }

    .company-section.company-section .col-lg-2 {
        margin-bottom: 0px;
    }

    .comn-sec.comn-sec.comn-sec,.mango-revolution-section.mango-revolution-section {
        padding: 15px 10px;
    }

    .foundr-pic-bx figure img{
        width: 100%;
    }

    .latest-news .latest-news-slider ul li.thmb_picbx {
        width: 100% !important;
        
    }

    .latest-news .latest-news-slider ul li.nws-detl {
         width: 100% !important;
         padding-left: 0px !important;
        }

    .latest-news .latest-news-slider .nws-detl h4{
        font-size: 17px;
    }

   
        .latest-news .latest-news-slider ul li.thmb_picbx:after {
            position: absolute;
            content: "";
            width: 89%;
            height: 90%;
            border: 2px solid #fff;
            top: 19px;
            right: 1px;
            border-radius: 10px;
        }

        .comn-sec.about-us h6 {
            font-weight: 600;
            font-size: 22px;
            margin-top: 12px;
            margin-bottom: 8px;
            line-height:25px;
        }

        .about-us .about-info-left:after{
            display: none;
        }

        .about-info-left .w-100 {
            width: 175px !important;
            float: none;
            margin: 0px auto;
        }

        .about-info-left{
            padding-left: 0;
        }
        .about-us .about-info-left {
            float: none;
            margin: 0px auto;
        }

        p {
            font-size: 16px !important;}

        .bnr-tp-new.bnr-tp-new.bnr-tp-new.bnr-tp-new .owl-dots{
            bottom: 5px !important;
            position: absolute;
            width: 100%;
        }

        .ifrme-details iframe {
            max-width: 100%;
            width: 100%;
            height: 100%;
            box-shadow: none;
        }
    

    }








.about-info-left h2 span{
    display: block;
    font-size: 20px;
}



.latest-news{
    border:0px solid #333;
}

.latest-news .thmb_picbx{
    padding: 10px;
}

.latest-news .owl-nav{
    top:25%;
    width: 100%;
    position: absolute;
}

.latest-news .owl-nav .owl-prev{
    float: left;

}

.latest-news .owl-nav .owl-next{
    float: right;

}

.latest-news .owl-nav .owl-prev span,
.latest-news .owl-nav .owl-next span{
    font-size: 65px;
    color:#fff;}

.latest-news .owl-nav .owl-prev span{
        margin-left: -20px;
    }
.latest-news .owl-nav .owl-next span{
        margin-right: -20px;
    } 
    
.latest-news h2{
    text-align: center;
    color:#fff;
}  


.upcoming-game figure,
.upcoming-game figure img {
    width: 100%;
    max-width: 100%;
}

.upcoming-game .dtls-info{
    display: contents
}

.upcoming-game .dtls-info h4{
    margin-top: 10px;
}



.company-section .involved-fig{
    width: 100%;
    background-image: linear-gradient(to bottom, #ffff, #fff, #ffff, #f6f6f6, #ea4646);
    height: 100px;
    border-radius: 10px;
    text-align: center;
    padding: 6px;
}

.company-section .col-lg-2{
    margin-bottom: 20px;
}


.company-section .involved-fig h6{
    font-weight: 600;
    font-size: 16px;
}

.company-section .involved-fig h6 span{
    color: #ea4646;
}


.about-us h6{
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 8px;
    line-height: 55px;
}

.about-us ul{
    margin-top: 15px;
}
.about-us ul li{ 
    margin-bottom: 6px;
}

.about-us hr{
    margin: 15px 0px;
    background-color: #b5b5b5;
}

.upcoming-game figure{
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.about-us .about-info-left{
    position: relative;
}

.about-us .about-info-left:after{
    border-right: 2px solid #ea4646;
    position: absolute;
    height: 100%;
    content: "";
    right: 0;
    top:0
}

.comn-sec.comn-sec{
    padding: 60px 70px 50px;
}

.about-us ul{
    padding-left: 25px;
}

.about-us ul li{
    font-size: 14px;
    list-style: disc;
}

.about-us figure .z-pic{
    width: 100%;
    max-width: 100% ;
}

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


.latest-news {
    color:#fff;
}

.latest-news .latest-news-slider ul li{
    display: inline-block;
    vertical-align: top;
    
}

.latest-news .latest-news-slider ul li.thmb_picbx{
    width: 40%;
    position: relative;
}

.latest-news .latest-news-slider ul li.thmb_picbx:after{
    position: absolute;
    content: "";
     width: 95%;
     height: 90%;
     border:2px solid #fff;
     top:33px;
     right: -3px;
     border-radius: 10px;
}

.latest-news .latest-news-slider ul li.nws-detl{
    width:59%;
    padding-top: 8%;
    padding-left: 60px;
}

.latest-news .latest-news-slider ul li.thmb_picbx figure{
    position: relative;
    z-index: 99;
}

.latest-news .latest-news-slider ul li.thmb_picbx figure a{
    display: block;
    color: #fff;
}

.latest-news .latest-news-slider ul li.thmb_picbx figure img {
    width: 100%;
    max-width: 100%;
}

.latest-news-slider{
    margin-top: 30px;
}

.nws-detl p{
    white-space: nowrap; 
    width: 80%; 
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 10px;
}

.latest-news .latest-news-slider ul li.nws-detl a h4,
.latest-news .latest-news-slider ul li.nws-detl a p{
    color: #fff;
}

.latest-news .latest-news-slider .owl-nav{
   pointer-events: none; 
}

.latest-news .latest-news-slider .owl-nav .owl-prev,
.latest-news .latest-news-slider .owl-nav .owl-next{
    pointer-events: initial; 
 }


.banner-wrapper .owl-nav{
    display: none;
}

.speaker-section{
    background: #043a5b;
}

.speaker-section .foundr-pic-bx{
    text-align: center;
}

.foundr-pic-bx h3{
   font-size: 24px;
   color: #fff;
   margin-top: 10px;
}

.foundr-pic-bx span{
    display: block;
    color: #fff;
}

.crv{
    border-radius: 10px;
    overflow: hidden;
}


.nws-detl .apply-now,
.mango-revolution-wrapper .apply-now{
    color: #fff;
    display: inline-block;
    border:1px solid #fff;
    border-radius: 50px;
    padding: 6px 18px;
    transition: 0.6s;
    margin-top: 15px;
}

.nws-detl .apply-now:hover,
.mango-revolution-wrapper .apply-now:hover{
    background-color:#fff;
    color: #043a5b;
}

.speaker-section h2{
    text-align: center;
    color: #fff;
    margin-bottom: 25px;
}


.mute-button {
    position: absolute;
    top: 110px;
    left: 20px;
    /* background-image: radial-gradient(circle, #02813e, #009b3e, #00b539, #00cf2e, #0bea13); */
    background-color: #f29e0d;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 9;
    line-height: 30px;
    font-size: 20px;
  }
  
  #myVideo{
    width: 100% !important;
    object-fit: cover;
  }


.speaker-section .vdo{
    border-radius: 10px;
    overflow: hidden;
    height: 315px;
  }

.mango-revolution-section{
    padding: 50px 0 0;
}

.mango-revolution-section figure img{
    width: 100%;
    max-width: 100%;
}

.mango-revolution-section h2{
    text-align: center;
    margin-bottom: 25px;

}
.gallery-slider-new{
    margin-top: 20px;
}

.gallery-slider-new figure {
    overflow: hidden;
}


.technolgy-info {
    margin-bottom: 30px;
}

.technolgy-info {
    border-radius: 9px;
    overflow: hidden;
    margin: 2px 3px;
}

.technolgy-info figure {
    overflow: hidden;
}

.technolgy-info figure img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.technolgy-info-abtt {
    padding: 12px 10px;
    height: 80px;
    background-color: #fff;
}

.technolgy-info-abtt h3 {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 20px;
    color:#000;
}

.mango-revolution-wrapper{
    background-image: linear-gradient(to bottom, #ffffff, #fff, #42aef1, #043a5b);
    padding: 25px 60px 35px 60px;
    text-align: center;
}


.media-gallery-section .media-bx{
    margin-bottom: 20px;
    max-height: 300px;
}



@media only screen and (max-width: 1199px){
    .banner-section{
        background: #25273d;
        height: auto !important;}
}


@media only screen and (max-width: 991px){

    .company-section .involved-fig h6 {
        font-size: 12px;
    }

    .bnr-tp-new.bnr-tp-new {
        margin-top: 60px;
        height: auto !important;
    }

    .bnr-tp-new.bnr-tp-new.bnr-tp-new.bnr-tp-new .owl-dots{
        bottom: 10px;
        position: absolute;
        width: 100%;
    }

}




.content-main {
    display: flex;
    flex-wrap: wrap;
    padding: 0 60px
}
.image-box, .content-box {
    width: 50%;
    box-sizing: border-box;
}
.content-box {
    /* border: 1px solid #ddd; */
    padding: 30px;
}
.content-box h2 {
    margin-top: 0;
    font-size: 32px;
    position: relative;
    padding-left: 42px;
}
.content-box h2:before {
    position: absolute;
    content: '';
    top: 2px;
    left: -5px;
    width: 46px;
    height: 46px;
    background: url(../images/logo-tg.png) no-repeat;
    background-size: contain;
}
.content-box ul {
    padding-left: 20px;
}
.image-box img {
    width: 100%;
    height: auto;
    margin-top: 40px;
}
.comn-sec.tgl_companies {
    padding: 30px 0 50px;
}
.content-main:nth-child(even) {
    background: #dddddd78;
}
.content-box li {
    list-style: disc;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 8px;
    color: #000;
}
.content-box p strong {
    font-size: 17px;
    margin: 6px 0;
    display: block;
    color: #ec262a;
}
a.con_us {
    background: #ed2529;
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    margin-top: 12px;
    display: inline-block;
    text-transform: capitalize;
}
.content-box p {
    font-size: 16px;
    color: #000;
}


@media only screen and (max-width:640px){

    .fig-list.fig-list {
        padding-top: 10px;
        column-count: auto !important;
        margin-bottom: 10px !important;
    }
}




@media only screen and (max-width:575px){
    .content-main {
        padding: 0 15px;
        flex-direction: column;
    }
    .image-box, .content-box {
        width: 100%;
    }
    .content-box h2 {
        font-size: 28px;
        padding-left: 32px;
    }
    .content-box h2:before {
        top: 0px;
        left: -3px;
        width: 34px;
        height: 34px;
    }
    .content-box {
        padding: 0;
        margin-top: 15px;
    }
    .content-main:nth-child(even) {
        margin-top: 15px;
        flex-direction: column-reverse;
        padding-bottom: 15px;
    }
    .comn-sec.tgl_companies {
        padding: 0 !important;
    }
    .content-box li,.content-box p {
        font-size: 15px;
    }
    .content-box p strong {
        font-size: 16px;
    }

    ul.key-lists li {
        width: 100%;
        margin-bottom: 14px;
    }

    .list-dtls figure {
        max-width: 90px;
        margin: 0 auto 12px;
        height: auto;
    }

    .ass-h1.ass-h1{
        font-size: 26px;
        padding-left: 20px;
    }

    .global-info figure {
        width: 230px;
        margin: 0 auto 15px;
    }

    .list-dtls h4 {
        font-size: 16px;
        line-height: 22px;
    }

    .flip-wrap{
        margin-bottom: 14px;
    }

    ul.flip-list {
        min-height: auto;
    }

    .asso-fig {
        max-width: 200px;
    }

    .asso-fig {
        max-width: 200px;
        margin-bottom: 25px;
    }

    .asso-dtls h3 {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .bnr-tp-new.bnr-tp-new {
        margin-top: 50px !important;
    }

    .nw-hdr.nw-hdr {
        padding-top: 26px;
        padding-bottom: 26px;
    }

    .list-dtls {
        padding: 12px 16px;
    }

}





.about_left img {
    max-width: 350px;
}
.about_left {
    float: left;
    padding: 0 60px 35px 0;
}
.about_right_content h3 {
    font-size: 22px;
    margin-bottom: 3px;
}
.about_right_content p {
    margin-bottom: 10px;
}
.about_right_content ul li {
    list-style: disc;
    list-style-position: inside;
    margin: 5px 0;
    font-size: 15px;
}
.about_right_content ul {
    margin: 15px 0;
}







.header .header-left{
    position: absolute;
    top: 0px;
    width: 92px;
}

.header .header-left figure img {
    max-width: 100%;
}









.card{
    background-image: url(../images/techno-india-university-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding: 40px 0;
}
.card_img img {
    width: 100%;
}

/* ================ */

.convo-img {
    max-width: 650px;
    margin: auto;
    margin-top: 30px;
}

.convo-wrapper{
    padding-top: 50px;
}

.convo-img img{
    width: 100%;
}

.convo-img img {
    width: 100%;
    border-radius: 10px;
}

.convo-img a{
    display: block;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 7px;
    border-radius: 10px;
}




@media only screen and (max-width: 1560px) {
    .sectn-neew.sectn-neew.sectn-neew.sectn-neew {
        padding-top: 40px;
    }

    .convo-img {
        max-width: 550px;
        margin-top: 25px;
    }
}


@media only screen and (max-width: 767px) {
    .header .header-left.header-left.header-left {
        top: 4px;
        width: 42px;
    }

    .banr-innr.banr-innr {
        height: 250px;
    }

    .banr-innr h1 {
        font-size: 34px;
        padding-left: 40px;
    }

    .banner-top h2 {
        font-size: 20px;
        margin-bottom: 0;
        letter-spacing: .5px;
        line-height: 35px;
        padding-left: 30px;
    }

    .banner-top {
        height: 300px;
    }

    .abt-detailss h2 {
        margin-bottom: 10px;
    }

    .fig-abt:after{
        display: none;
    }

    .abt-detailss {
        margin-bottom: 18px;
    }

    .list-info h4 {
        font-size: 14px;
    }

    .list-info img {
        height: 38px;
        width: 38px;
        padding: 6px;
    }

    .list-info {
        gap: 10px;
    }

    .fig-list {
        padding-top: 18px;
    }

    .fig-list li {
        margin-bottom: 8px;
    }

    .news-wrapper {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 15px;
    }

    figure.nws-fig {
        width: 100%;
    }

    .news-tg {
        background: #0AC775;
        transition: 0.4s all;
        width: 100%;
    }

    .news-wrapper h5 {
        font-size: 15px;
        margin-bottom: 10px;
        line-height: 20px;
    }

    .news-tg p {
        font-size: 14px !important;
        font-weight: 400;
        line-height: 22px;
        margin-bottom: 8px;
    }

    .nws-fig img {
        height: auto;
        width: 100%;
    }

    .news-tg h6 {
        font-size: 15px;
        gap: 6px;
    }

    .four-wrapper.four-wrapper{
        flex-direction: column;
    }

    .news-tg a {
        padding: 15px 10px;
    }

    .news-section.news-section .latest-news h2 {
        margin-bottom: 10px;
    }

    .dtls-info.dtls-info.dtls-info.dtls-info h4 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 4px;
    }

    .upcoming-game.upcoming-game .mission-vision .vision-para p {
        font-size: 14px !important;
    }

    .technolgy-info-abtt {
        height: auto;
    }

    .bnr-tp-new.bnr-tp-new {
        margin-top: 60px;
        height: 240px;
    }

    /* ================ */

    .convo-wrapper {
        padding-top: 10px;
    }

    .convo-img {
        margin-top: 12px;
    }

    .founder-frame {
        height: 250px;
        margin-top: 30px;
    }
}



/* ======== Onload modal ========== */

.modal-body figure img{
    max-width: 100%;
    border-radius: 5px;
}

.close {
    position: absolute;
    top: -18px;
    right: -18px;
    cursor: pointer;
    font-size: 23px;
    background: #c50100 !important;
    color: #fff;
    font-weight: 400;
    width: 27px;
    height: 27px;
    text-align: center;
    border-radius: 50%;
    transition: all .4s ease-in-out;
    z-index: 9999;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.modal, body{
    padding-right: 0 !important;
}

.modal.show .modal-dialog {
    max-width: 500px;
}

.pp-mdl.pp-mdl .modal-dialog{
    max-width: 800px;
}

.modal-body {
    padding: 5px;
}

.btn-close:hover{
    opacity: 1;
}


.about-section .fig-info h4{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-section .fig-list-bx h5{
    font-size: 15px;
    font-weight: 600;
}

.about-section .fig-list-bx h5 span{
    font-size: 15px;
    font-weight: 400;
}

.about-section .fig-list-bx .list-info img {
    height: 31px;
    width: 31px;
    padding: 7px;
}

.abt-detailss p{
    text-align: left;
}


