body {
    font-family: "Alexandria", serif;
    font-optical-sizing: auto;
    font-optical-sizing: auto;
    font-style: normal;
    padding: 0;
    margin: 0;
    padding-top: 0px;
    overflow: hidden;
    overflow-y: auto;
}
.app {
    float: left;
    width: 100%;
    overflow: visible;
    display: block;
    position: fixed;
    top: 0;
    inset: 0;
}
.content-box.student-hub .cards-list h1 {
    color: #fff;
    margin: 0px 0 10px;
    font-size: 58px;
}
.content-box.student-hub {
    background-color: #0a377f;
    min-height: calc(100vh - 445px);
    padding: 60px 120px 0;
    color: #fff;
}
.content-box.student-hub .cards-list .apps {
    float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}
.content-box.student-hub .cards-list .apps .item {
    width: 100%;
    padding: 25px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 10px;
    max-width: calc(50% - 15px);
    overflow: hidden;
}
.content-box.student-hub .cards-list .apps .item span.desc {
    font-size: 13px;
    line-height: 1.5;
    float: left;
    width: 100%;
    margin-top: 10px;
}
.content-box.student-hub .cards-list .apps .item.coming-soon {
    border: 2px dashed rgba(255,255,255, 0.1);
    background: rgba(255,255,255, 0.1);
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #99a8c9;
}
.content-box.student-hub .cards-list .apps .item span.desc.link {
    text-decoration: underline;
}
.content-box.student-hub .cards-list span.desc {
    font-size: 16px;
    float: left;
    width: 100%;
}
.content-box.student-hub .cards-list .apps .item:hover {
    box-shadow: 0 0 0 6px rgba(255,255,255, 0.3);
    cursor: pointer;
}
.content-box.student-hub .cards-list .apps .item.quiz {
    background-image: url(../images/quiz.png);
    background-repeat: no-repeat;
    background-size: 140px;
    background-position: center left 20px;
    padding-left: 180px;
}
.content-box.student-hub .cards-list .apps .item span.name {
    font-weight: bold;
    width: 100%;
    float: left;
    margin: 0 0 0px;
    font-size: 24px;
}
.content-box.student-hub .content-block {
    display: flex;
    gap: 50px;
}
.content-box.student-hub img {
    max-width: 30%;
}
.content-box.student-hub .cards-list {
    float: left;
    width: 100%;
}
span.main-title {
    color: #fff;
    font-size: 8vw;
    transform: rotate(-2deg) !important;
    position: absolute;
    left: 350px;
    font-weight: 600;
    opacity: 0.1;
    top: 20px;
    pointer-events: none;
    display: none;
}
.container.form {
    background: #222222;
	color: #fff;
}
textarea {
    font-family: "Alexandria", serif;
    font-size: 15px;
    font-weight: 300;
}
.container {
    float: left;
    width: 100%;
    background: #eee;
    top: 0;
    position: sticky;
    margin: 0 0 0;
    height: 100vh;
    z-index: 9;
    padding: 50px;
}
#animation_container {
    position: fixed;
    width: 100% !important;
    overflow: hidden;
    overflow-y: auto;
    top: 0;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden !important;
}
  #animation_container canvas{
    width: 100 !important;
    float: left;
    height: auto !important;
  }
