 .hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #2a5298 100%);
      padding: 64px 24px 52px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-badge {
      display: inline-block;
      background: rgba(200,152,42,.18);
      border: 1px solid rgba(200,152,42,.5);
      color: var(--gold-lt);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 50px;
      margin-bottom: 20px;
    }
    .hero h1 {
       
      font-size: clamp(2rem, 5vw, 3.2rem);
      color: var(--white);
      margin-bottom: 14px;
      line-height: 1.2;
    }
    .hero h1 span { color: var(--gold-lt); }
    .hero p {
      color: rgba(255,255,255,.75);
      font-size: 1.05rem;
      max-width: 640px;
      margin: 0 auto 28px;
    }
    .hero-stats {
      display: flex;
      gap: 32px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .hero-stats .stat { color: rgba(255,255,255,.9); }
    .hero-stats .stat strong {
      display: block;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--gold-lt);
    }
    .hero-stats .stat span { font-size: .85rem; opacity: .8; }
 
  
 
    .section-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .section-title {
       
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      color: var(--navy);
      margin-bottom: 8px;
    }
    .section-sub {
      color: var(--muted);
      margin-bottom: 40px;
      font-size: .97rem;
    }
 
    /* ── INSTITUTE ACCORDION ── */
    .institute-block {
      margin-bottom: 16px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--white);
    }
 
    .institute-toggle {
      width: 100%;
      background: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px 24px;
      text-align: left;
      transition: background .2s;
      border: 1px solid;
      border-radius: 7px;
    }
    .institute-toggle:hover { background: #f0f4ff; }
    .institute-toggle.open {background: #ff8700;}
 
    .inst-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
      transition: background .2s;
    }
    .institute-toggle .inst-icon { background: rgba(26,58,114,.1); }
    .institute-toggle.open .inst-icon { background: rgba(255,255,255,.12); }
 
    .inst-info { flex: 1; }
    .inst-info .inst-tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2px;
    }
    .institute-toggle.open .inst-info .inst-tag { color: var(--gold-lt); }
    .inst-info .inst-name {
      font-size: 18px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.3;
    }
    .institute-toggle.open .inst-info .inst-name { color: var(--white); }
    .inst-info .inst-desc {
      font-size: .82rem;
      color: var(--muted);
      margin-top: 2px;
    }
    .institute-toggle.open .inst-info .inst-desc { color: rgba(255,255,255,.6); }
 
    .toggle-arrow {
      font-size: 1.2rem;
      color: var(--navy);
      transition: transform .3s;
      flex-shrink: 0;
    }
    .institute-toggle.open .toggle-arrow {
      transform: rotate(180deg);
      color: var(--white);
    }
 
    /* ── FAQ PANEL ── */
    .faq-panel {
      display: none;
      padding: 0 24px 20px;
    }
    .faq-panel.open {display: block;border: 1px solid;border-top-right-radius: 15px;border-top-left-radius: 15px;}
 
    /* Course group */
    .course-group { margin-top: 20px; }
    .course-group-title {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
      padding-bottom: 6px;
      border-bottom: 2px solid #7a6959;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .course-group-title::before {
      content: '';
      display: inline-block;
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
    }
 
    /* Individual FAQ item */
    .faq-item {
      border: 1px solid #56020c;
      border-radius: 8px;
      margin-bottom: 8px;
      overflow: hidden;
      background: var(--gray);
    }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      cursor: pointer;
      padding: 14px 16px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.4;
      transition: background .15s;
    }
    .faq-q:hover { background: #eef1f9; }
    .faq-q.open {background: #796858;color: white;}
    .faq-q-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--white);
      font-size: .75rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .faq-q.open .faq-q-icon { background: var(--blue); }
    .faq-arrow {
      margin-left: auto;
      font-size: .8rem;
      color: var(--muted);
      flex-shrink: 0;
      transition: transform .25s;
      margin-top: 3px;
    }
    .faq-q.open .faq-arrow { transform: rotate(180deg); color: var(--blue); }
    .faq-a {
      display: none;
      padding: 21px 16px 14px 24px;
      font-size: 16px;
      color: black;
      line-height: 1.7;
    }
    .faq-a.open { display: block; }
 
    /* ── SEARCH ── */
    .search-wrap {
      position: relative;
      margin-bottom: 36px;
    }
    .search-wrap input {
      width: 100%;
      padding: 14px 48px 14px 20px;
      border: 2px solid var(--border);
      border-radius: 50px;
      font-family: inherit;
      font-size: .97rem;
      color: var(--text);
      background: var(--white);
      outline: none;
      transition: border-color .2s, box-shadow .2s;
    }
    .search-wrap input:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(26,58,114,.1);
    }
    .search-wrap .search-icon {
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      font-size: 1.1rem;
      pointer-events: none;
    }
 
    /* ── APPLY CTA ── */
    .cta-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      margin-top: 31px;
    }
    .cta-strip h3 {
       
color: black;
       
margin-bottom: 4px;
    }
    .cta-strip p {color: black;font-size: 20px;font-weight: 600;margin-top: 13px;}
    .cta-btn {
      background-color: #ff4622;
    color: #fff !important;
    font-size: 16px !important;
    display: inline-block;
    padding: 19px 40px;
    line-height: 10px;
    height: 45px;
    font-weight: 100;
    letter-spacing: 0.8px;
    text-align: center;
    margin-right: 20px;
    border: 0;
    text-transform: uppercase;
    box-shadow: 3px 2px 11px -2px #000000;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    }
    .cta-btn:hover { background-color: #ff4622;
    color: #fff !important;
    font-size: 16px !important;
    display: inline-block;
    padding: 19px 40px;
    line-height: 10px;
    height: 45px;
    font-weight: 100;
    letter-spacing: 0.8px;
    text-align: center;
    margin-right: 20px;
    border: 0;
    text-transform: uppercase;
    box-shadow: 3px 2px 11px -2px #000000;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
 
    /* ── NO RESULTS ── */
    #no-results {
      display: none;
      text-align: center;
      padding: 40px;
      color: var(--muted);
    }
 
    @media (max-width: 600px) {
      .hero { padding: 48px 20px 40px; }
      .hero-stats { gap: 20px; }
      .cta-strip { flex-direction: column; text-align: center; }
      .institute-toggle { padding: 16px 18px; gap: 12px; }
      .inst-icon { width: 36px; height: 36px; font-size: 1rem; }
    }
	.container333 {
    margin-top: 6%;
}


@media (min-width: 240px) and (max-width: 599px)  {
.container333 {
    margin-top: 6%;
    display: inline-block;
}
}
.mobile {
    display: none !important
}

.homeadmipapply1 {
    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    color: #ff1616 !important;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 15px
}

.tab-contents1 {
    position: relative;
    top: 0;
    margin-top: 3%;
    background: #eaf3f5 !important;
    background: linear-gradient(90deg,rgba(234,243,245,1) 0,rgba(239,241,237,1) 45%,rgba(248,236,224,1) 100%) !important;
    border: 0;
    height: 520px;
    overflow-y: scroll;
    padding: .5em 2em 1em;
    margin-bottom: 5%
}

@keyframes blinker {
    0 {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

p.homeadmip {
    background: #ffa700;
    text-align: center;
    padding: 8px 8px;
    margin: 0 !important;
    font-size: 18px
}

p.homeadmip1 {
    background: #f1604d;
    text-align: center;
    font-size: 20px;
    padding: 5px 6px
}

p.homeadmip1 a {
    color: white;
    text-transform: uppercase
}

.homelancol2le h3 {
    color: #f75537;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 53px;
    text-shadow: 3px 1px 7px #7e7e7e
}

.homerouleftbg1 {
    background: #ffe18f;
    height: 40px;
    width: 40px;
    display: block;
    border-radius: 50%;
    position: absolute;
    left: 12em;
    box-shadow: 1px 1px 7px -1px;
    top: 1em
}

.homelancol2ri {
    padding-right: 0
}

.homesqbg {
    background: #ffa700;
    height: 40px;
    width: 40px;
    display: block;
    top: 26%;
    position: absolute;
    left: 17%;
    box-shadow: 1px 1px 7px -1px
}

.homerouleftbg {
    background: #f1604d;
    height: 40px;
    width: 40px;
    display: block;
    position: absolute;
    border-radius: 50%;
    left: 2.8em;
    bottom: -1.8em;
    box-shadow: 1px 1px 7px -1px
}

.target1 {
    animation-duration: 3s;
    animation-name: slidein;
    position: absolute;
    top: 30%
}

@keyframes slidein {
    from {
        margin-left: 100%;
        width: 300%
    }

    to {
        margin-right: 0;
        width: 100%
    }
}

.target {
    animation-duration: 3s;
    animation-name: slidein;
    position: absolute;
    top: 99%
}

@keyframes slidein {
    from {
        margin-left: 100%;
        width: 300%
    }

    to {
        margin-left: 0;
        width: 100%
    }
}

.fade-in {
    animation: fadeIn ease 8s;
    -webkit-animation: fadeIn ease 8s;
    -moz-animation: fadeIn ease 8s;
    -o-animation: fadeIn ease 8s;
    -ms-animation: fadeIn ease 8s
}

@keyframes fadeIn {
    0 {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-moz-keyframes fadeIn {
    0 {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0 {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-o-keyframes fadeIn {
    0 {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-ms-keyframes fadeIn {
    0 {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.block-header {
    overflow: hidden;
    position: relative;
    padding-bottom: 11px;
    margin-bottom: 40px;
    background: #333;
    width: 50%;
    border-top-right-radius: 75px;
    padding: 30px 0 30px 10%
}

.block-header:after {
    position: absolute;
    content: "";
    top: auto;
    bottom: 0;
    left: 0;
    right: auto
}

.block-header:after {
    width: 39px;
    height: 1px
}

.block-header .block-header-heading {
    margin: 0 0 6px
}

.block-header p {
    margin: 0
}

.upcoming-events-list {
    margin-bottom: 0
}

.upcoming-events-list>li {
    overflow: hidden;
    margin-bottom: 30px
}

.upcoming-events-list>li+li {
    padding-top: 40px;
    border-top: 1px solid #e8e8e8
}

.upcoming-events-list .time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    letter-spacing: -0.6px;
    font-size: 20px;
    line-height: 1
}

.upcoming-events-list .alignright {
    margin: 0 auto 15px;
    max-width: 221px;
    float: none
}

.upcoming-events-list .alignleft {
    float: none
}

.upcoming-events-list .date {
    font-size: 40px
}

.upcoming-events-list .month {
    font-size: 14px;
    margin-bottom: 3px
}

.upcoming-events-list .day {
    width: 100%;
    padding-top: 6px
}

.upcoming-events-list .description-wrap {
    overflow: hidden;
    padding-top: 7px
}

.upcoming-events-list address {
    margin: 0 0 12px;
    color: #b1b1b1;
    padding: 0 150px 0 0
}

.upcoming-events-list .list-heading {
    text-transform: none;
    font-weight: 400;
    margin: 0 0 8px
}

.upcoming-events-list .btn {
    vertical-align: top;
    min-width: 107px
}

.fixmo-banner .col-left-banner {
    padding: 0
}

.fixmo-banner .col-right-banner {
    padding: 0
}

.fixmo-banner .wrap-banner-title {
    display: block
}

.wrap-banner-title {
    position: absolute;
    top: 43.5%;
    left: 23.7%;
    display: none;
    width: 665px;
    height: 485px;
    background-color: #fff;
    border-top-right-radius: 75px;
    box-shadow: 0 9px 21px -1px #000
}

.wrap-banner-title .frame-title {
    padding: 25px 55px 0 30px
}

.title-heading.small {
    font-size: 16px;
    letter-spacing: 3.2px;
    line-height: 20px;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase
}

.wrap-banner-title .frame-title h2 {
    border-bottom: 1px solid #052336;
    margin-top: 20px;
    margin-bottom: 12px;
    padding-bottom: 7px;
    font-size: 42px !important;
    font-weight: bold
}

.title-heading.big {
    letter-spacing: 0;
    font-weight: 400;
    font-style: normal
}

h2.title-heading.big label {
    font-weight: bold !important;
    color: #e54600
}

h2.title-heading.big span {
    color: #ec4944
}

.title-small {
    font-size: 20px;
    font-weight: 100;
    letter-spacing: 0;
    line-height: inherit;
    color: black
}

.wrap-banner-title .frame-button {
    padding: 15px 0 0 33px
}

.fixmo-button.big {
    padding: 18px 21px 18px 21px
}

.fixmo-button.bg-red {
    background-color: #ff4622;
    color: #fff;
    font-size: 18px !important;
    display: inline-block;
    padding: 15px 5px;
    line-height: 10px;
    height: 36px;
    font-weight: 100;
    letter-spacing: .8px;
    font-size: 18px;
    width: 25%;
    text-align: center;
    margin-right: 20px
}

.fixmo-button.shadow {
    box-shadow: 0 3px 20px 0 rgb(0 0 0 / 7%)
}

.frame-button .fixmo-button {
    margin-right: 0
}

.fourbgimg .container-fluid {
    padding: 0
}

.fixmo-button .icon {
    padding-left: 31px;
    font-size: 9px;
    padding-top: 7px
}

.img-banner {
    width: 100%;
    height: 760px !important;
    object-fit: cover
}

.variable-width2 {
    margin: 0
}

.alignright img {
    height: 352px;
    width: 100%;
    object-fit: cover;
    margin: 0
}

header.block-header p {
    color: white;
    font-weight: 100
}

h2.block-header-heading {
    font-weight: bold;
    color: #ff4622
}

section.upcoming-events-block p {
    color: #b1b1b1;
    font-weight: 100
}

hr.recenhr {
    border-top: 2px solid #f9e01a;
    margin-top: 6px;
    width: 10%;
    float: left
}

ul.list-unstyled.upcoming-events-list {
    width: 95%
}

.tab-contents p {
    color: #b1b1b1
}

.date.fw-normal {
    font-weight: bold;
    color: #002f8c;
    font-size: 45px
}

.month.fw-light.font-lato {
    color: #ff4622;
    margin-left: -8px
}

.day {
    color: #ff4622
}

hr.recenthome {
    border-color: #dfdcdc
}

.list-heading {
    width: 100%;
    font-weight: bold;
    margin-top: 0
}

.homerightcourse {
    border-top: 1px solid #ef7150;
    border-left: 1px solid #ef7150;
    border-right: 1px solid #ef7150;
    border-bottom: 3px solid #ef7150;
    height: 200px;
    width: 200px;
    text-align: center;
    margin-top: 19px;
    color: #ef7150;
    cursor: pointer
}

.homerightcourse:hover {
    background: #f2454a;
    color: #fff;
    box-shadow: 3px 3px 9px 0 #787878
}

.homerightcourse:hover h3 {
    border-bottom: 1px solid #fff
}

.homerightcourse h3 {
    padding-top: 36px;
    font-weight: bold;
    font-size: 19px;
    border-bottom: 1px solid #ef7150;
    padding-bottom: 11px;
    width: 80%;
    margin: 20px auto 0
}

.homerightcourse p {
    font-size: 11px;
    position: absolute;
    bottom: 0;
    right: 20px
}

.homelateup {
    color: #002f8c;
    font-size: 48px !important;
    font-weight: bold;
    background: white;
    width: 50%
}

.allinstihome {
    cursor: pointer
}

.allinstihome::before,.allinstihome::after {
    content: "";
    position: absolute;
    z-index: 3;
    display: block;
    margin: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border: 9px solid #000;
    transition: all .2s linear
}

.allinstihome:hover::before {
    width: calc(94%+4px)
}

.allinstihome::before {
    width: 0;
    height: 100%;
    border-left: 0;
    border-right: 0
}

.allinstihome:hover::after {
    height: 100%
}

.allinstihome::after {
    width: 95%;
    height: 0;
    border-top: 0;
    border-bottom: 0
}
.coursepopup ul li {
    list-style: none;
    margin-bottom: 8px;
}

.coursepopup ul {
    padding: 0;
}

.coursepopup h2 {
    font-weight: 600;
}
.homepopup .modal-content {
    position: absolute;
    right: 0;
    width: 47% !important;
    top: 90px !important;
    left: 0;
    margin: 0px auto;
    z-index: 1111111111111111;
}

.homepopup .modal-header {
    padding: 0
}

.homepopup .close {
    background: #00000000 !important;
    opacity: 1 !important;
    padding: 0 !important;
    border-radius: 50% !important;
    line-height: 0 !important;
    width: auto !important;
    height: auto !important;
    font-size: 26px !important;
    color: #000 !important;
    position: absolute !important;
    top: 5% !important;
    right: 2% !important;
    font-weight: 100 !important;
    z-index: 999;
    text-shadow: none
}

.coursepopup {
    position: relative !important;
    bottom: 0 !important;
    color: black !important;
    padding: 25px 25px !important;
    left: 0 !important;
    right: 0 !important;
	background: transparent !important;
	    display: inline-block;
    width: 100%;
}

.coursepopup h3 {
    font-size: 31px
}

ul.courspred1 li a {
    font-weight: 100;
    color: white
}

.courspred2 {
    background: #002f8c !important
}

li.courspred {
    background: #ff4622
}

.secframelanding h2 {
    font-weight: bold;
    font-size: 36px !important
}

.insthr {
    margin-top: 0 !important;
    margin-bottom: 40px !important
}

ul.courspred1 {
    list-style: none;
    margin: 0;
    padding: 0
}

.text-uppercase {
    text-transform: uppercase;
    font-size: 19px
}

time.time.text-uppercase span {
    line-height: 25px
}

#tab-button {
    display: table;
    table-layout: fixed;
    width: 100% !important;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 10px !important;
    text-align: right !important
}

#tab-button li {
    display: inline-block !important;
    width: 30% !important;
    font-size: 18px !important;
    margin-left: 20px !important
}

#tab-button li a:hover,#tab-button .is-active a {
    border-bottom-color: transparent !important;
    background: #ff4622 !important;
    color: white !important;
    border: 1px solid !important
}

#tab-button li a {
    display: block;
    padding: .5em;
    background: #fff;
    border: 1px solid #000 !important;
    text-align: center !important;
    color: #000 !important;
    text-decoration: none;
    font-weight: 100 !important;
    height: 40px !important
}

#tab-button li:not(:first-child) a {
    border-left: 0
}

.tab-contents {
    position: relative;
    top: -1px;
    margin-top: 0;
    background: #eaf3f5 !important;
    background: linear-gradient(90deg,rgba(234,243,245,1) 0,rgba(239,241,237,1) 45%,rgba(248,236,224,1) 100%) !important;
    border: 0;
    height: 520px;
    overflow-y: scroll
}

.tab-contents h3 {
    color: #000 !important;
    font-weight: bold !important
}

.tab-contents p {
    color: #000 !important
}

div#main-content {
    padding: 0
}

#inner-content,#inner-sidebar {
    position: relative;
    z-index: 1
}

.reseinno {
    background: #fe723a;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px 18px 4px 15px
}

.reseinno ul {
    padding: 0;
    list-style: none
}

.reseinno ul li {
    color: white;
    display: inline-block;
    border-right: 1px solid #000;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 23px
}

.reseinno ul li:last-child {
    border-right: 0
}

.homeinternational {
    background: #fffaf3;
    margin-top: 5%;
    padding-bottom: 4%
}

.interh2 {
    overflow: hidden;
    position: relative;
    margin-bottom: 36px;
    background: #042c71;
    width: 45%;
    border-top-right-radius: 64px;
    padding: 22px 0 22px 10%;
    top: -30px
}

.interh2 h2 {
    color: white;
    font-weight: 500;
    font-size: 40px !important
}

.interh2 strong {
    color: #ff4622
}

ul.internatioul {
    padding: 0;
    list-style: none;
    margin-top: 50%
}

ul.internatioul li {
    border-bottom: 1px solid;
    padding-bottom: 8px;
    padding-top: 12px
}

ul.internatioul li a {
    color: black;
    font-size: 18px
}

ul.internatioul li a i {
    position: absolute;
    right: 20px;
    display: inline-block;
    color: #ff4622
}

ul.internatioul li:last-child {
    border-bottom: 0
}

p.interexplo {
    display: inline-block;
    padding: 14px 45px;
    line-height: 10px;
    height: 35px;
    font-weight: 100;
    letter-spacing: .8px;
    font-size: 18px;
    width: auto;
    text-align: center;
    margin-right: 20px;
    background: #ff4622;
    margin-top: 6%
}

p.interexplo a {
    color: white
}

h3.exploind {
    background: #042c71;
    text-align: center;
    text-transform: uppercase;
    color: white;
    padding: 12px 5px;
    font-weight: bold;
    font-size: 42px
}

.interform {
    background: #fae6cc;
    padding: 24px 36px;
    border-radius: 16px
}

.form-group {
    padding-left: 0;
    margin-bottom: 20px;
    width: 100%;
    float: left
}

select#countryCode {
    width: 40%;
    float: left;
    background: transparent;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
    border-bottom: 2px solid;
    border-radius: 0;
    padding: 0;
    color: black
}

form#interadmiform1 input {
    background: transparent;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
    border-bottom: 2px solid;
    border-radius: 0;
    padding: 6px
}

.buttoncc0001 {
    background: #ff4622;
    text-align: center;
    padding: 8px 25px;
    margin: 0 auto;
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    border: 0;
    line-height: 1.42857143;
    height: 35px;
    width: auto;
    display: block;
    border-radius: 0 !important
}

.interform input::placeholder {
    color: black;
    opacity: 1
}

.interform input:-ms-input-placeholder {
    color: black
}

.interform input::-ms-input-placeholder {
    color: black
}

input#interadminumber {
    width: 60%;
    float: left
}

.variable-width2 img {
    width: 100%;
    margin-top: 78px
}

.slick-slide {
    background: white;
    border-right: 0 !important;
    margin-top: 0;
    padding: 0
}

.variable-width2 .slick-slide {
    margin-top: 0 !important
}

.tab-contents::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #f5f5f5
}