*{
    box-sizing: border-box;
}
label {
    float: left;
    font-size: 12px;
    margin: 10px 0 8px;
    width: 100%;
    font-weight: 200;
}
.homepage-head-banner #typing2 {
    font-size: 72px;
    font-weight: bold;
    line-height: 1.2;
}
.homepage-head-banner {
    margin: 0;
    padding: 10px 30px 70px;
    background-color: transparent;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.homepage-head-banner h1 {
    font-size: 42px;
    font-weight: 100;
    margin: 20px 0 0;
    color: #fff;
    text-transform: none;
    line-height: 1;
    height: 150px;
}
    .homepage-head-banner h1 strong {
      font-weight: 700;
    }

    .homepage-head-banner .typing-container {
      display: inline-block;
      white-space: nowrap;
      overflow: hidden;
      border-right: 0px solid white;
      animation: blinkCursor 0.3s infinite;
    }

  

.homepage-head-banner .circle-container {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0px;
    margin: 60px 50px 50px;
}
.homepage-head-banner .circle {
    width: calc(20% - 20px);
    height: fit-content;
    background-size: cover;
    background-position: center;
    transform: scale(0);
    opacity: 0;
    transition: 0.5s ease all;
    will-change: transform;
    margin: 0 25px;
    padding: 0px;
    border: 0px solid rgba(255,255,255,0.2);
    border-radius: 1000px;
    position: relative;
}
.homepage-head-banner .circle::after {
    position: absolute;
    content: '';
    left: -22px;
    right: -22px;
    top: -22px;
    bottom: -22px;
    background-image: url(../images/cir-anim2.png);
    background-size: cover;
    border-radius: 1000px;
    background-position: center;
    border: 1px solid rgba(255,255,255, 0.15);
    z-index: 9;
    pointer-events: none;
}
.homepage-head-banner .circle:hover:after {
  animation: rotateCir 6s ease infinite;
  border: 1px solid rgba(255,255,255, 0.2);
}

/* Define the rotate animation */
@keyframes rotateCir {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
span.marking {
    position: relative;
    font-weight: bold;
}
span.marking::after {
    position: absolute;
    background-repeat: no-repeat;
    background-image: url(../images/marking.svg);
    background-size: cover;
    background-position: center;
    content: '';
    top: -18%;
    left: -13%;
    width: 119%;
    height: 140%;
}
.homepage-head-banner .circle img {
    float: left;
    border-radius: 1000px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .0);
    width: 100%;
    transition: 0.4s ease all;
}
.homepage-head-banner .zoom-in {
    transform: scale(1);
    opacity: 1;
}
.homepage-head-banner .circle:hover {
    transform: scale(1.25) !important;
    position: relative;
    z-index: 99;
    background: #0a377f;
}
.homepage-head-banner .circle:hover img {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
.campus-tour-opened .chat-btn {
    bottom: -150px !important;
}
.homepage-head-banner .circle .for-hover {
    position: absolute;
    border-radius: 1000px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    padding: 30px;
    font-size: 12px;
    background: rgba(10, 55, 127, 0.7);
    color: #ffffff;
    pointer-events: none;
    opacity: 0;
    transition: 0.5s ease all;
    flex-wrap: wrap;
    line-height: 1.4;
}
.homepage-head-banner .circle .for-hover .ico {
    float: left;
    width: 100%;
    text-align: center;
}
.homepage-head-banner .circle .for-hover span.desc-tbl .coming-soon {
    background: #ff9908;
    margin: 15px 0 0;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 30px;
    color: #000;
}
.homepage-head-banner .circle .for-hover .ico img {
    height: 40px;
    width: auto;
    float: none;
    display: block;
    margin: 0 auto 20px;
    border-radius: 0;
    box-shadow: none;
}
.homepage-head-banner .circle .for-hover span.desc-tbl {
    text-align: center;
    float: left;
    width: 100%;
    height: fit-content;
}
.homepage-head-banner .circle:hover .for-hover {
    opacity: 1;
}
.side-panel {
    height: 100%;
    width: 640px;
    position: fixed;
    z-index: 99999999999;
    top: 0;
    right: 0;
    background-color: #0a377f;
    color: white;
    padding-top: 60px;
    transition: 0.2s;
    overflow-x: hidden;
    right: -130%;
    padding: 60px 60px 0;
    box-shadow: 0 0 80px rgba(0,0,0,0.2);
}
/* Side panel content (form) */
.side-panel form {
    display: flex;
    flex-direction: column;
    padding: 0px;
}

.side-panel form input, .side-panel form select, .side-panel form textarea {
    margin-bottom: 10px;
    padding: 13px 15px;
    border: none;
    border-radius: 4px;
    color: #333;
    width: 100%;
    font-size: 15px;
}
.nav-menu .links {
    float: right;
    display: flex;
}
body.inside-page {
    padding-top: 0px;
}
body.inside-page .rt {
    top: 30px;
}
.nav-menu .links .set {
    width: min-content;
    margin: 0 0 0 20px;
}
.nav-menu {
    position: relative;
    top: 0;
    right: 0;
    text-transform: uppercase;
    text-align: right;
    width: 100%;
    z-index: 99;
    padding: 30px 30px;
    background: #0a377f;
    height: 160px;
    transition: 0.3s ease all;
}
body.inside-page .content {
    float: left;
    width: 100%;
    padding: 60px;
    display: block;
    gap: 0;
}
.nav-menu .app-logo {
    float: left;
    width: 260px;
}
.nav-menu .app-logo img {
    float: left;
    width: 100%;
}

.nav-menu.show {
    opacity: 1;
    pointer-events: all;
}
.content-panel h2 {
    text-transform: uppercase;
    font-size: 40px;
    margin: 0 0 20px;
    font-weight: 600;
}
.content-panel.home-page {
    background: #fff;
}
.content-panel.home-page {
    position: relative !important;
    float: left;
    width: 100%;
    background: #0a377f;
    height: fit-content;
    overflow: hidden !important;
    padding: 0px 0 0;
    /* min-height: calc(100vh - 280px); */
    user-select: none;
}
.chat-btn span.tooltip-txt {
    display: none !important;
}
.homepage-head-banner .circle .for-hover span.desc-tbl small {
    font-size: 13px;
    float: left;
    width: 100%;
}
.campus-tour {
    position: fixed;
    width: 100vw;
    background: #0a377f;
    z-index: 991;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.2s ease all;
    transform: translate(100%, 0px);
    pointer-events: none;
    background-image: url(../images/preloader.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 70px;
}
.campus-tour-opened {
    overflow: hidden !important;
}
.campus-tour-opened .campus-tour {
    transform: translate(0, 0px);
    pointer-events: all;
}
.campus-tour a.close-tour {
    position: absolute;
    z-index: 2;
    right: 40px;
    top: 30px;
    width: 50px;
    height: 50px;
    font-size: 0;
    background: url(../images/close-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60px;
    border: 3px solid #fff;
}
.campus-tour a.close-tour:hover {
    opacity: 0.8;
    cursor: pointer;
}
.campus-tour iframe {
    width: 100vw;
    height: 100vh;
}
.content-panel.home-page iframe {
    position: static;
    margin: 0;
    height: 610px;
    float: left;
    background: #0a377f;
    width: 100%;
    border: 0 !important;
}
.content-box {
    float: left;
    width: 100%;
    padding: 60px;
}
.content-panel.home-page::after {
    display: none;
}
.nav-menu a {
    float: left;
    width: 100%;
    font-weight: 600;
    font-size: 18px;
    transition: 0.2s ease all;
    user-select: none;
    cursor: pointer;
    padding: 0px 0;
    color: #ffffff;
    text-decoration: none;
}
a {
    cursor: pointer !important;
    color: #0a377f;
}
.about .text.bia-logo a {
    text-decoration: none;
    color: #333;
}
.about .text.bia-logo a:hover {
    text-decoration: underline;
    color: #0a3780;
    cursor: pointer;
}
h1 {
    margin: 0px 0 20px;
    font-size: 48px;
    color: #0a377f;
}
.careers .content {
    padding-top: 0 !important;
}
.our-team h1 {
    line-height: 1;
}
.content-block .lrg {
    float: left;
    width: 100%;
    font-size: 28px;
    font-weight: 300;
    margin: 0 0 15px;
    background-repeat: no-repeat;
    padding: 0px 0px 0px 0;
    background-color: #fff;
    background-position: left 0px top 0px;
    border-radius: 10px;
    transition: 0.3s ease all;
}
.content-block .lrg span.sml {
        float: left;
    width: 100%;
    font-size: 18px;
    margin: 0 0 10px;
}
h3 {
    float: left;
    width: 100%;
    margin: 20px 0 10px;
    font-size: 27px;
    line-height: 1.4;
}
img.inside-design {
    display: block;
    width: 100%;
    /* max-width: 1420px; */
    margin: 0px auto;
}
.content-panel.about {
    background-image: url(../images/campus.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.content-panel.placement  .content-block {
    background-color: #fff;
    padding: 60px;
    border-radius: 10px;
    color: #000;
}
.placement-page {
    float: left;
    width: 100%;
}
.placement-page .text-box {
    float: left;
    width: 100%;
    margin: 0 0 20px;
}
.placement-page .text-box h3 {
    margin: 0 0 10px;
}
.placement-page ul {
    margin: 15px 0 0px;
    border-bottom: 0px solid #ddd;
}
.placement-page .text-box  .list-of-airlines {
    margin: 20px -10px 0;
}
.placement-page ul li {
    float: left;
    width: 100%;
    border-bottom: 1px solid #ddd;
    background-image: none;
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: top 4px left;
    padding: 0px 0px 8px;
    margin: 0 0 10px;
}
.placement-page ul li:last-child {
    border-bottom: 0px solid #ddd;
}
.content-box.video-gallery {
    background: #000000;
    color: #fff;
    padding-bottom: 0;
}
.content-box.video-gallery h1 {
    margin: 0px 0 0px;
    font-size: 60px;
    color: #fff;
}
.more-course-info {
    position: fixed;
    z-index: 999999999;
    background: #fff;
    right: -1000px;
    top: 0px;
    bottom: 0px;
    padding: 70px 50px 50px;
    border-radius: 0px;
    box-shadow: none;
    width: 820px;
    margin: auto;
    overflow: hidden;
    overflow-y: auto;
    height:100%;
    min-height: 100vh;
    transition: 0.3s ease all;
}
.more-course-info.show {
    right: 0;
}
.more-course-info h4 {
    margin: 25px 0 0px !important;
}
.more-course-info .kpis {
    margin: 20px -10px 0;
    display: flex;
    float: left;
    width: calc(100% + 20px);
}
.more-course-info .kpis .item {
    background: #eaecf7;
    margin: 0 10px;
    padding: 15px;
    font-size: 20px;
    border-radius: 8px;
    font-weight: 600;
    line-height: 1;
}
.list-of-courses .item .text h6 {
    float: left;
    width: 100%;
    margin: 20px 0 0;
    font-size: 18px;
}
.list-of-courses .item .text span.txt {
    float: left;
    width: 100%;
    margin: 0 0 0px;
}
.note {
    float: left;
    width: 100%;
    background: #ffe6e6;
    padding: 12px 20px;
    text-align: center;
    border-radius: 5px;
    margin: 25px 0 0;
    color: #e50000;
}
.more-course-info .kpis .item:nth-child(2) {
    background: #dee2f2;
}
.more-course-info .kpis .item:nth-child(3) {
    background: #d2d7ee;
}
.more-course-info .kpis .item:nth-child(4) {
    background: #cfd3ed;
}
.more-course-info .kpis .item label {
    margin: 0 0 8px;
    font-size: 11px;
}
.more-course-info ul {
    margin: 15px 0 0px !important;
    border: 0 !important;
}
body.popup-opened .content-panel {
    overflow: hidden !important;
}
.more-course-info .content {
    padding: 0 !important;
}
body.popup-opened {
    overflow: hidden;
}
body.popup-opened::before {
    position: fixed;
    content: '';
    background-color: #000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.5;
    z-index: 999;
}
.welcome-banner .close-banner {
    font-size: 40px;
    float: right;
    font-weight: 200;
    position: absolute;
    top: 2px;
    right: 0px;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    color: #082c66;
    z-index: 999;
    display: none;
}
.welcome-banner .close-banner:hover {
    opacity: 0.4;
}
.welcome-banner h1 {
    font-size: 40px;
    float: left;
    width: 100%;
    margin: 0 0 20px;
}
.transp-bg {
    background: #000;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999999999999;
    opacity: 0.2;
    display: none;
}
.welcome-banner {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: -350%;
    z-index: 99999999999;
    background: #fff;
    width: 400px;
    margin: auto;
    padding: 0;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: top 15px left;
    background-size: 530px;
    min-height: 510px;
    transition: 1s ease bottom;
    pointer-events: none;
    height: fit-content;
    text-align: center;
}
.welcome-banner img {
    width: 100%;
    float: left;
}
.welcome-banner video {
    float: left;
    width: 400px;
    height: 711px;
    border-radius: 10px;
}
.show-welcome-banner .welcome-banner {
    bottom: 0;
    pointer-events: all;
}
.show-welcome-banner .transp-bg {
    display: block;
}
.welcome-banner .title {
    font-size: 21px;
    float: left;
    width: 100%;
    margin: 0 0 20px;
    font-weight: 300;
}
.disabled {
    pointer-events: none;
    filter: grayscale(1);
    opacity: 0.3;
}
.click-disable {
    transition: 0.5s ease all;
    user-select: none;
}
.welcome-banner .title strong {
    font-weight: 600;
    color: #194fa7;
}
.welcome-banner .btn {
    background: rgba(255, 152, 8, 0.85);
    padding: 8px 15px;
    border-radius: 10px;
    /* float: left; */
    color: #ffff;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin: 0;
    position: absolute;
    z-index: 99999999999999;
    bottom: 75px;
    right: 20px;
    width: fit-content;
    left: 20px;
    margin: auto;
}
.welcome-banner .btn:hover {
    background: rgba(255, 152, 8, 1);
}
.welcome-banner span {
    float: left;
    width: 100%;
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
}
.welcome-banner h2 {
    color: #0A377E;
}
.close {
    content: '';
}
.more-course-info a.close {
    position: sticky;
    top: -50px;
    right: -30px;
    z-index: 99;
    font-size: 60px;
    width: 40px;
    height: 40px;
    line-height: 1;
    text-align: center;
    transform: rotate(45deg);
    float: right;
    margin: -50px -30px 0 0 !important;
    font-weight: 200;
}
.more-course-info h1 {
    font-size: 26px !important;
    float: left;
    width: 100%;
    margin: 35px 0 0;
    color: #0a377f;
}
.more-course-info .content {
    float: left;
    width: 100%;
}
.more-course-info a.close:hover {
    opacity: 0.5;
}
.more-course-info a.apply-now {
    float: left;
    margin: 25px 0 0px !important;
}
a.know-more {
    float: left;
    margin: 10px 0 0;
    color: #0A377E;
    text-decoration: underline;
}
a.know-more:hover {
    text-decoration: none;
}
a.know-more h3:hover {
    text-decoration: underline;
}

.placement-page .list-of-airlines .card {
    padding: 20px;
    display: block;
    margin: 10px;
    border-radius: 10px;
    width: calc(20% - 20px);
    height: 130px;
    background-size: 150px;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.92);
    position: relative;
    transition: 0.2s ease all;
}
.placement-page .list-of-airlines .card:hover {
    transform: scale(1.05);
}
.content-panel.about .content-block {
    background-color: rgba(255, 255, 255, .95);
    padding: 60px;
    border-radius: 10px;
    color: #000;
}
.fancybox__progress {
    background: #ff9908;
}
.course-cards a {
    background-color: #f5f4f8;
    padding: 20px 20px 20px 110px;
    float: left;
    margin: 0px 0px 0px;
    width: 100%;
    max-width: calc(50% - 10px);
    border-radius: 10px;
    color: #000;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.4;
    background-image: url(../images/newico01.svg);
    background-size: 80px;
    background-repeat: no-repeat;
    background-position: top 15px left 15px;
    cursor: pointer;
    min-height: 110px;
    transition: 0.2s ease all;
}
.course-cards a:hover {
    background-color: #e6eafc;
    color: #203a72;
    opacity: 1;
}
.course-cards a:nth-child(2) {
    background-image: url(../images/newico02.svg);
}
.course-cards a:nth-child(3) {
    background-image: url(../images/newico03.svg);
}
.course-cards a:nth-child(4) {
    background-image: url(../images/newico04.svg);
}
.course-cards a:nth-child(5) {
    background-image: url(../images/newico05.svg);
}
.course-cards a:nth-child(6) {
    background-image: url(../images/newico06.svg);
}
.about .text a.open-panel {
    font-weight: 500;
    text-decoration: underline;
}








.video-testimonial {
    float: left;
    width: 100%;
    position: relative;
}
.video-testimonial .carousel {
    display: flex;
    gap: 40px;
    perspective: 1500px;
    transition: transform 0.5s;
    align-items: center;
    justify-content: center;
    margin: 50px 0 80px;
    float: left;
    width: 100%;
}
.video-testimonial .testi-card {
    width: 100%;
    height: 400px;
    background: #ffffff;
    color: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transform-origin: center center;
    transition: all 0.2s ease, z-index 0.3s;
    cursor: pointer;
    transform-style: preserve-3d;
    padding: 20px;
}

  .video-testimonial .testi-card img, .video-testimonial .testi-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    z-index: 0;
  }

  .video-testimonial .testi-card-content {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    width: 100%;
    padding: 12px;
    z-index: 1;
  }

  .video-testimonial .testi-card h3 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.video-testimonial .testi-card.active h3, .video-testimonial .testi-card.active span  {
    display: none;
}
  .video-testimonial .testi-card span {
    font-size: 11px;
    opacity: 1;
    position: absolute;
    bottom: 55px;
  }

  /* Curved layout 
  .video-testimonial .testi-card:nth-child(1) { transform: rotateY(45deg) translateY(20px); }
  .video-testimonial .testi-card:nth-child(2) { transform: rotateY(25deg) translateY(15px) scale(0.9); }
  .video-testimonial .testi-card:nth-child(3) { transform: rotateY(5deg) translateY(15px) scale(0.86); }
  .video-testimonial .testi-card:nth-child(4) { transform: rotateY(-5deg) translateY(15px) scale(0.9); }
  .video-testimonial .testi-card:nth-child(5) { transform: rotateY(-25deg) translateY(15px); }
  .video-testimonial .testi-card:nth-child(6) { transform: rotateY(-45deg) translateY(20px); }
*/
  .video-testimonial .testi-card.active {
    transform: scale(2) rotateY(0deg) !important;
    z-index: 99999999;
    position: absolute;
    width: 230px;
    border-radius: 9px;
}

  .video-testimonial .testi-card video {
    display: none;
  }

  .video-testimonial .testi-card.active video {
    display: block;
  }

  .video-testimonial .testi-card.active img,
  .video-testimonial .testi-card.active .testi-card-content {
    display: none;
  }

  .video-testimonial .close-btn {
    position: absolute;
    top: 8px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    display: none;
  }

  .video-testimonial .testi-card.active .close-btn {
    display: block;
  }

  /* 3D Hover Effect */
  .video-testimonial .testi-card:hover {
    transform: scale(1.05) rotateY(0deg) translateZ(0px);
  }
.ceo-speaks .message-block {
    display: flex;
    float: left;
    border-bottom: 2px solid #ddd;
    background-repeat: no-repeat;
    background-size: 330px;
    padding: 0 0 0px;
    background-position: top right;
    margin: 20px 0 0;
}
.ceo-speaks .message-block img {
    width: 370px;
    float: right;
    margin: 0;
    border-radius: 0;
    height: auto;
}
.ceo-photo {
    width: 230px;
    margin: 0 15px 0 0;
    background-image: url(../images/jo.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    min-width: 230px;
}
.ceo-speaks .message-block .message {
    float: left;
    width: 100%;
    padding: 0 0 50px;
}
.ceo-speaks {
    float: left;
    width: 100%;
    padding: 0px 0 50px 0;
}
.ceo-speaks  strong {
    float: left;
    width: 100%;
    margin: 0px 0 5px;
    font-size: 20px;
    font-weight: 400;
}
.ceo-speaks span {
    float: left;
    width: 100%;
    /* font-size: 13px; */
    /* color: #999; */
}
  #planeWrapper {
    position: absolute;
    right: -900px;
    bottom: 100px;
    z-index: 1;
    pointer-events: none;
    display: none;
}

  #plane.push {
    right: 10%;
    transform: rotate(0deg);
}
#plane.push::after {
    display: block;
}
#plane::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 70px;
    background-image: url(../images/smoke.gif) !important;
    background-repeat: no-repeat !important;
    background-size: contain;
    background-position: 0;
    top: 220px;
    right: 240px;
    z-index: 99;
    filter: grayscale(1) blur(4px);
    display: none;
    opacity: 0.7;
}

#plane {
    width: 690px;
    position: relative;
    right: 0;
    transition: all 7s !important;
    pointer-events: none;
    user-select: none;
}
  .wheel {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 0px solid #000;
    border-radius: 50%;
    background: linear-gradient(red, black);
    top: 197px;
    left: 62px;
    transition: 7s ease top;
    z-index: 9;
}
#plane.push .plane-img {
    top: 5px;
    transform: rotate(1deg);
}

.plane-img {
    position: relative;
    top: 0;
    z-index: 99;
    transition: 1.5s ease all;
}
.wheel.push {
    top: 210px;
    z-index: 9;
}
img#wheel2 {
    left: 349px;
}
img#wheel3 {
    left: 372px;
}
.ceo-speaks strong.sign {
    background-image: url(../images/sign.svg);
    background-repeat: no-repeat;
    background-position: top left;
    padding-top: 104px;
    background-size: 150px;
}
.video-playing .video-testimonial {
    z-index: 999;
}
.video-playing .nav-menu {
    top: -145px;
}
  @keyframes rotateWheel {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .wheel.rotate-anim {
    animation: spintyre 13s ease-out forwards !important;
  }
  
  @keyframes spintyre {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(-3200deg); /* 360° * 10 = 3600° */
    }
  }

  @keyframes bounce {
    0%   { top: 60%; }
    30%  { top: 58%; }
    60%  { top: 60.5%; }
    100% { top: 60%; }
  }














.box-container {
    overflow-y: scroll;
    border: 2px solid black;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 700px;
}
.about .text {
    float: left;
    width: 100%;
    margin: 0 0 20px;
}
.course-cards a span {
    float: left;
    width: 100%;
}
.course-cards a span {
    float: left;
    width: 100%;
    font-weight: 300;
    font-size: 13px;
    margin: 5px 0 0;
}
.course-cards {
    float: left;
    width: calc(100% + 0px);
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0px 20px;
    gap: 20px;
}
.rt {
    margin: 0 0 0 60px;
    width: 90%;
    position: sticky;
    top: 60px;
    height: fit-content;
    /* z-index: 999 !important; */
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
    float: left;
    width: 100%;
}
.rt ul li {
    padding: 7px 0;
    float: left;
    width: 100%;
    border-bottom: 1px solid #ddd;
}
.rt ul li:last-child {
    border-bottom: 0px solid #ddd;
}
.lt {
    width: 100%;
}
.content-block {
    float: left;
    width: 100%;
    display: flex;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.4;
}
span.output_message {
    float: left;
    width: 100%;
    margin: 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(10, 55, 127, .9);
    padding: 100px;
    text-align: center;
}
.content-panel.active iframe {
    display: block !important;
}
.side-panel .close-btn, .side-panel .close-form {
    line-height: 1;
    position: fixed;
    top: 20px;
    right: 15px;
    color: #fff;
    font-size: 45px;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    min-width: 40px;
    justify-content: center;
    transform: rotate(45deg);
    font-weight: 100;
    cursor: pointer;
    z-index: 9;
    transition: 0.3s ease all;
    font-family: sans-serif;
    line-height: 30px !important;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 0 9px 0px;
    border-radius: 100px;
}
.tooltip-btn {
    cursor: pointer !important;
}
.pt-0 {
    padding-top: 0;
}
.popup-opened a.chat-btn.tooltip-btn, .popup-opened a.magazine.tooltip-btn {
    bottom: -100px;
}
.side-panel.open .close-btn, .side-panel.open .close-form {
    display: inline-flex;
}
.side-panel .close-btn:hover, .side-panel .close-form:hover  {
    opacity: 0.5;
}
.content-panel-opened .nav-menu a {
    color: #fff !important;
}
.content-panel-opened .nav-menu a:hover {
    color: #fff;
    opacity: 0.4;
}