.tab-contents::-webkit-scrollbar {
    width: 12px;
    background-color: #f5f5f5
}

.tab-contents::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #555
}

@media(min-width: 1680px) and (max-width:1919px) {
    .lanpostimgleft {
        margin-top:165px
    }

    .idatest {
        top: 0
    }

    .homelateup {
        font-size: 41px !important
    }

    .homesqbg {
        top: 24%;
        left: 15%
    }

    .homerouleftbg {
        left: 1.8em;
        bottom: -2.5em
    }

    .homelancol2le h3 {
        font-size: 45px
    }

    .homerouleftbg1 {
        left: 11em;
        top: 0
    }

    .homeselectcou {
        width: 105%
    }

    .insthr {
        width: 115%;
        margin-left: -8%
    }

    .wrap-banner-title {
        top: 43.5% !important;
        left: 18.7% !important;
        width: 627px !important
    }

    .variable-width2 img {
        margin-top: 68px !important
    }

    .feature.tag_01 {
        top: 45px !important;
        left: -1% !important;
        width: 35% !important
    }

    .coures-member {
        top: 300px !important;
        left: -2% !important;
        z-index: 2 !important
    }

    .img-bg.pos-rel img {
        width: 69% !important
    }

    .feature.tag_03 {
        left: 27% !important;
        bottom: -45px !important
    }

    .feature.tag_02 {
        right: -60px !important;
        top: 130px !important
    }

    .chose-img-wrapper .video-wrapper {
        right: -40px !important;
        bottom: 133px !important
    }

    .chose-img-wrapper .chose.chose_06 {
        bottom: -70px !important;
        right: -38px !important
    }

    .chose-wrapper.pl-25.pl-lg-0.pl-md-0.pl-xs-0 {
        left: 20%;
        position: relative
    }

    .exploind {
        font-size: 44px;
        width: 125%
    }

    .interform {
        width: 125%
    }

    .homerightcourse {
        height: 180px;
        width: 180px
    }

    p.homeadmip {
        font-size: 15px
    }

    p.homeadmip1 {
        font-size: 17px
    }
}