canvas {
    float: left;
    width: 100% !important;
}
.side-panel form .btn {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background-color: #ff9908;
    color: white;
    cursor: pointer;
    margin: 20px 10px 0 0;
    width: fit-content;
    font-size: 15px;
}
.side-panel form .btn:hover {
    opacity: 0.8;
}
.side-panel form .btn.cancel {
    color: #fff;
    background-color: rgba(255,255,255, 0.1);
    
}
.our-team {
    margin: 0;
    display: inline-block;
    padding-bottom: 30px;
}
.our-team .people item img {
    width: 100%;
    position: relative;
    z-index: 3;
    border-bottom: 0px solid #aaa;
    background-color: #f5f4f8;
    PADDING: 15px 0px 0;
    transition: 0s ease all;
    height: auto;
    border-radius: 100%;
    display: inline-block;
    pointer-events: none;
}
.content-block h6 {
    float: left;
    width: 100%;
    margin: 40px 0 20px;
    text-align: center;
    font-size: 26px;
}
.our-team .people.level1 item img {
    width: 100%;
    height: auto;
}
.our-team .people item:hover img {
    background: #f19e3a;
}
.our-team .people {
    float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
    margin: 20px 0 0;
}
.about .text.bia-logo {
    display: flex;
}
.about .text.bia-logo  img {
    float: left;
    margin: 0 20px 0 0;
    min-width: 115px;
    width: 115px;
    height: 115px;
}
.our-team .people.level3 item {
    width: calc(20% - 0px);
}
item.title {
    float: left;
    width: 100%;
    margin: 30px 0 10px;
    font-size: 34px;
    font-weight: bold;
    z-index: 99;
    padding: 20px 0;
    text-align: center;
}
.our-team .people item {
    width: calc(25% - 0px);
    overflow: hidden;
    margin: 0px 0px 10px;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    text-align: center;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: scale(0);
}
.our-team .people item.visible {
    opacity: 1;
    transform: scale(1);
}
.our-team .people item:hover {
    background-color: #f5f4f8;
    color: #000;
}
.our-team .people item a {
    color: #666;
    text-decoration: none;
}
.our-team .people item a:hover {
    text-decoration: underline;
}
.our-team .people item:hover h5 span {
    color: #fff;
    opacity: 0.1;
    left: 30%;
}
.our-team .people item.meet-more {
    float: left;
    width: 100%;
    padding: 40px 0 0;
    height: auto;
    background: transparent !important;
}
.our-team .people item.meet-more a {
    border: 2px solid #0a3780;
    color: #0a3780;
    width: auto;
    margin: auto;
    float: none;
    padding: 15px 21px;
    display: inline-block;
    font-size: 15px;
    text-decoration: none !important;
}
.our-team .people item.meet-more a:hover {
    border: 2px solid #0a3780;
    background-color: #0a3780;
    color: #fff;
}
.our-team .people item h5 span {
    font-size: 400px;
    position: absolute;
    top: -30px;
    left: -85px;
    line-height: 1;
    opacity: 0.04;
    text-align: center;
    z-index: 1;
    transition: 2s ease left;
    display: none;
}
.our-team .people item h5 {
    float: left;
    width: 100%;
    margin: 0px 0 0px;
    font-size: 24px;
    line-height: 1.2;
    padding: 20px 0px 5px;
    /*background-image: url(../images/shadow.png);*/
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 160%;
}
.our-team p.subtext {
    font-size: 18px;
}
.our-team .people item  span.bio {
    float: left;
    width: 100%;
    margin: 15px 0 0;
    position: relative;
    padding: 18px 0 0;
}
.our-team .people item  span.bio::after {
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: #ddd;
    content: '';
    top: 0;
    left: 0;
    border-radius: 15px;
    right: 0;
    margin: auto;
}
.our-team .people item span, .our-team .people item a {
    color: #333;
    width: 100%;
    float: left;
}
.our-team .people item a {
    margin-top: 10px;
    color: #194fa7;
}
.our-team h3 {
    float: left;
    width: 100%;
    margin: 0px 0 5px;
    font-size: 40px;
}
.campus-hvr {
    float: right;
    overflow: hidden;
    background: #333;
    height: calc(100vh - 410px);
    border-radius: 10px;
    background-image: url(../icons/campus-bldng.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.4s ease all;
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    background-position: top right;
}
img.for-mobile.campus {
    float: left;
    width: 100%;
    border-radius: 10px;
    MARGIN: 15px 0 0;
}
.campus-hvr:hover {
    height: calc(100vh - 210px);
    width: 1000px;   
}
.buttons {
    margin: 0 0 0;
    float: left;
    width: 100%;
    position: sticky;
    bottom: 0;
    background: #0a377f;
    padding: 5px 0 55px;
}
.buttons .btn {
    margin: 0 10px 0 0;
    float: left;
}
.side-panel form .buttons button {
    margin: 20px 10px 0 0;
}
/* Style for the open button */
.open-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
input#female + label {
    background-image: url(../images/female-icon.svg);
}
.side-panel form input[type="radio"] + label {
    border: 1px solid #265297 !important;
    border-radius: 8px;
    padding: 64px 15px 20px;
    float: left;
    text-align: center;
    min-width: 120px;
    background-color: #265297;
    border: 0px solid #f7f7f7;
    background-image: url(../images/male-icon.svg);
    background-repeat: no-repeat;
    background-position: center top 15px;
    background-size: 34px;
    cursor: pointer;
    color: #fff;
    margin: 0 10px 0;
}
.side-panel form input[type="radio"]:checked + label {
    background-color: #46669d;
    border: 1px solid #f7f7f7 !important;
    color: #fff;
    position: relative;
}
.owl-carousel {
    float: left;
    width: 100%;
}
.side-panel form input[type="radio"]:checked + label::after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url(../images/check-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 10px;
    right: 10px;
    background-color: #699f4c;
    border-radius: 100px;
}
span.output_message span {
    padding: 240px 0 0;
    float: left;
    width: 100%;
    font-size: 18px;
    position: relative;
    font-weight: 200;
    background: transparent;
}
span.output_message span::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url(../icons/loader.gif);
    background-repeat: no-repeat;
    border-radius: 180px;
    left: 0;
    top: 110px;
    right: 0;
    margin: auto;
    background-size: 140px;
    background-position: center;
}
span.output_message span.success::after {
    background-image: url(../icons/success-mail.gif);
    background-size: 90px;
    background-color: #ffffff;
}
span.output_message span.success::error {
    background-image: url(../icons/success-mail.gif);
}
* {
    outline: none;
    box-sizing: border-box;
}
select {
    -webkit-appearance: none;
    background-image: url(../images/arrow-down-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right 6px;
    background-size: 20px;
}
.checkbox-group input {
    position: absolute;
    opacity: 0;
}
/* Style to show the panel */
.side-panel.open {
    right: 0;
}
.checkbox-group {
    display: flex;
    justify-content: space-between;
    margin: 0 -10px 10px;
}
.side-panel h2 {
    margin: 0 0 20px;
    font-size: 2em;
}
.content-panel {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 100%;
    right: 0;
    background: #0a377f;
    color: white;
    padding: 20px;
    transition: top 0.4s ease;
    z-index: 8;
    overflow: hidden;
    padding: 220px 60px 60px;
    left: 0;
    background-repeat: no-repeat;
    background-size: 340px;
    background-position: top 60px left 60px;
    overflow-y: auto !important;
}
.content-panel::after {
    content: '';
    width: 300px;
    height: 130px;
    right: initial;
    color: white;
    transition: top 0.4s ease;
    z-index: 8;
    overflow: hidden;
    padding: 0 0px 0;
    left: 60px;
    background-image: url(../images/kite-logo-lt.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
    overflow-y: auto !important;
    top: 60px;
    position: absolute;
}
.circle-container .tooltip-txt {
    background-color: #fff !important;
    color: #000 !important;
}
.preloader {
    background: #093884;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999999 !important;
}
.preloader::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 100px;
    background-image: url(../images/preloader.gif);
    background-repeat: no-repeat;
    border-radius: 0px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background-size: contain;
    background-position: center;
    transition: 0.5s ease;
}
footer .footer-art {
    height: 160px;
    margin: 0 0 35px;
    display: inline-block;
}
footer {
    float: left;
    width: 100%;
    background: #000;
    color: #fff;
    font-size: 13px;
    /* background-image: url(../icons/footer.svg); */
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center top;
    text-align: center;
    padding: 60px 60px 60px;
}
footer ul.social-media {
    margin: 30px 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    float: left;
}
footer ul.social-media li a {
    width: 50px;
    height: 50px;
    background-color: #f79910;
    float: left;
    margin: 0 10px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
footer ul.social-media li a img {
    width: 24px;
}
footer ul.social-media li a:hover img {
    opacity: 0.7;
}
footer .copyright {
    font-weight: 200;
    font-size: 12px;
}
footer .links {
    float: left;
    width: 100%;
    font-size: 16px;
}
footer .links a {
    padding: 0 10px;
    font-weight: 200;
}
footer a {
    color: #fff;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
    color: #f79910;
}
footer a.active {
    text-decoration: underline;
    color: #f79910;
}
.content-panel.active {
    top: 0;
    z-index: 99;
}
.push {
    z-index: 11 !important;
}
.nav-menu a.item {
    font-size: 20px;
    white-space: nowrap;
    margin: 2px 0 0;
    font-weight: 200;
}
.nav-menu a.item.active {
    font-weight: bold;
}





.nav-menu .item {
    position: relative;
    width: 200px;
    height: 24px;
    perspective: 1000px;
    overflow: hidden;
    color: white;
    line-height: 17px;
    font-size: 20px;
}

  .nav-menu .item .text {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease-in-out;
    transform-style: preserve-3d;
  }

  .nav-menu .item:hover .text {
    transform: rotateX(-90deg);
  }
.nav-menu .item .front, .nav-menu .item .bottom {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
    top: 0;
    left: 0;
    height: 17px;
    padding: 0 5px;
    line-height: 17px;
}

  .nav-menu .item .front {
    background: #0a377f;
  }

  .nav-menu .item .bottom {
    background: #0a377f;
    transform: rotateX(90deg) translateZ(20px);
    line-height: 11px;
  }




.list-of-airlines {
    float: left;
    width: calc(100% + 14px);
    display: flex;
    flex-wrap: wrap;
    margin: 20px -7px 50px;
}
h1 span {
    float: left;
    width: 100%;
    margin: 10px 0 20px;
    font-size: 15px;
    font-weight: 300;
    color: #333;
}
.gallery .rt {
    margin: 0 0 0 60px;
}
body.inside-page .rt.gallery-rt {
    top: 60px;
}
.content-panel.gallery .content-block {
    background-color: rgba(255, 255, 255, .95);
    padding: 50px 50px 30px;
    border-radius: 10px;
    color: #000;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    border-color: #0a377f;
}
.has-image[data-image-fit=contain] .fancybox__image {
    border-radius: 10px;
}
.fancybox__thumbs .carousel__slide {
    margin: 0 0 20px;
    padding: 10px 5px;
}
.gallery {
    float: left;
    width: calc(100% + 0px);
    display: flex;
    flex-wrap: wrap;
    margin: 0 0px;
    align-items: start;
    gap: 30px;
}
.gallery a {
    float: left;
    width: 100%;
    max-width: calc(50% - 15px);
    overflow: hidden;
    margin: 0;
    border-radius: 10px;
    height: auto;
}
.gallery a img {
    transition: 0.3s ease all;
    width: 100%;
    float: left;
    border-radius: 10px;
}
.gallery a:hover img {
    transform: scale(1.1);
}
.profile-list {
    float: left;
    width: calc(100% + 0px);
    margin: 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.profile-list .item img {
    width: 100%;
    float: left;
    border-radius: 500px;
    transition: 0s ease all;
    background: #f0f1f3;
}
.profile-list .item:hover img {
    background: #f79910;
}

.profile-list .item {
    width: calc(25% - 30px);
    margin: 0;
    text-align: center;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    padding: 0px;
    border-radius: 8px;
    transition: opacity 0.6s ease, transform 0.6s ease;
    overflow: hidden;
    opacity: 0;
    transform: scale(0)
}
.profile-list .item.visible {
    opacity: 1;
    transform: scale(1);
}
.profile-list .item:hover {
    color: #000;
}
.profile-list .item .name {
    float: left;
    width: 100%;
    margin: 12px 0 10px;
    font-size: 22px;
}
.profile-list .item .name  span {
    font-weight: 300;
    font-size: 14px;
    float: left;
    width: 100%;
    opacity: 0.6;
}
.list-of-airlines  .card {
    background: #fff;
    padding: 20px;
    display: block;
    margin: 7px;
    border-radius: 10px;
    width: calc(20% - 14px);
    height: 100px;
    background-size: 90px;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.96);
    position: relative;
    transition: 0.2s ease all;
}
.list-of-airlines .card:hover {
    transform: scale(1.15);
    z-index: 9;
}
a.card.qatar {
    background-image: url(../icons/qatar-logo.png);
    filter: none;
    background-color: #3e1032;
}
a.card.etihad {
    background-image: url(../icons/etihad-logo.png);
}
a.card.american {
    background-image: url(../icons/aa-logo.png);
}
a.card.indigo {
    background-image: url(../icons/indigo-logo.png);
    filter: none;
    background-color: #3c4597;
}
a.card.spice {
    background-image: url(../icons/spice-logo.png);
    filter: none;
    background-color: #b32b35;
}
a.card.celebi {
    background-image: url(../icons/calebi-logo.png);
}
a.card.airindia {
    background-image: url(../icons/airindia-logo.png);
}
a.card.vistara {
    background-image: url(../icons/vistara-logo.png);
}
a.card.airindiaexpress {
    background-image: url(../icons/airindiaexpress-logo.png);
}
a.card.airindiasats {
    background-image: url(../icons/airindiaexpress-logo.png);
}
a.card.bwfs {
    background-image: url(../icons/bwfs-logo.png);
}
a.card.itc {
    background-image: url(../icons/itc-logo.png);
}
a.card.easymytrip {
    background-image: url(../icons/easemytrip-logo.png);
}
a.card.westin {
    background-image: url(../icons/westin-logo.png);
}
a.card.taj {
    background-image: url(../icons/taj-logo.png);
}
a.card.radisson {
    background-image: url(../icons/radisson-logo.png);
}
a.card.harley {
    background-image: url(../icons/harley-logo.png);
}
a.card.jw {
    background-image: url(../icons/jw-logo.png);
}
a.card.gaar {
    background-image: url(../icons/gaar-logo.png);
}
a.card.starair {
    background-image: url(../icons/star-logo.png);
}
a.card.vfs {
    background-image: url(../icons/vfs-logo.png);
}
a.card.theleela {
    background-image: url(../icons/leela-logo.png);
}
a.card.obroi {
    background-image: url(../icons/obroi-logo.png);
}
a.card.parkhyat {
    background-image: url(../icons/parkhyat-logo.png);
}
a.card.akasaair {
    background-image: url(../icons/akasa-logo.png);
}
a.card.emirates {
    background-image: url(../icons/emirates-logo.png);
    filter: none;
    background-color: #c5342d;
}
a.card.kuwait {
    background-image: url(../icons/kuwait-logo.png);
}
a.card.airasia {
    background-image: url(../icons/airasia-logo.png);
    filter: none;
    background-color: #cd3631;
}
a.card.airarabia {
    background-image: url(../icons/airarabia-logo.png);
    filter: none;
    background-color: #da364b;
}
.rt img {
    width: 100%;
    margin: 0 0 10px;
    border-radius: 10px;
    transition: 0.3s ease all;
}
.list-of-courses {
    overflow: hidden;
    display: flex;
    margin: 0 -20px;
    flex-wrap: wrap;
}
.list-of-courses  .item h3 {
    margin: 0 0 20px;
    font-size: 24px;
}
.list-of-courses  .item h3 {
    margin: 0 0 20px;
    font-size: 26px;
    color: #0a377f;
}
.list-of-courses  .item {
    background: #f7f7f7;
    margin: 0px 20px 40px;
    color: #000;
    padding: 25px;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.3;
    width: 100%;
    border-radius: 10px;
    max-width: calc(33.3333% - 40px);
}
h3 span {
    float: left;
    font-size: 15px;
    font-weight: 300;
    width: 100%;
    margin: 10px 0 0;
    color: #000;
}
.more-course-info img.course-thumb {
    margin: 0;
}
.list-of-courses .item .text {
    float: left;
    width: 100%;
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.4;
}
a.apply-now {
    background: #ff9908;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 0px 0 0;
    float: left;
    font-weight: 400;
}
a.apply-now:hover {
    opacity: 0.8;
}
.contact-us {
    float: left;
    width: 100%;
    max-width: 100%;
    font-weight: 300;
    line-height: 1.4;
    font-size: 15px;
    position: relative;
    z-index: 9;
    bottom: 0;
    top: initial;
    height: auto;
}
.contact-us .map-block a {
    float: none;
    padding: 0;
    background: transparent;
    color: #ffffff;
}
#contact h1 span {
    float: left;
    width: 100%;
    font-size: 14px;
    font-weight: 200;
    margin: 5px 0 30px;
}
#contact h1 {
    position: relative;
    z-index: 9;
}
.contact-us a {
    color: #fff;
    text-decoration: underline;
}
.contact-us a:hover {
    opacity: 0.6;
    text-decoration: none;
}
.contact-us a.apply-now.open-panel {
    float: none;
    padding: 0;
    background: transparent;
}
.certificates {
    float: left;
    width: 100%;
    margin: 0px 0 0;
}
.certificates a {
    width: 120px;
    margin: 0 20px 0 0;
    background-color: #fff;
    float: left;
    height: 90px;
    border-radius: 8px;
    background-size: 90px;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.2s ease all;
    text-decoration: none;
    border: 0px solid #fff;
}
.tooltip-txt {
    background-color: #0a3780 !important;
    color: #fff !important;
    font-weight: 300 !important;
}
a.chat-btn .tooltip-txt {
    left: initial !important;
    right: 0 !important;
}
.certificates a:hover {
    z-index: 999;
    position: relative;
    border: 0px solid #0A377E;
    transform: scale(1.1);
}
.certificates a.govt {
    background-image: url(../icons/aero-space-logo.png);
}
.certificates a.kite {
    background-image: url(../icons/kite-lt-logo.png);
    background-size: 55px;
}
.certificates a.iata {
    background-image: url(../icons/iata-logo.png);
    display: none;
}
.certificates a.skill-india {
    background-image: url(../icons/skill-india-logo.png);
}
.for-mobile {
    display: none !important;
}
.mobile-menu {
    background: #ff9908;
    width: 48px;
    height: 48px;
    top: 20px;
    right: 20px;
    position: fixed;
    background-image: url(../icons/hamburger-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
    z-index: 999;
    border-radius: 100px;
    transition: 0.3s ease all;
}
.list-of-courses .item ul li {
    padding: 8px 0;
    float: left;
    width: 100%;
    border-top: 1px solid #ddd;
}
.list-of-courses .item ul {
    margin: 10px 0 20px;
    border-bottom: 0px solid #ddd;
}
.list-of-courses .item ul li {
    float: left;
    width: 100%;
    border-top: 1px solid #ddd;
    background-image: url(../icons/blt.svg);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: top 10px left;
    padding: 8px 24px 8px;
}
ul.clear li {
    padding: 8px 0 !important;
    background-image: none !important;
}
.list-of-courses .item ul li:first-child {
    border: 0;
}
img.course-thumb {
    width: 100%;
    float: left;
    margin: 0 0 10px;
    border-radius: 10px;
}
.more-course-info span.txt {
    margin: 15px 0 0px !important;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.01);
    border-radius: 10px;
}
.placement .rt {
    max-width: 400px;
}
.placement .featured {
    display: flex;
    background: #eceef4;
    float: left;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    align-items: end;
    margin: 0 0 30px;
}
.placement span.notes {
    margin: 0 0 10px;
    float: left;
    width: 100%;
}
.placement .featured img {
    width: 330px;
    margin: 0 0 0 40px;
    height: auto;
}
.placement .featured span {
    padding: 20px 40px 40px;
}
.placement .featured span strong {
    margin: 10px 0 5px;
    float: left;
    width: 100%;
    font-size: 16px;
}
h4 {
    font-size: 22px;
    margin: 20px 0 5px;
    float: left;
    width: 100%;
}
.articles-page .modal strong {
    font-weight: 600;
    margin: 10px 0 5px;
    float: left;
    width: 100%;
    font-size: 16px;
}
.placement .job-cards ul li {
    float: left;
    width: 100%;
    border-top: 1px solid #ddd;
    background-image: url(../icons/blt.svg);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center left;
    padding: 8px 24px 8px;
}
.placement .job-cards ul {
    border-bottom: 1px solid #ddd;
    margin-bottom: 0px;
}
.job-cards {
    margin: 20px -15px 0;
    display: flex;
    float: left;
}