@media(min-width: 1600px) and (max-width:1679px) {
    .lanpostimgleft {
        margin-top:155px
    }

    p.homeadmip {
        font-size: 15px
    }

    p.homeadmip1 {
        font-size: 17px
    }

    .idatest {
        top: 0
    }

    .homelateup {
        font-size: 39px !important
    }

    .homerightcourse {
        height: 180px;
        width: 180px
    }

    .homesqbg {
        top: 24%;
        left: 15%
    }

    .homerouleftbg {
        left: 1.8em;
        bottom: -2.5em
    }

    .homelancol2le h3 {
        font-size: 43px
    }

    .homerouleftbg1 {
        left: 11em;
        top: 0
    }

    .homeselectcou {
        width: 105%
    }

    .insthr {
        width: 115%;
        margin-left: -8%
    }

    .wrap-banner-title {
        top: 43.5% !important;
        left: 17.7% !important;
        width: 600px !important
    }

    .variable-width2 img {
        margin-top: 65px !important
    }

    .feature.tag_01 {
        top: 45px !important;
        left: -1% !important;
        width: 35% !important
    }

    .coures-member {
        top: 300px !important;
        left: -2% !important;
        z-index: 2 !important
    }

    .img-bg.pos-rel img {
        width: 72% !important;
        margin-left: 8% !important
    }

    .feature.tag_03 {
        left: 27% !important;
        bottom: -45px !important
    }

    .feature.tag_02 {
        right: -25px !important;
        top: 130px !important;
        padding: 25px 30px 25px 30px !important
    }

    .chose-img-wrapper .video-wrapper {
        right: -30px !important;
        bottom: 133px !important
    }

    .chose-img-wrapper .chose.chose_06 {
        bottom: -70px !important;
        right: -5px !important
    }

    .chose-wrapper.pl-25.pl-lg-0.pl-md-0.pl-xs-0 {
        left: 10%;
        position: relative;
        width: 120%
    }

    .exploind {
        font-size: 44px;
        width: 125%
    }

    .interform {
        width: 125%
    }

    ul.tabs1 li {
        line-height: 28px !important;
        padding: 8px 13px !important;
        margin-right: 35px !important;
        height: 40px !important;
        text-align: center !important
    }

    .coures-member .choses.chose_02 {
        z-index: 3 !important;
        left: -4px !important
    }

    .coures-member .choses.chose_03 {
        z-index: 4 !important;
        left: -2px !important
    }

    .coures-member .choses.chose_04 {
        right: 104px !important;
        z-index: 6 !important
    }

    .coures-member span {
        right: 68px !important
    }

    .pos-rel {
        position: relative !important;
        margin-left: 19% !important
    }

    .img-bg::before {
        width: 620px !important;
        height: 455px !important;
        left: -60px !important
    }
}

@media(min-width: 1530px) and (max-width:1599px) {
    .idatest {
        top:0
    }
.homepopup .modal-content {
    width: 55% !important;
    top: 130px !important;
}
    .homelateup {
        font-size: 38px !important
    }

    p.homeadmip {
        font-size: 15px
    }

    p.homeadmip1 {
        font-size: 17px
    }
}

@media(min-width: 1440px) and (max-width:1529px) {
    .idatest {
        top:0
    }

    p.homeadmip {
        font-size: 15px
    }

    p.homeadmip1 {
        font-size: 17px
    }

    .homelateup {
        font-size: 33px !important
    }
}

@media(min-width: 1440px) and (max-width:1599px) {
    .lanpostimgleft {
        margin-top:140px
    }

    p.homeadmip {
        font-size: 15px
    }

    p.homeadmip1 {
        font-size: 17px
    }

    .homerightcourse {
        height: 160px;
        width: 160px
    }

    .homesqbg {
        top: 22%;
        left: 12%
    }

    .homerouleftbg {
        left: 1.8em;
        bottom: -2.5em
    }

    .homelancol2le h3 {
        font-size: 43px
    }

    .homerouleftbg1 {
        left: 11em;
        top: 0
    }

    .homeselectcou {
        width: 105%
    }

    .insthr {
        width: 115%;
        margin-left: -8%
    }

    .wrap-banner-title {
        top: 43.5% !important;
        left: 17.7% !important;
        width: 600px !important
    }

    .variable-width2 img {
        margin-top: 58px !important
    }

    .feature.tag_01 {
        top: 45px !important;
        left: -4% !important;
        width: 42% !important
    }

    .coures-member {
        top: 270px !important;
        left: -5% !important;
        z-index: 2 !important
    }

    .img-bg.pos-rel img {
        width: 72% !important;
        margin-left: 8% !important
    }

    .feature.tag_03 {
        left: 27% !important;
        bottom: -45px !important
    }

    .feature.tag_02 {
        right: -25px !important;
        top: 106px !important;
        padding: 25px 30px 25px 30px !important
    }

    .chose-img-wrapper .video-wrapper {
        right: -25px !important;
        bottom: 133px !important
    }

    .chose-img-wrapper .chose.chose_06 {
        bottom: -70px !important;
        right: -5px !important
    }

    .chose-wrapper.pl-25.pl-lg-0.pl-md-0.pl-xs-0 {
        left: 10%;
        position: relative;
        width: 120%
    }

    .exploind {
        font-size: 37px !important;
        width: 125%
    }

    .interform {
        width: 125%
    }

    .homeinternational .col-md-10 {
        position: relative;
        left: -3%
    }

    .interh2 {
        width: 55%
    }

    ul.tabs1 li {
        line-height: 28px !important;
        padding: 8px 13px !important;
        margin-right: 35px !important;
        height: 40px !important;
        font-size: 13px !important;
        text-align: center !important
    }

    .coures-member .choses.chose_02 {
        z-index: 3 !important;
        left: -4px !important
    }

    .coures-member .choses.chose_03 {
        z-index: 4 !important;
        left: -2px !important
    }

    .coures-member .choses.chose_04 {
        right: 104px !important;
        z-index: 6 !important
    }

    .coures-member span {
        right: 68px !important
    }

    .pos-rel {
        position: relative !important;
        margin-left: 19% !important
    }

    .img-bg::before {
        width: 580px !important;
        height: 400px !important;
        left: -88px !important
    }
}