.job-cards .item label {
    width: auto;
    min-width: 80px;
    font-size: 14px;
    margin: 0 15px 0 0;
}
.jobs-listing h1 {
    margin: -10px 0 10px;
    float: left;
    width: 100%;
}
.jobs-listing h1 span {
    font-weight: 200;
    font-size: 15px;
    float: left;
    width: 100%;
    margin: 0 0 0px;
}
strong {
    font-weight: 400;
}
.job-cards .item h3 {
    font-size: 32px;
    position: relative;
    padding: 0 0 15px;
    margin-bottom: 25px;
    line-height: 1.25;
}
.virtual-conversation {
    background: #f4f4f4;
    padding: 0px;
    width: 440px;
    height: 0px;
    position: fixed;
    bottom: -110%;
    right: 65px;
    z-index: 999;
    border-radius: 10px;
    box-shadow: 0 0 90px 30px rgba(0,0,0,0.2);
    color: #222;
    overflow: hidden;
    transition: 0.3s ease all;
}
.virtual-conversation a.close-chat {
    position: absolute;
    top: 10px;
    right: 5px;
    height: 40px;
    width: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0;
    transform: rotate(45deg);
    justify-content: center;
    font-size: 40px;
    font-weight: 200;
    user-select: none;
    cursor: pointer;
}
.virtual-conversation a.close-chat:hover {
    opacity: 0.5;
}
.virtual-conversation #chatbox {
    float: left;
    width: 100%;
    margin: 0px 0 0px;
    height: 445px;
    overflow: hidden;
    padding: 25px;
    overflow-y: auto;
}
.virtual-conversation .clear {
    float: right;
    font-size: 13px;
    font-weight: 300;
    text-decoration: underline;
    padding: 10px 0px;
    color: #999;
}
.virtual-conversation .clear:hover {
    text-decoration: none;
    color: #444;
    position: relative;
    z-index: 8;
}
.virtual-conversation .send {
    float: left;
    width: 100%;
    padding: 25px 25px 15px;
    position: relative;
    background-color: #ededed;
}
.virtual-conversation .send button {
    position: absolute;
    top: 34px;
    bottom: 0;
    height: 23px;
    background-image: url(../icons/arrow-icon.svg);
    background-position: center;
    background-size: 18px;
    background-repeat: no-repeat;
    font-size: 0;
    width: 20px;
    padding: 0;
    right: 34px;
    display: none;
}
.virtual-conversation .message.initial-message {
    text-align: center;
    background-color: transparent;
    box-shadow: none !important;
    padding: 170px 0 20px;
    width: 100%;
    float: left;
    max-width: initial;
    position: relative;
    background-image: none;
}
.virtual-conversation .message.initial-message::after {
    content: '';
    width: 75px;
    height: 75px;
    display: block;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    background-image: url(../icons/ai.gif);
    background-size: 86px;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px) brightness(2);
    overflow: hidden;
    border-radius: 150px;
    box-shadow: 0 0 35px #0a377f;
}
.chat-opened::after {
    content: '';
    width: 50%;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0));
    position: fixed;
    z-index: 100;
    pointer-events: none;
}
.app iframe {
    float: left;
    width: 100%;
    position: absolute;
    z-index: 9;
    height: 100%;
    border: 0px solid;
}
.virtual-conversation .message.initial-message + .initial-message {
    display: none;
}
.chat-btn, a.magazine {
    /* background-image: url(../icons/ai.gif); */
    background-position: center;
    background-repeat: no-repeat;
    width: 62px;
    height: 62px;
    position: fixed;
    right: 30px;
    bottom: -150px;
    z-index: 9999 !important;
    border-radius: 100px;
    box-shadow: none;
    cursor: pointer;
    pointer-events: all;
    background-size: 97px;
    transition: 1s ease bottom;
    box-shadow: none;
    transition-delay: 0s;
    transition: 0s ease all;
    overflow: hidden;
    background:#5353cf;
}
.show-fixed-buttons .chat-btn, .show-fixed-buttons a.magazine {
    pointer-events: all;
    bottom: 40px;
}
.chat-btn::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    margin: auto;
    background-image: url(../images/ai-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: 35px;
}
body .chat-btn:hover, body a.magazine:hover {
    z-index: 99999999999 !important;
}
body .chat-btn:focus{
    cursor: grabbing !important;
}

.fancybox__container {
    z-index: 9999999999999999;
}
a.magazine {
    right: 110px;
    background-image: url(../icons/brochure-icon.svg);
    background-size: 34px !important;
    background-color: #f79910;
    background-position: center;
    box-shadow: none !important;
    border: 0;
    display: none;
}
.list-of-courses .item .text h4 {
    font-size: 18px;
    margin: 0px 0 15px;
}
.virtual-conversation .chat-container {
    display: none;
    float: left;
    width: 100%;
}
.virtual-conversation .chat-form {
    float: left;
    width: 100%;
    padding: 10px 40px;
}
.inside-page .chat-btn, .inside-page a.magazine {
    display: none !important;
}
.virtual-conversation .chat-form .title {
    float: left;
    width: 100%;
    font-size: 13px;
    font-weight: 300;
    margin: 0 0 10px;
    padding: 0;
    line-height: 1.4;
}
.virtual-conversation .chat-form button {
    background: #5353cf;
    border: 0;
    padding: 13px 20px;
    font-size: 14px;
    border-radius: 10px;
    color: #fff;
    margin: 20px 0 0;
}
.virtual-conversation .chat-form button:hover {
    opacity: 0.8;
    cursor: pointer;
}
.chat-opened .virtual-conversation.enlarge .chat-form {
    display: none;
}
.chat-opened .virtual-conversation.enlarge .chat-container {
    display: block;
}
.chat-opened .virtual-conversation.enlarge {
    height: 637px;
}
.chat-opened .virtual-conversation {
    height: 470px;
    bottom: 60px;
}
.chat-opened .chat-btn {
    bottom: -100px !important;
}
.chat-opened a.magazine {
    bottom: -100px !important;
}
.tooltip-btn:hover .tooltip-txt {
    display: block;
}
.tooltip-txt {
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.0);
    display: none;
    white-space: nowrap;
    width: fit-content;
    font-size: 14px;
    z-index: 99999999999999;
    position: fixed;
}
/*
.virtual-conversation .message.initial-message::before {
    content: '';
    width: 55px;
    height: 55px;
    display: block;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 23px;
    background-image: url(../icons/blt.svg);
    background-size: 27px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 7;
    filter: brightness(3);
}
*/
.virtual-conversation .message {
    padding: 5px 24px 5px 15px;
    font-size: 14px;
    font-weight: 300;
    width: 100%;
    float: right;
    text-align: right;
    transition: 0.5s ease all;
    line-height: 1.4;
    min-height: 36px;
    background-image: url(../icons/user_avatar_icon.svg);
    background-repeat: no-repeat;
    background-position: top 5px right 0px;
    background-size: 20px;
    position: relative;
    margin: 15px 0 10px;
}
.virtual-conversation .message.initial-message::after {
    opacity: 1;
    display: inline-block;
}
.virtual-conversation .message.bot-reply, .virtual-conversation .message.typing {
    float: left;
    text-align: left;
    padding: 12px 15px 12px 36px;
    border-radius: 15px 15px  15px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    width: fit-content;
    max-width: 100%;
    position: relative;
    background-image: none;
    margin: 0;
}
.virtual-conversation .message.bot-reply::after {
    filter: grayscale(1);
    display: block;
    display: block !important;
}
.virtual-conversation .message::after {
    transition: 0.3s ease all;
    opacity: 0.3;
    transform: scale(1);
    display: none !important;
}
.virtual-conversation .message.typing::after {
    filter: blur(0px) brightness(2) grayscale(0);
    transform: scale(2.25);
    display: block !important;
    opacity: 1;
    top: 13px;
    left: 7px;
}
.virtual-conversation .message.initial-message::after {
    display: block !important;
}
.virtual-conversation .message.typing {
    box-shadow: none;
    background: transparent;
    margin: 0 0;
}
.virtual-conversation .message::after {
    content: '';
    width: 12px;
    height: 12px;
    display: block;
    margin: auto;
    position: absolute;
    left: 15px;
    top: 16px;
    background-image: url(../icons/ai.gif);
    background-size: 23px;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(0px) brightness(2);
    overflow: hidden;
    border-radius: 150px;
    box-shadow: none;
    transition: 0.3s ease all;
}
.virtual-conversation .message.typing {
    color: #aaa;
}
.virtual-conversation .user-message {
    text-align: right;
    margin: 0 0;
}
.virtual-conversation .bot-message {
    background-color: #ffeb3b;
    text-align: left;
}
.virtual-conversation #clear-btn {
    padding: 10px 20px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.virtual-conversation input {
    float: left;
    width: 100%;
    border: 1px solid #ddd;
    height: 44px;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
}
.virtual-conversation input:focus {
    border-color: #1059c4;
}
.virtual-conversation h3 {
    font-size: 22px;
    line-height: 1.3;
    padding: 5px 45px 20px;
    background-image: url(../icons/ai-icon.svg);
    font-weight: 400;
    background-repeat: no-repeat;
    background-size: 37px;
    height: 46px;
    background-position: top left;
    color: #333;
    margin: 35px 25px 0;
    width: calc(100% - 50px);
    float: left;
    background-color: #f2f2f2;
    font-weight: bold;
}
.job-cards .item h3 span {
    font-weight: 300;
    color: #333;
    margin: 10px 0 0;
}
.job-cards .item h3 span strong {
    font-weight: 500;
}
.job-cards .item h3::after {
    content: '';
    height: 3px;
    width: 80px;
    background-color: #ddd;
    position: absolute;
    bottom: 0;
    left: 0;
}
.job-cards .item .info {
    background: #fff;
    float: left;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0 25px;
}
.job-cards .item .info h4 {
    margin: 0 0 15px;
    color: #666;
    font-weight: 400;
}
.job-cards .item {
    background: #f4f5f8;
    margin: 0 15px 30px;
    padding: 25px;
    border-radius: 10px;
    width: calc(50% - 30px);
    font-size: 13px;
}
.job-cards .item h3 {
    color: #0a377f;
    margin-top: 0;
}
.job-cards .item span {
    float: left;
    width: 100%;
    margin: 0 0 5px;
    font-size: 14px;
}
.job-cards .item h4 {
    font-size: 16px;
}
.job-cards .item span.status {
    background: #6dae2c;
    float: right;
    width: auto;
    padding: 6px 13px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
}
.job-cards .item span.status.closed {
    background: #d74444;
}
.placement a {
    color: #0a377f;
    text-decoration: underline;
}