@media(min-width: 1366px) and (max-width:1439px) {
    .lanpostimgleft {
        margin-top:130px
    }

    .idatest {
        top: 0
    }

    p.homeadmip {
        font-size: 15px
    }

    p.homeadmip1 {
        font-size: 17px
    }

    .homelateup {
        font-size: 33px !important
    }

    #tab-button li {
        width: 35% !important
    }

    .homerightcourse {
        height: 160px;
        width: 160px
    }

    div#main-content {
        padding: 0
    }

    .homesqbg {
        top: 22%;
        left: 12%
    }

    .homerouleftbg {
        left: 1.8em;
        bottom: -2.5em
    }

    .homelancol2le h3 {
        font-size: 38px
    }

    .homerouleftbg1 {
        left: 9em;
        top: 0
    }

    .homeselectcou {
        width: 105%
    }

    .insthr {
        width: 115%;
        margin-left: -8%
    }

    .wrap-banner-title {
        top: 43.5% !important;
        left: 17.7% !important;
        width: 600px !important
    }

    .variable-width2 img {
        margin-top: 54px !important
    }

    .feature.tag_01 {
        top: 45px !important;
        left: -4% !important;
        width: 42% !important
    }

    .coures-member {
        top: 270px !important;
        left: -5% !important;
        z-index: 2 !important
    }

    .img-bg.pos-rel img {
        width: 72% !important;
        margin-left: 8% !important
    }

    .feature.tag_03 {
        left: 27% !important;
        bottom: -45px !important
    }

    .feature.tag_02 {
        right: -25px !important;
        top: 106px !important;
        padding: 25px 30px 25px 30px !important
    }

    .chose-img-wrapper .video-wrapper {
        right: -25px !important;
        bottom: 133px !important
    }

    .chose-img-wrapper .chose.chose_06 {
        bottom: -70px !important;
        right: -5px !important
    }

    .chose-wrapper.pl-25.pl-lg-0.pl-md-0.pl-xs-0 {
        left: 10%;
        position: relative;
        width: 120%
    }

    .exploind {
        font-size: 37px !important;
        width: 125%
    }

    .interform {
        width: 125%
    }

    .homeinternational .col-md-10 {
        position: relative;
        left: -3%
    }

    .interh2 {
        width: 55%
    }

    ul.tabs1 li {
        line-height: 28px !important;
        padding: 8px 13px !important;
        margin-right: 35px !important;
        height: 40px !important;
        font-size: 13px !important;
        text-align: center !important
    }

    .coures-member .choses.chose_02 {
        z-index: 3 !important;
        left: -4px !important
    }

    .coures-member .choses.chose_03 {
        z-index: 4 !important;
        left: -2px !important
    }

    .coures-member .choses.chose_04 {
        right: 104px !important;
        z-index: 6 !important
    }

    .coures-member span {
        right: 68px !important
    }

    .pos-rel {
        position: relative !important;
        margin-left: 19% !important
    }

    .img-bg::before {
        width: 580px !important;
        height: 400px !important;
        left: -88px !important
    }
}