.placement a:hover {
    color: #0a377f;
    text-decoration: none;
}
.placement a.apply-now {
    color: #fff;
    text-decoration: none;
}
.articles-page .modal h3 {
    float: left;
    width: 100%;
    font-size: 20px;
    font-weight: 700 !important;
}
.articles-page .modal h3 strong {
    font-weight: 700 !important;
}
.articles-page .grid h4 {
    margin: 0px 0 10px !important;
}
.contact-us .map-block .campus-hvr {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: initial;
    width: calc(100% - 0px);
    margin: 0;
}
.contact-us .ad-tbl {
    width: 50%;
    float: left;
    position: relative;
    z-index: 2;
    padding: 25px;
    background: rgba(10, 55, 127, .8);
    border-radius: 10px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #fff;
}
.contact-us .map-block iframe {
    position: absolute;
    top: 0px;
    right: 0;
    width: calc(50% - 50px);
    bottom: 0;
    height: 100%;
    z-index: 0;
    border-radius: 10px;
    border: 0;
}

.contact-us .map-block .address-block {
    position: absolute;
    z-index: 9;
    background: #fff;
    width: 50%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.08);
    padding: 30px;
    color: #333;
    bottom: 0px;
    display: block;
    overflow: hidden;
    height: 100%;
    line-height: 1.5;
    display: flex;
}
.contact-us .map-block h4 {
    margin: 0 0 10px;
    font-size: 26px;
}
a.hit-area {
    position: fixed;
    bottom: 26%;
    right: 28%;
    width: 135px;
    height: 50px;
    border: 0px solid #333;
    z-index: 9999;
    background: transparent;
    border-radius: 0;
}
a.hit-area.apply-now {
    left: 24%;
    right: initial;
    bottom: 29%;
    HEIGHT: 78PX;
    WIDTH: 192PX;
}
.contact-us .map-block .campus-hvr:hover {
    width: 100%;
}
.contact-us .map-block .item {
    width: calc(100% - 0px) !important;
    margin: 0;
    float: left;
    height: 62vh;
}
.contact-us .map-block {
    position: relative;
    display: flex !important;
    float: left;
    width: 100%;
}
.social-nav {
    float: left;
    width: 100%;
    margin: 30px 0 20px;
}
.social-nav .links a {
    float: left;
    margin: 0 10px 0 0;
    width: 50px;
    height: 50px;
    background-color: #ff9908;
    border-radius: 100px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
}
.social-nav .links .facebook {
    background-image: url(../icons/facebook-icon-footer.svg);
}
.social-nav .links .instagram {
    background-image: url(../icons/instagram-icon-footer.svg);
}
.social-nav .links .youtube {
    background-image: url(../icons/youtube-icon-footer.svg);
}
.social-nav .links .whatsapp {
    background-image: url(../icons/whatsapp-icon-footer.svg);
}
.social-nav .links .twitter {
    background-image: url(../icons/twitter-icon-footer.svg);
}
.social-nav .links {
    float: left;
    width: 100%;
    margin: 10px 0;
}
.side-panel .form-group {
    float: left;
    width: 100%;
}
.content-panel-opened .chat-btn, .content-panel-opened a.magazine {
    bottom: 30px;
}
.magazine-opened a.magazine {
    bottom: -100px;
}
.magazine-holder a.close-form {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 70px;
    line-height: 1;
    font-weight: 100;
    transform: rotate(45deg);
    cursor: pointer;
}
.magazine-holder a.close-form:hover {
    opacity: 0.6;
}
.magazine-holder {
    width: 990px;
    height: 700px;
    padding: 0px;
    margin: auto;
    position: fixed;
    inset: 0;
    z-index: 999999;
    transition: 0.4s ease all;
    top: 120%;
    opacity: 0;
    pointer-events: none;
}
.magazine-holder iframe {
    width: 990px;
    height: 700px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border: 0;
}
.magazine-opened .magazine-holder {
    top: 0;
    pointer-events: all;
    opacity: 1;
}
.articles-page .container {
    float: left;
    width: 100%;
    top: 0;
    position: relative;
    margin: 0 0 0;
    z-index: 9;
    padding: 0;
    background: transparent;
    height: auto;
}
.articles-page #closeModal {
    font-size: 0;
    background-image: url(../images/close-icon-2.png);
    background-repeat: no-repeat;
    width: 36px;
    height: 36px;
    background-size: 46px;
    border-radius: 0;
    top: 14px;
    position: absolute;
    right: 12px;
    opacity: 0.5;
    background-position: center;
}
.articles-page #closeModal:hover {
    opacity: 1;
}
.articles-page .grid {
    display: block;
}
.articles-page .tag-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.aviation-career a.btn {
    float: left;
    background: #ff9908;
    text-decoration: none;
    color: #fff;
    padding: 9px 18px;
    border-radius: 10px;
}
.aviation-career a.btn:hover {
    opacity: 0.8;
}
.aviation-career span {
    float: left;
    width: 100%;
    margin: 0 0 20px;
}
.aviation-career h3 {
    margin: 0 0 5px;
    font-size: 32px;
}
.content-box.articles-page.careers h1 {
    margin: 0;
}
.aviation-career {
    float: left;
    width: 100%;
    border-radius: 15px;
    color: #fff;
    padding: 25px 25px 25px 280px;
    background: #0a377f;
    margin: 30px 0 30px;
    background-image: url(../images/careers-icon.svg);
    background-repeat: no-repeat;
    background-position: center left 0px;
    background-size: 260px;
    min-height: 220px;
}
.articles-page .tag {
    background: #fff;
    border: 1px solid #b1bdd5;
    padding: 8px 13px;
    color: #0a377f;
    cursor: pointer;
    margin: 0 5px 8px 0 !important;
    border-radius: 40px;
}
.articles-page .tag.active {
    color: #fff;
    border-color: #0a377f;
    background: #0a377f;
}
.articles-page .posts {
    display: block;
    float: left;
    margin: 0 0 0px;
    width: 100%;
}
.articles-page select {
    padding-right: 30px;
}
.articles-page .card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0px 20px rgba(14,20,30,0.01);
    display: flex;
    gap: 20px;
    margin: 0 0 20px;
    transition: 0.2s ease all;
}
.articles-page .card:hover {
    box-shadow: 0 0px 30px rgba(14,20,30,0.08);
}
.articles-page .popular-list .post-short-card {
    display: flex;
    gap: 15px;
    background: #f7f7f7;
    border-radius: 8px;
    padding: 15px;
    transition: 0.2s ease all;
}
.articles-page .popular-list .post-short-card:hover {
    background: #f3f3f3;
}
.articles-page .thumb {
    width: 325px;
    height: 185px;
    border-radius: 8px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-color: #f4f4f4;
}
.articles-page .desc {
    float: left;
    width: 100%;
    line-height: 1.3;
}
.articles-page .meta {
    font-size: 13px;
    color: #888;
    margin: 0 0 10px;
}
.articles-page .title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
}
.articles-page .excerpt{color:#374151;font-size:14px}
.articles-page .readmore {
    margin: 10px 0;
    display: inline-block;
    color: #0a377f;
    font-weight: normal;
    text-decoration: none;
    font-size: 15px;
}
.articles-page .readmore:hover {
    text-decoration: underline;
}
.articles-page .apply-now-btn {
    background: #0a377f;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    margin: 0px 0 0;
    float: left;
    font-weight: 400;
    text-decoration: none;
    height: 45px;
    margin: 20px 0 0;
}
.articles-page .widget .text {
    float: left;
    width: 100%;
    margin: 0 0 20px;
}
.articles-page .stayin-touch  span {
    float: left;
    width: 100%;
    margin: 20px 0  0;
}
.articles-page .stayin-touch  a {
    color: #0a377f;
}
.articles-page .stayin-touch  a:hover {
    text-decoration: none;
}
.articles-page .stayin-touch {
    float: left;
    width: 100%;
    margin: 30px 0 0;
}
.articles-page .stayin-touch  h4 {
    float: left;
    width: 100%;
    margin: 0 0 10px !important;
}
.articles-page .widget h1 {
    margin: 0 0 5px;
    color: #ddd;
}
.articles-page .widget .tag-list strong {
    display: none;
}
.articles-page .widget .tag-list div {
    margin: 0 !important;
}
.articles-page .apply-now-btn:hover {
    opacity: 0.8;
}
.articles-page .widget {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0px 30px rgba(0,0,0,0.01);
    margin-bottom: 20px;
    float: left;
    width: 100%;
}
.box a.click {
    float: left;
    width: 100%;
    margin: 17px 0 0;
    font-size: 14px;
    text-decoration: none;
    font-weight: 300;
}
.box a.click:hover {
    text-decoration: underline;
}
.articles-page .popular-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    float: left;
    width: 100%;
    margin: 0 0 0px;
}
.articles-page .popular-list img {
    width: 70px;
    margin: 0;
    min-height: 45px;
}
.articles-page .popular-list .short-title {
    font-weight: bold;
}
.articles-page .popular-list .muted-date {
    float: left;
    width: 100%;
    font-size: 12px;
    margin: 2px 0 0;
}
.articles-page .rt {
    max-width: 480px !important;
}
.articles-page .actions {
    display: block;
    float: left;
    width: 100%;
}
.articles-page .sidebar h4 {
    margin: 0 0 20px;
    border-bottom: 2px solid #eee;
    padding: 0 0 10px;
}
.articles-page button {
    background: var(--accent);
    border: 0;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    color: #0a377f;
}
.articles-page input {
    min-width: 350px;
}
.articles-page .search {
    float: left;
    width: 100%;
    margin: 15px 0 25px;
    display: flex;
    justify-content: space-between;
}
.articles-page .search .widget div {
    margin: 0 !important;
}
.articles-page .title a {
    font-size: 28px;
    font-weight: 800;
    padding: 0;
    margin: 0;
    color: #000;
}
.articles-page .title a:hover {
    color: #0a377f;
}
.articles-page .search .widget {
    margin: 0 20px;
    float: right;
    width: 100%;
}
.articles-page #resetFilters, .articles-page button #loadMore {
    background: transparent;
    border: 0;
    padding: 0;
    border-radius: 8px;
    cursor: pointer;
    color: #0a377f;
    margin: 0 20px 0 0;
    font-size: 15px;
}
.articles-page #resetFilters:hover, .articles-page button #loadMore:hover {
    text-decoration: underline;
}
.articles-page #modalContent {
    float: left;
    width: 100%;
}
.articles-page .scroller-tbl {
    float: left;
    width: 100%;
    height: calc(100vh - 140px);
    overflow: hidden;
    overflow-y: auto;
    padding: 0px 0 50px;
}
.articles-page input, .articles-page select {
    float: left;
    margin: 0 0 0;
    border: 0px solid #e9e9e9;
    padding: 12px 15px;
    min-height: 40px;
    border-radius: 14px;
    background-color: #ffffff;
    color: #333;
}
.articles-page input:focus, .articles-page select:focus {
    border: 0px solid #194fa7;
    box-shadow: 0 0 0 2px #194fa7;
}
.content-box.articles-page {
    background: #f4f4f4;
}
.articles-page .lt h4 {
    margin: 0;
    font-size: 24px;
}
.articles-page button.secondary{background:#fff;border:1px solid #ddd;color:#111}
.articles-page .modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10,12,15,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 9999;
}
.articles-page .modal {
    background: #fff;
    width: 100%;
    max-width: 630px;
    border-radius: 0;
    height: 100vh;
    overflow: hidden !important;
    padding: 45px;
    display: block;
    left: 50px;
    top: 50px;
    bottom: 50px;
    height: calc(100vh - 100px);
    border-radius: 20px;
}
.articles-page .modal p {
    white-space: pre-line;
    font-size: 14px;
    float: left;
    width: 100%;
    margin: 0 0 0px;
    font-weight: 300;
    line-height: 1.4;
}
.articles-page .modal .contact-card {
    float: left;
    width: 100%;
    background: #0a377f;
    margin: 30px 0 0;
    padding: 20px;
    border-radius: 10px;
    font-size: 14px;
    line-height: normal;
    color: #fff;
    position: sticky;
    bottom: 0;
}
.articles-page .modal .contact-card span {
    float: left;
    width: 100%;
    margin: 5px 0 0;
}
.articles-page .modal .contact-card a {
    font-weight: bold;
    color: #fff;
}
.articles-page .modal .contact-card a:hover {
    text-decoration: none;
}
.articles-page .modal .contact-card h3 {
    margin: 0 0 10px;
}
.articles-page .modal h2 {
    font-size: 32px;
    margin: 15px 0px 5px;
    font-weight: 800;
    position: sticky;
    top: 0;
    background: #fff;
    padding: 0 0 5px;
}
.articles-page .modal {
    font-family: "Alexandria", serif;
}
.articles-page .modal img {
    height: auto;
    width: 100%;
    float: left;
    margin: 10px 0 0px !important;
    border-radius: 18px !important;
}
.trumbowyg-button-pane button {
    margin: 0;
    border-radius: 0;
}
.articles-page .modal .contact-card h4 {
    margin: 0 0 10px;
}
.articles-page .modal .btnLink {
    font-size: 14px;
}
.articles-page .modal .btnLink:hover {
    text-decoration: none;
}
.articles-page .toolbar {
    margin-bottom: 10px;
}
.articles-page .editor {
    border: 1px solid #ccc;
    padding: 10px;
    min-height: 150px;
    font-family: Arial, sans-serif;
}