@media(min-width: 1024px) and (max-width:1365px) {
    .lanpostimgleft {
        margin-top:165px
    }

    p.homeadmip {
        font-size: 15px
    }

    p.homeadmip1 {
        font-size: 17px
    }

    .idatest {
        width: 100%;
        position: relative;
        top: 0
    }

    .homelateup {
        background: transparent;
        width: 100%
    }

    .col-md-2.homelancol2ri.desktop {
        display: none
    }

    .target1 {
        display: none
    }

    .lanunderimgleft {
        display: none
    }

    .homesqbg {
        top: 24%;
        left: 15%
    }

    .homerouleftbg {
        left: 1.8em;
        bottom: -2.5em
    }

    .homelancol2le h3 {
        font-size: 70px;
        position: absolute;
        top: 0;
        margin-top: -37%;
        right: 0
    }

    .homerightcourse {
        position: relative;
        width: 49%;
        top: 10px;
        margin-top: 5%;
        margin-bottom: -1%
    }

    .homelanlast {
        margin-left: 0;
        margin-top: 0;
        text-align: center
    }

    .idatest {
        width: 100%
    }

    #tab-button li {
        width: 50% !important
    }


    .block-header {
        width: 65%
    }

    .homerouleftbg1 {
        left: 11em;
        top: 0
    }

    .homeselectcou {
        width: 100%;
        margin-top: 7%
    }

    .insthr {
        width: 115%;
        margin-left: -8%
    }

    .interh2 {
        width: 80%
    }

    .homeinternational .col-md-5 {
        width: 100%
    }

    .homeinternational .col-md-3 {
        width: 100%
    }

    ul.internatioul {
        padding: 0;
        list-style: none;
        margin-top: 0
    }

    p.interexplo {
        margin-top: 2%
    }

    .wrap-banner-title {
        top: 43.5% !important;
        left: 18.7% !important;
        width: 627px !important
    }

    .variable-width2 img {
        margin-top: 42px !important
    }

    section.why-chose-us .col-xl-7.col-lg-7 {
        display: none
    }

    .section-title.mb-30.wow.fadeInUp2.animated p {
        font-size: 22px !important;
        width: auto !important;
        font-weight: 100 !important
    }

    .why-chose-us .container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
        width: 970px !important;
        padding-right: 15px !important;
        padding-left: 15px !important;
        margin-right: auto !important;
        margin-left: auto !important
    }

    .feature.tag_01 {
        top: 45px !important;
        left: -1% !important;
        width: 35% !important
    }

    .coures-member {
        top: 300px !important;
        left: -2% !important;
        z-index: 2 !important
    }

    .img-bg.pos-rel img {
        width: 69% !important
    }

    .feature.tag_03 {
        left: 27% !important;
        bottom: -45px !important
    }

    .feature.tag_02 {
        right: -60px !important;
        top: 130px !important
    }

    .chose-img-wrapper .video-wrapper {
        right: -40px !important;
        bottom: 133px !important
    }

    .chose-img-wrapper .chose.chose_06 {
        bottom: -70px !important;
        right: -38px !important
    }

    .chose-wrapper.pl-25.pl-lg-0.pl-md-0.pl-xs-0 {
        left: 0;
        position: relative
    }

    .exploind {
        font-size: 44px;
        width: 100%
    }

    .interform {
        width: 100%
    }

    .chose-wrapper.pl-25.pl-lg-0.pl-md-0.pl-xs-0 .courspred1 li {
        width: 20% !important
    }
}

@media(min-width: 240px) and (max-width:599px) {
    .homeselectcou {
        width:100% !important
    }
.homepopup .modal-content {
    width: 90% !important;
}
.container3334{
    display: inline-block;
}
.homepopup .close {
    right: 6% !important;
}
.coursepopup .col-md-6 {
    padding: 0;
}
.coursepopup .col-md-12 {
    padding: 0;
}
    div#alignright img {
        height: auto !important;
        margin-bottom: 14% !important
    }

    ul.ssb-light-hover span {
        padding-top: 15px;
        font-size: 31px
    }

    .homelanding .col-md-4 .col-md-12 {
        padding: 0 !important
    }

    .homelanding .col-md-4 {
        padding: 0 !important
    }

    .homerightcourse {
        margin: 24px auto 0 !important;
        display: block;
        height: 250px;
        width: 250px
    }

    .homelanlast {
        margin-left: 0;
        margin-top: 0
    }

    .homelateup {
        font-size: 32px !important;
        font-weight: bold;
        text-align: center;
        width: 100%;
        background: transparent
    }

    .idatest {
        width: 100%;
        position: relative;
        top: 0
    }

    .secframelanding h2 {
        font-size: 46px !important
    }

    .allinstihome {
        margin-bottom: 10%;
        width: 50%;
        float: left;
        padding: 6px
    }


    .coursepopup {
        position: relative;
        bottom: 0;
        background: #2e2e2ebf;
        color: white;
        padding: 20px 20px;
        left: 0;
        right: 0
    }

    ul.courspred1 li {
        font-size: 18px;
        width: 100%;
        text-align: center;
        margin-right: 20px;
        margin-bottom: 6%
    }

    .block-header {
        width: 100%;
        padding: 30px 25px 30px 10%
    }

    .slick-track {
        margin-top: -22%;
        margin-bottom: 17%
    }

    #tab-button li {
        display: inline-block !important;
        width: 100% !important;
        font-size: 18px !important;
        margin-left: 0 !important
    }

    .img-banner {
        display: none
    }

    .wrap-banner-title {
        position: relative;
        top: 0;
        left: 0;
        width: 90%;
        height: auto;
        background-color: #fff;
        border-top-right-radius: 75px;
        margin: 0 auto
    }

    .img-banner {
        height: auto !important
    }

    .slick-dots {
        display: none !important
    }

    .mobile {
        display: block !important
    }

    .reseinno {
        position: relative !important
    }

    .wrap-banner-title .frame-title h2 br {
        display: none
    }

    .wrap-banner-title .frame-button {
        padding: 15px 0 30px 33px
    }

    .fixmo-button.bg-red {
        width: 55% !important
    }

    .wrap-banner-title .frame-title h2 {
        font-size: 36px !important
    }

    section.why-chose-us .col-xl-7.col-lg-7 {
        display: none !important
    }

    .interh2 {
        width: 100% !important
    }

    .homeinternational .col-md-10 {
        padding: 0 !important
    }

    ul.internatioul {
        margin-top: 5% !important
    }

    .section-title.mb-30.wow.fadeInUp2.animated p {
        width: 100% !important
    }

    .tab-contents {
        height: auto !important;
        overflow-y: auto !important
    }

    .allinstihome::before,.allinstihome::after {
        border: none !important
    }

    .allinstihome:hover::before {
        width: 0 !important
    }

    .hocoursemo1 {
        background: #ef7150;
        color: white
    }

    .hocoursemo2 {
        background: #f2454a;
        color: white
    }

    .homerightcourse h3 {
        border-bottom: 1px solid #fff
    }
}
