﻿* {margin: 0; padding: 0}

body {
 font-family: "Open Sans", sans-serif;
 margin: 0;
 padding: 0;
 font-size: 16px;
 font-weight: 400;
 color: #232e33;
 outline: 0;
 line-height: 1.5em;
 overflow-x: hidden
}

.col-lg-8.leftsec_content {
    margin-top: 86px;
}

.bx-s3 img {width: 100% !important;}

.paira {
    width: 1100px;
    margin: 26px auto;
    text-align: justify;
    background: #f3f3f3;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    border-radius: 10px;
}

.paira p {
  font-size: 15px;
  color: #1f1d1d;
}


span.fa.fa-chevron-up {
    margin: 0px -4px;
    font-size: 18px;
}

.controls {
    margin-top: 25px;
    text-align: center;
}

.testimonial-section {
  padding: 60px 20px;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.testimonial-container {
  max-width: 700px;
  margin: auto;
  position: relative;
}

.testimonial {
  display: none;
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  animation: fade 0.6s ease-in-out;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.user {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}

.user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.user h4 {
  margin: 0;
  font-size: 16px;
}

.user span {
  font-size: 14px;
  color: #888;
}

.controls {
  margin-top: 22px;
}

.controls button {
  background: #f5cb43;
  color: #fff;
  border: none;
  font-size: 21px;
  cursor: pointer;
  width: 20px;
  height: 26px;
  border-radius: 3px;
}

.controls button:hover {
  background: #df9416;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.box-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.hover-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  text-align: center;
  background: #fff;
  height: 275px;
}

.hover-box img {
  width: 100%;
  display: block;
}

.hover-box h3 {
  padding: 7px;
  font-size: 15px;
  font-weight: bold;
}

.box-content {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 20px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hover-box:hover .box-content {
  opacity: 1;
  transform: translateY(0);
}

.box-content h3 {
  margin-bottom: 10px;
}

.box-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .box-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .box-wrapper {
    grid-template-columns: 1fr;
  }
}


.prs h2 {
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 14px 0px;
    color: #3c0032;
}

.program-wrapper{
    margin: auto;
    background:#ffffff;
    border-radius:10px;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    overflow:hidden;
}

.prs ul {
    padding: 0 15px;
}

.prs ul li {
    font-size: 15px;
    color: #000;
    list-style: disc;
    line-height: 25px;
}

/* Tabs */
.tabs{
    display:flex;
    flex-wrap:wrap;
    background: #001e82;
}

.tabs button{
    flex:1;
    padding:16px;
    background:none;
    border:none;
    color:#ffffff;
    font-size: 16px;
    cursor:pointer;
    transition:0.3s;
    font-weight: 600;
}

 .tabs button:hover,
 .tabs button.active{
    background: #ffd200;
    color: #000;
}

/* Content */
.tab-content{
    display:none;
    padding: 14px;
}

.tab-content.active{
    display:block;
}

 h2{
    margin-top:0;
    color:#0a2540;
}

.section{
    margin-bottom:20px;
}

.section h4{
    margin-bottom: 4px;
    color: #001e82;
    font-size: 15px;
    font-weight: bold;
}

ul{
    padding-left:18px;
    margin:0;
}

@media(max-width:768px){
.tabs button{
        font-size:14px;
        padding:12px;
    }
}

.container1 {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(327px, 2fr));
  gap: 15px;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #d81f31;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.card p {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.6;
}


.abt-cont h5 {
    font-size: 21px;
    font-weight: bold;
    margin: 11px 0px;
}
.abt-cont p {
    font-size: 15px;
    font-weight: 500;
}

.abt-cont ul {
 padding: 0 20px;
}

.abt-cont ul li {
  list-style-type: disc;
  font-size: 15px;
  margin: 1px 0px;
  border-bottom: dotted 2px #f6dd6a;
  color: #2a2a2a;
  font-weight: 600;
  line-height: 27px;
  padding-bottom: 10px;
}

.orange-strip {
    color: white;
    background: #e95020;
    padding: 6px 0px;
    top: 0px;
    left: 0;
    position: relative;
    z-index: 999999;
    overflow: hidden;
    width: 100%;
}

.orange-strip h3 {
    font-size: 14px;
    padding: 3px 0px;
    margin: 0;
    color: #ffff;
    font-weight: 600;
}

.orange-strip h3 a {
    font-size: 13px;
    color: #ff6600;
    font-weight: 600;
    text-decoration: none;
}
@keyframes blink {
  0%,
  50%,
  100% {
    background-color: #000;
    color: #fff;
  }
  25%,
  75% {
    background-color: #fff;
    color: #ff6600;
  }
}

.btn-strip {
    cursor: pointer;
    animation: blink 3s infinite;
    transition: 0.9s;
    padding: 4px 9px !important;
    margin: 0 0 0 13px;
    background: #ffffff;
    border-radius: 10px;
}

.mob {display: none;}


.fiv-one14 {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.three-bx14 {
    text-align: center;
    border-radius: 7px;
    transition: easeall 0.4s;
    height: 107px;
    padding: 12px 14px;
    margin: 2px 2px;
    border: solid 2px #eee;
    width: 237px;
    background: #3a3a3a;
    border-radius: 20px;
}

.three-bx14 h2 {
    text-align: center;
    margin-bottom: 3px;
    margin-top: 10px;
    font-size: 30px;
    font-weight: bold;
    background: linear-gradient(93deg, #39b6d8 3.94%, #f7d344 49.4%, #e38330 94.86%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.three-bx14 p {
    font-size: 14px;
    color: #ffffff;
}

.plac {background:url("../images/master.webp");}

.abs ul li {
    display: block;
    color: #201e1e;
    padding: 1px 0px;
    border-bottom: dotted 1px #8f9392;
    margin: 4px 0px;
    font-size: 16px;
}
.table td, .table th {
    font-size: 14px;
    padding: 5px 6px;
}
.txz {
    margin-bottom: 22px;
}

.txz p {
    color: #201e1e;
    font-size: 15px;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #CD3838;
}
.abt {
    background: #00036f;
    height: auto;
}

.abt-cont {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}

#recognitions-slider2.owl-carousel .owl-item img {
    display: inline-block;
    height: auto;
}


.gik ul li {
    color: #000 !important;
    line-height: 29px !important;
    text-align: left;
}
.tx h2 span {
    font-size: 15px;
    color: #6f6e6e;
}
.dg p {
    font-size: 14px;
    color: #000;
}
.sem.tx p {
    color: #1a1818;
    font-size: 15px;
    margin: 4px 0px;
}
.tx ul li {
    line-height: 25px;
    color: #1a1919;
    font-size: 14px;
}
.vb {
    box-shadow: 0px 0px 12px -3px rgb(0 0 0 / 35%);
    height: 411px;
    padding: 10px;
    border-radius: 10px;
}
.fiv-one2 {
    display: flex;
    width: 100%;
    flex-flow: wrap;
    justify-content: center;
}
.three-bx2 p {
    font-size: 15px;
    color: #ffffff;
    text-align: center;
    margin-top: 6px;
}

.three-bx2 {
    text-align: center;
    border-radius: 10px;
    transition: ease all 0.4s;
    margin-bottom: 11px;
    justify-content: center;
    flex-direction: column;
    width: 27%;
    padding: 7px 10px;
    background: #3c0032;
    margin-left: 9px;
    box-shadow: 0 1.6rem 2.4rem rgba(0, 0, 0, 0.08);
    height: 109px;
}
.three-bx2 img {
    padding-bottom: 12px;
    width: 48px;
}

.three-bx2 h2 {font-size: 25px;line-height: normal;font-weight: bold;color: #ffd200;}



.fiv-one5 {
    display: inline-flex;
    width: 100%;
    flex-flow: wrap;
}
.three-bx5 p {
    font-size: 15px;
    color: #d4d4d4;
    text-align: left;
    margin-top: 13px;
}

.three-bx5 {
    text-align: center;
    border-radius: 10px;
    transition: ease all 0.4s;
    margin-bottom: 11px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 24%;
    padding: 7px 10px;
    box-shadow: 0px 0px 12px -3px rgb(0 0 0 / 35%);
    background: #fff;
    margin-left: 9px;
    background-color: #212121;
    box-shadow: 0 1.6rem 2.4rem rgba(0, 0, 0, 0.08);
    height: 121px;
}
.three-bx5 img {
    padding-bottom: 12px;
    width: 48px;
}

.three-bx5 h2 {
    margin-top: -2px !important;
    font-family: "Open Sans", sans-serif;
    font-size: 14px !important;
    color: #ffffff !important;
    text-align: center !important;
    line-height: 1.4;
    background: linear-gradient(93deg, #ffffff 3.94%, #ffea97 49.4%, #ffffff 94.86%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.fiv-one3 {
    display: inline-flex;
    width: 100%;
    flex-flow: wrap;
    margin-top: 24px;
}
.three-bx3 p {
    font-size: 15px !important;!I;!;
    color: #322f2f;
    text-align: left;
    margin-top: 13px;
    line-height: 22px !important;
}

.three-bx3 {
    text-align: center;
    border-radius: 10px;
    transition: ease all 0.4s;
    margin-bottom: 11px;
    justify-content: center;
    flex-direction: column;
    width: 24%;
    height: 197px !important;
    padding: 10px 8px;
    margin-left: 9px;
    background: #fff;
    border: solid 1px #eee;
}
.three-bx3 img {
    padding-bottom: 12px;
    width: 48px;
}

.three-bx3 h2 {
    margin-top: -3px !important;
    font-family: "Open Sans", sans-serif;
    font-size: 16px !important;
    font-weight: 600;
    color: #9b5e09 !important;
    text-align: left !important;
    line-height: 1.4;
}


.xcv {
    background: rgba(0,0,0,0.55);
    box-shadow: 0 0.8rem 1.6rem 0 rgba(18, 18, 18, 0.16);
    border-radius: 0.8rem;
    height: auto;
    margin-top: 24px;
    padding: 4px 8px;
    width: 442px;
}
.bz1 {
    color: #f0f0f0;
    line-height: normal;
    padding: 4px 10px;
    text-align: left;
    height: 108px;
    display: inline-grid;
    width: 47%;
}

.bz1 h5 {
    font-size: 27px;
    color: #fbd83d;
    margin: 11px 0 -2px 0px;
    font-weight: bold;
}

.bz1 p {
    color: #f6f4f4;
    font-size: 16px;
}

.bannerContent p {
    font-size: 33px;
    line-height: 56px;
    margin-bottom: 13px;
    color: #ffd200;
    text-transform: uppercase;
    font-weight: bold;
}
#courses-slider img {
    border-radius: 10px;
}
.container.tx h5 {
    font-size: 18px;
    padding: 18px 0px;
    color: #ce3338;
}
.sem.tx {
    display: inline-block;
    width: 100%;
}
.tab {
  float: left;
  background: linear-gradient(93deg, #191a1a 3.94%, #2c2b28 49.4%, #000000 94.86%);
  width: 30%;
  height: 312px;
  border-radius: 10px 0 0 10px;
  z-index: 999;
  position: relative;
}

.tab button {
  display: block;
  background-color: inherit;
  color: white;
  padding: 8px 13px;
  width: 90%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
  margin: 5%;
  border-radius: 4px;
}

.tab button:hover {
  background-color: #bee9f7;
}
.sem.tx h3 {
    color: #34322f;
    font-size: 15px;
    margin-top: 7px;
    font-weight: bold;
    margin-bottom: 10px;
}
.tab button.active {
  background-color: #d7a636;
  color: #191a1a;
  font-weight: bold;
}

.tabcontent {
  float: left;
  padding: 8px 24px;
  width: 70%;
  border-left: none;
  min-height: 312px;
  border-radius: 0 10px 10px 0;
  box-shadow: 0px 0px 12px -3px rgb(183 183 183);
}	
	
.bc-img01:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}
#campus {
    font-size: 14px;
    color: rgba(0,0,0,.9);
    border: 0;
    border-radius: 0;
    background-color: #f5f5f5;
    margin: 0 auto;
    padding: 10px 15px;
    height: auto;
}
.bannerContent h2 {
    color: #ffffff;
    font-size: 17px;
    margin: 20px 0px;
    line-height: 28px;
    width: 62%;
}
.logo { 
    position: relative;
    top: 43px; 
}
.dgf img {border-radius: 10px;}
img.img-responsive {
    margin-top: 10px;
}
.financial-tabs h4 {
    font-size: 20px;
    color: #252b5d;
}

.dg{
    }
.row.yu img {
    width: 100px;
    background: #fff;
    height: 100px;
    padding: 9px;
    border-radius: 50%;
}

.row.yu h2 {
    font-size: 15px;
    line-height: 51px;
    font-weight: 600;
    border: solid 1px #d42329;
    height: 66px;
    text-align: center;
}
.row.yu p {
    font-size: 16px;
    line-height: 1.6;
}
.navbar-light .navbar-nav .nav-link {
    color: #3e3636;
    font-size: 14px;
    margin: 0 1px;
    font-weight: 600;
    padding: 0 6px;
    text-transform: uppercase;
}

h2.lft {
    position: relative;
    right: 0;
    top: 10px;
    text-align: center;
    margin: auto;
}

#back-to-top {
    position: fixed;
    bottom: 13px;
    right: 10px;
    border: none;
    background: #f5ce42;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

#law {
    background-position: center;
    position: relative;
    background: #242a5c;
}

#why {
    background-image: url(https://www.lawentrance.com/lst-freezone/images/slider-1.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
}
#why:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 70%);
    content: "";
}
.three-bx h2 span {
    color: #8541ba;
    font-size: 41px;
    font-weight: bold;
}

.why-cl1 ol li {
    line-height: 30px;
    font-size: 16px;
}
.why-cl1 ol {
    padding: 3px 24px;
    list-style: square;
}

.why-cl ol li {
    line-height: 36px;
    font-size: 16px;
}
.why-cl ol {
    padding: 3px 24px;
    list-style: square;
}
.why-cl1 {
    text-align: justify;
    /* height: 346px; */
    box-shadow: 0px 0px 36px rgb(76 76 100 / 6%);
    background: #fff;
    padding: 10px 46px;
}
.why-cl {
    text-align: justify;
    box-shadow: 0px 0px 36px rgb(76 76 100 / 6%);
    background: #fff;
    padding: 69px 46px;
}
img.img-responsive {
    width: 100%;
    box-shadow: 0px 0px 36px rgb(76 76 100 / 6%);
}
.digital img {
    box-shadow: 0px 0px 36px rgb(76 76 100 / 6%);
}
.bannerContent h4 span {
    background: #f9d800;
    padding: 3px 6px;
    font-size: 20px;
    border-radius: 4px;
}
.three-bx1 h2 {
    color: #f5ba08;
    font-size: 40px;
    font-weight: bold;
}
.mba {
    text-align: center;
}
#mission {
    margin: 20px 0px;
}
section.pt h6 {
    font-size: 19px;
}
.three-bx1 p {
    text-align: center !important;
    color: #fff;
}
.financial-tabs h5 {
    font-size: 15px;
    padding-bottom: 8px;
}

.bannerContent h6 {
    background: #f5ba08;
    display: inline-block;
    margin: 17px 0px;
    color: #242424;
    font-size: 18px;
    padding: 9px 10px;
    border-radius: 30px;
}
.three-bx ul li {
    float: left;
    margin: 2px 21px;
    list-style: square;
    padding: 2px 5px;
    color: #000;
    font-size: 15px;
}
.financial-tabs h6 {
    font-size: 22px;
    line-height: 40px;
    margin-top: 20px;
    background: #8541ba;
    color: #fff;
    display: inline-block;
    padding: 0 9px;
    border-radius: 4px;
}

.fiv-one1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-flow: wrap;
}

.three-bx1 {
    text-align: center;
    border-radius: 10px;
    transition: ease all 0.4s;
    margin-bottom: 11px;
    justify-content: center;
    flex-direction: column;
    width: 32%;
    height: 145px;
    padding: 19px 20px;
    margin-top: 20px;
    box-shadow: 0px 0px 12px -3px rgb(0 0 0 / 35%);
    border: solid 1px #c7afaf;
}
.three-bx1 ul li {
    float: left;
    margin: 2px 21px;
    list-style: square;
    padding: 2px 5px;
    color: #000;
    font-size: 15px;
}
.three-bx1 img {
    width: 70px;
    margin-left: auto;
    margin-right: auto;
    padding: 14px 0px;
}
.mba h5 {
    position: relative;
    color: #fff;
    padding: 4px 62px;
    font-size: 19px;
    border-radius: 10px;
    background: #0046a4;
    display: inline-block;
}
.bx {
    padding: 0 0px 24px 0px;
    height: auto;
    margin-top: 0;
}

.three-bx img {
    width: 76px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 0px;
}
.fs {
    display: flex;
    text-align: center;
}

.bx h3 {
    padding: 6px 0px;
    font-size: 23px;
    color: #8441b9;
}
.bx ul li {
    font-size: 16px;
    list-style: disc;
    line-height: 27px;
}
.bx ul {
    list-style: none;
    padding: 0 20px;
}
.bannerContent ul li {
    font-size: 18px;
    line-height: 29px;
    list-style: square;
    color: #fffefc;
}
.bannerContent h4 {
    color: #ffffff;
    margin-top: 14px;
    font-size: 21px;
    line-height: 1.4;
    background: linear-gradient(93deg, #39b6d8 3.94%, #ffffff 49.4%, #e38330 94.86%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}
.bannerContent ul {
    padding: 18px 26px;
}
hr {
    border: solid 1px #b5e2cb;
    width: 10%;
    margin: 3px auto;
}
hr.about {
    width: 114px;
    border: solid 1px #f0b452;
    margin-top: -17px;
    margin-left: 0px;
}
.bannerContent h1 {
    color: #ffffff;
    width: 68%;
    line-height: 50px;
}
.bannerContent h1 span {
    font-size: 37px;
    font-weight: bold;
}
.tx p {
    line-height: 28px;
    font-weight: normal;
    text-align: left;
    font-size: 15px;
}
.nx-section {
    background: #f1f1f1;
}
.bannerContent {
}
.bx-s1 p span {
    color: #fed032;
    font-size: 24px;
    font-weight: 600;
}
.bx-s1 {
    box-shadow: 1px 1.732px 40px 0px rgb(237 237 237 / 14%);
    padding: 12px 10px;
    width: 210px;
    margin: 0 0 0 9px;
    border-radius: 50%;
    height: 210px;
    border: solid 1px #a19d92;
}
.bx-s1 img {
    width: 81px;
    padding: 10px;
}
.bx-s1 p {
    line-height: 24px;
    color: #ffffff;
    font-size: 16px;
}
section.pt {
    padding: 40px 0px;
}
.ab ul {
    text-align: left;
    margin-top: 20px;
}
.ab ul li {
    font-size: 15px;
    line-height: 27px;
}
.fiv-one {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-flow: wrap;
    margin-top: 50px;
}
.row.abt img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.ab h2 {
    text-align: left;
    font-size: 28px;
    font-weight: bold;
    padding: 22px 0px;
    color: #f9d800;
}
.ab p {
    text-align: justify;
    line-height: 25px;
    color: #fff;
    font-size: 15px;
}
.ab {
    padding: 3px 29px;
}
.three-bx {
    text-align: center;
    transition: ease all 0.4s;
    margin-bottom: 15px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 31%;
    padding: 0px 19px;
}
.three-bx h2 {
    font-style: normal;
    font-size: 16px;
    color: #6f6f6f;
    text-align: center;
    margin-bottom: 10px;
    line-height: normal;
}
.three-bx p {
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    color: #f0c33a;
    line-height: 20px;
}
.lst ul {
    list-style: square;
}
.lst ul li {
    color: #fff;
    text-align: left;
    line-height: 30px;
    font-size: 15px;
}
.bannerContent h5 {
    font-size: 16px;
    padding: 3px 1px;
    margin-top: 5px;
    color: #fff;
    display: inline-block;
}
.bx-s {
    text-align: center;
    padding: 5px;
    background: #fff;
    border-radius: 10px;
    width: 182px;
    height: auto;
    border: solid 1px #eee;
}
.bx-s h5 {
    color: #2a2a2a;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
}
.highlight {
    /* background: #efefef; */
    padding: 40px 0px;
}
section.band {
    padding: 20px 0px;
}
section.band img {
    width: 100%;
}
.logo img {max-height: 64px;}
.tx ul {
    list-style: square;
    font-size: 16px;
    line-height: 30px;
    padding: 0px 30px;
}
.tx h2 {
    color: #252525;
    font-size: 20px;
    text-align: center;
    margin-top: 12px;
}
h1, h2, h3, h4, h5, h6 {
    color: #333;
    font-size: 28px;
    margin: 0;
    line-height: 1.3em
}

p {
    padding: 0;
    margin: 0;
    font-size: 15px;
    line-height: 24px;
    color: #2a2a2a;
}

.hr {
    margin-bottom: 15px;
    margin-top: 15px;
    border-color: #000;
    width: 25%;
    margin-left: auto;
    margin-right: auto
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}

ul {
    list-style: none;
    margin: 0;
    padding: 0
}
.carousel-indicators li {
    background-color: #801634;
}
.carousel-indicators {bottom: -61px;}
a {
    outline: 0 !important;
    color: #f15922;
    text-decoration: none;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease
}

a:active, a:focus, a:hover {
    outline: 0 !important;
    text-decoration: none;
    color: #000
}

input:focus, textarea {
    outline: 0 !important;
    text-decoration: none
}

img {
    border: 0
}

.img-responsive100 {
    width: 100%
}

.nopd {
    padding-left: 0;
    padding-right: 0
}

.fsize22 {
    font-size: 18px;
}

.fsize28 {
    font-size: 28px
}

.fsize24 {
    font-size: 24px
}

.font-weight-300 {
    font-weight: 400 !important
}

.font-weight-900 {
    font-weight: 900 !important
}

.font-weight-700 {
}

li {
    color: #6f6f6f;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    font-size: 14px;
    line-height: 36px;
}

::-moz-selection {
    background-color: #f16f21;
    color: #fff
}

::selection {
    background-color: #f16f21;
    color: #fff
}

::-webkit-input-placeholder {
    color: rgba(0,0,0,.8) !important
}

::-moz-placeholder {
    color: rgba(0,0,0,.8) !important
}

:-ms-input-placeholder {
    color: rgba(0,0,0,.8) !important
}

:-moz-placeholder {
    color: rgba(0,0,0,.8) !important
}

.zindex2 {
    z-index: 2
}

.show {
    display: block !important
}

.text-orange {
    color: #ffffff;
}

.text-blue {
    color: #1c2e51
}

.bg-orange {
    background-color: #f16e21
}

.bg-blue {
    background-color: #bf2727;
}

#back-top {
    position: fixed;
    right: 10px;
    bottom: 0;
    z-index: 999;
    overflow: hidden;
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid #8541ba;
    background-color: #8541ba;
    border-radius: 100%;
    text-align: center;
    -webkit-transition: all .25s ease;
    transition: all .25s ease
}

#back-top:after {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 20px;
    content: "";
    background: url(https://clsite-file1.s3.amazonaws.com/7214_top.png);
    line-height: 48px;
    -webkit-transition: color .25s ease,-webkit-transform 2s ease;
    transition: color .25s ease,transform 2s ease;
    width: 30px;
    height: 24px;
    background-size: 33px;
    background-repeat: no-repeat;
    position: absolute;
    top: 6px;
    left: 3px;
}

#back-top:hover {
    border-color: transparent;
    background-color: #11212e
}

#back-top:hover:after {
    color: #fff
}

.bc-img01 {
    background-image: url(../images/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 597px;
    background-position: 0px 0px;
    box-shadow: 0 0 18px 1px rgb(0 0 0 / 10%);
}

.sideNavi {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 2
}

.sideNavi-flex .sideNavi-item .callbg {
    background-color: #c6c6c6;
    color: #010101
}

.sideNavi a {
    background-color: #1c2e51;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    padding: 9px 16px;
    margin-bottom: 50px;
    display: block
}

.blog-text > a {
    color: #fff;
    display: inline-block;
    background-color: #1c2e51;
    line-height: 1;
    border-radius: 30px;
    padding: 20px 40px;
    position: relative;
    text-transform: capitalize;
    transform: perspective(1px) translateZ(0);
    transition: color .3s ease 0s;
    vertical-align: middle;
    font-size: 16px
}

.blog-text > a:hover {
    color: #414042
}

.blog-text > a::before {
    border-radius: 30px;
    background-color: #fff;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: 50% 0 0;
    transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: ease-out;
    z-index: -1
}

.blog-text > a:hover::before {
    transform: scaleY(1)
}

.widget-title h3 {
    position: relative;
    font-size: 25px;
    color: #464646;
    font-weight: bold;
    text-transform: uppercase;
}

.header .header-absolute {
    position: fixed;
    width: 100%;
    z-index: 10;
    background: #ffffff;
    box-shadow: 0 0 18px 1px rgb(0 0 0 / 10%);
}

.logo {
    position: relative;
    top: 1px;
}

.logo-right strong a {
    line-height: 1.1;
    color: #1c2e51;
}

.logo-right i {
    margin-top: 5px;
    display: inline-block;
    font-size: 40px;
    position: absolute;
    right: 41%
}

.dsu-form {
    width: 325px;
    padding: 18px 20px;
    background: #e8e8e8;
}

.frmBg {
    text-align: center;
    position: relative
}

.frmBg h4 {
    font-size: 15px;
    line-height: 23px;
    color: #ffffff;
    display: block;
    padding: 8px 10px;
    font-weight: bold;
    background: #082277;
}

.applyBox {
    margin-top: 6%;
    width: 100%;
    display: table
}

.contact_fild {
    padding: 0 0;
}

.contact-fild-box .form-control {
    font-size: 14px;
    color: rgba(0, 0, 0, .9);
    border: 0;
    border-radius: 3px;
    background-color: #f5f5f5;
    margin: 0 auto;
    padding: 7px 15px;
    height: auto;
}

.form-group {
    margin-bottom: 6px
}

.btn_submit {
    background: #fff;
    color: #1c2e51;
    font-size: 20px;
    position: relative;
    border: 0;
    border-radius: 10px;
    padding: 10px 40px;
    margin-top: 10px;
    line-height: normal
}

.btn_submit:hover {
    background: #1c2e51;
    color: #fff
}

.contact-fild-box {
    margin-bottom: 10px;
    position: relative
}

.contact-fild-box.text-center {
    margin-bottom: 0
}

.dsu-intro {
    z-index: 1;
    right: 0;
    position: relative;
    top: 70px;
}

.dsu-addmission {
    margin-top: 15%;
    display: block;
    padding: 0;
}

.formIDfid {
    padding: 0;
}

.contact-fild-box .form-control option {
    color: #000
}


.unique__section span {
    background-color: #fff;
    position: relative;
    color: #1e2761;
    padding: 5px 2px;
    font-size: 18px;
    font-weight: 700;
}

.unique__section span:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 12px;
    margin: 0 auto;
    bottom: -12px;
    left: 47%;
    clip-path: polygon(0 0,46% 100%,100% 0)
}

.program__section .program__row_area .program-item .program__icon {
    background-color: #fff;
    border: 2px solid #801634;
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    line-height: 92px;
    border-radius: 100%
}

.program__section .program__row_area .program-item p {
    font-weight: 700;
    margin-top: 15px;
    font-size: 18px
}

.program__section .program__row_area .program-item:hover {
    background-color: #1c2e51
}

.program__section .program__row_area .program-item:hover p {
    color: #fff
}

.program__section .program__row_area .program-item {
    background-color: #fff;
    border: 2px solid #801634;
    border-radius: 15px;
    padding: 15px 25px;
    min-height: 180px
}

#highlights-slider.owl-carousel .owl-stage-outer {
    padding-top: 40px
}

#highlights-slider.owl-theme .owl-dots .owl-dot span {
    width: 18px;
    height: 18px;
    background-color: transparent;
    border: 1px solid #1c2e51
}

#highlights-slider.owl-theme .owl-dots .owl-dot.active span, #mentors-slider.owl-theme .owl-dots .owl-dot:hover span {
    background: #1c2e51
}

#highlights-slider.owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    color: #fff;
    background: #f16e21;
    padding: 0 15px;
    font-size: 50px;
    top: 40%;
    margin: 0;
    border-radius: 0;
    text-align: center
}

#highlights-slider.owl-theme .owl-nav .owl-prev {
    left: -100px
}

#highlights-slider.owl-theme .owl-nav .owl-next {
    right: -100px
}

.industry__section .industry-item .industry-thumb {
    overflow: hidden;
}

.industry__section .industry-item .industry-content p {
    color: #000;
    font-size: 18px;
    padding: 10px
}

.program__section .program__row_area #highlights-slider1 .program-item {
    margin-top: 50px;
    background-color: #fff;
}

.program__section .program__row_area #highlights-slider1 .program-item:hover {
    background-color: #801634;
}

.program__section .program__row_area #highlights-slider1 .program-item:hover p {
    color: #fff;
}

.industry__section .industry-item {
    background-color: #fff;
    padding: 10px;
    border-radius: 0;
    height: 319px;
    transition: all 1s;
}

.industry__section .industry-item:hover {
    background-color: #fff;
    padding: 10px;
    border-radius: 30px
}

.industry__section .industry-item:hover p {
    color: #1c2e51;
}

.program__section .program__row_area #highlights-slider1 .program-item p {
    color: #1a191a;
    .program__section .program__row_area #highlights-slider1 .program-item
    }

.recognitions__section .recognitions_item {
    border-radius: 18px;
    padding: 15px;
    border: solid 1px #bdbcbc;
}

.recognitions__section .recognitions_item p {
    font-weight: 700;
    font-size: 18px;
    margin-top: 8px
}

#recognitions-slider.owl-theme .owl-dots .owl-dot span {

    width: 15px;
    height: 15px;
    background-color: #5f5d5d;
    border: 1px solid #fff
}

#recognitions-slider2.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    border: 1px solid #fff
}


#recognitions-slider.owl-theme .owl-dots .owl-dot.active span, #recognitions-slider.owl-theme .owl-dots .owl-dot:hover span {
    background: #d81f31;
}

.benefits__section {
    background-color: #eee
}

.talent__section {
    background-image: url(../../images/Admissions.webp);
    background-size: 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center
}

.talent__section .talent__block .talent__flex {
    padding: 8px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    background-color: rgba(255,255,255,.8);
    display: flex;
    align-items: center
}

.talent__section .talent__block .talent__flex .talent__content h6 {
    text-transform: uppercase;
    color: #1c2e51;
    font-size: 18px;
    font-weight: 700
}

.talent__section .talent__block .talent__flex .talent__content p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600
}

.footer {
    width: 100%;
    display: table;
    padding: 20px 0;
    color: #fff;
    background-color: #001e82;
    font-size: 14px;
}

.desktop {
    display: block
}

.mobile {
    display: none
}

ul.listing li {
    font-size: 16px;
    line-height: 24px;
    position: relative;
    padding: 8px 0;
    padding-left: 35px
}

ul.listing li:last-child {
    border: 0
}

ul.listing li:after {
    color: #fff;
    text-align: center;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0;
    top: 10px;
    background-color: #1c2e51;
    content: "\f00c";
    font-family: 'Font Awesome 5 Pro'
}

.row {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0
}

.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
    /* height: 83px; */
}

.placement-highlights .row {
    row-gap: 50px;
}

.font9 {
    font-size: 38px;
}


.recruiters-section .row {
    row-gap: 27px;
}

@media only screen and (max-width: 786px) {
    .mobile-num-top {
        display: none!important;
        text-align: center !important;
        padding: 5px 0px;
        background: #eee;
    }

    .mobile-num-top i {
        display: none;
    }
}

/*****************Media Query ******************************/
@media only screen and (max-width: 1024px) {
    #hero.container-fluid, #hero.container-fluid .row {
        padding-left: 0;
        padding-right: 0;
        margin-right: 0;
        margin-left: 0
    }
}

@media only screen and (max-width: 980px) {
    .img-fluid {
        width: 32%;
    }

    .dsu-intro {
        position: relative;
        width: 100%;
        top: 0
    }

    .dsu-addmission {
        margin-top: 0
    }

    .join-section, .section2 {
        background-size: cover
    }

    .mx-5 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .w-75 {
        width: 100% !important
    }

    .dsu-form {
        margin: 15px auto 15px;
        float: none;
        padding: 20px 0
    }

    .recruiters:after {
        content: none;
    }


    .mobile {
        display: none !important;
    }

    .companies-section {
        background-size: cover
    }

    .sideNavi {
        position: fixed;
        width: 100%;
        bottom: 0;
        top: auto;
        right: auto;
        left: 0;
        z-index: 2;
        -moz-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }

    .unique__section span {
        display: block
    }

    .sideNavi .sideNavi-flex {
        display: flex
    }

    .sideNavi a {
        display: block;
        text-align: center;
        padding: 12px 2px;
        margin-bottom: 0
    }

    .sideNavi-item {
        width: 100%
    }

    .footer {
        height: 90px;
        font-size: 12px
    }

    .bc-img01 {
        height: auto;
        background-position: top left;
        padding: 65px 0;
        background-size: cover;
    }

    .dsu-addmission .bannerContent h1 {
        font-size: 24px
    }

    .dsu-addmission .bannerContent .admContent p {
        font-size: 22px
    }

    .dsu-addmission .bannerContent .admContent {
        margin-top: 7%
    }

    .logo {
        text-align: center
    }

    .dsu-addmission .bannerContent {
        width: 70%
    }

    .row {
        width: auto
    }

    .header .header-absolute {
        position: relative
    }

    .talent__section {
        background-size: cover
    }

    #highlights-slider.owl-theme .owl-nav [class*=owl-] {
        display: none
    }
}

@media only screen and (max-width: 736px) {
    .bc-img01 {
        padding: 65px 0;
    }

    .container {
        max-width: 100%
    }

    .join-section .joindvItem {
        width: 100%
    }

    #industry-slider.owl-theme .owl-nav [class*=owl-], #recognitions-slider.owl-theme .owl-nav [class*=owl-] {
        display: none
    }
}

@media only screen and (max-width: 667px) {
    .join-section .joindvItem .joinContent {
        padding: 30px 20px
    }

    .join-section .joindvItem .joinContent p {
        line-height: 16px;
        font-size: 14px;
        margin-top: 6px
    }

    .join-section .joindvItem:last-child {
        width: 100%
    }

    #recognitions-slider.owl-theme .owl-nav [class*=owl-] {
        position: relative;
        color: #fff;
        background: #000;
        padding: 0 15px
    }

    #recognitions-slider.owl-theme .owl-nav .owl-next {
        right: -5px
    }

    #recognitions-slider.owl-theme .owl-nav .owl-prev {
        left: -5px
    }

    .programs-section {
        text-align: center
    }

    .programs-section .text-justify {
        text-align: center !important
    }

    #client-slider.owl-theme .owl-nav [class*=owl-] {
        position: absolute;
        color: #fff;
        background: #000;
        padding: 3px 10px;
        font-size: 42px;
        top: 50%;
        margin: 0;
        border-radius: 0;
        text-align: center
    }

    #client-slider.owl-theme .owl-nav .owl-prev {
        left: -40px
    }

    #client-slider.owl-theme .owl-nav .owl-next {
        right: -40px
    }

    .client-relative {
        padding: 0 25px
    }

    .about-section .row {
        margin: 0 0
    }
}

@media only screen and (max-width: 568px) {
    .loader-inner, .px-5.advantagesBx, .section3 .px-5 {
        padding: 0 15px !important
    }

    h1, h2, h3, h4, h5, h6 {
        font-size: 26px
    }

    p {
        font-size: 14px
    }

    ul.listing li {
        font-size: 14px;
        line-height: 20px
    }

    .applyBox {
        margin-top: 28px;
    }

    .courseContent, .courseThumb {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%
    }

    .course-right, .courseContent {
        margin-top: 20px
    }

    .pattenabsolute {
        left: 82px
    }
}

@media only screen and (max-width: 480px) {
    .join-section .joindvItem .joinContent strong {
        font-weight: 900;
        line-height: 24px;
        font-size: 16px
    }

    .join-section .joindvItem .joinContent p {
        font-size: 12px
    }
}

@media only screen and (max-width: 414px) {
    .fsize24, h1, h2, h3, h4, h5, h6 {
        font-size: 20px
    }

    .placement-highlights {
        margin-top: 0px !important;
    }

    .font9 {
        font-size: 46px;
    }

    .join-section .joindvItem .joinContent strong {
        font-size: 13px
    }

    .dsu-addmission .bannerContent h1 {
        font-size: 14px
    }

    .placement-highlights .row {
        row-gap: 18px;
    }

    @media only screen and (max-width: 384px) {
        .dsu-form {
            width: 90%
        }

        .dsu-addmission .bannerContent .admContent p {
            font-size: 20px
        }

        .course-section .courseContent {
            -ms-flex: 0 0 100%;
            flex: 0 0 100%;
            max-width: 100%
        }
    }

    @media only screen and (max-width: 360px) {
        .sideNavi a {
            font-size: 12px
        }

        .fsize22 {
            font-size: 17px
        }
    }

    @media only screen and (max-width: 320px) {
        .footer {
            font-size: 10px
        }

        .frmBg h4, .fsize24, h1, h2, h3, h4, h5, h6 {
            font-size: 20px
        }

        .dsu-addmission .bannerContent h1 {
            font-size: 14px
        }
    }
 
@media (max-width:767px) {
	.logo img {
    max-height: 108px;
}	
	h2.lft {
    position: relative;
    right: 0;
    top: 6px;
    text-align: center;
}
	
 .carousel-caption {
        position: initial;
        z-index: 10;
        padding: 3rem 2rem;
        color: rgba(78, 77, 77, 0.856);
        text-align: center;
        font-size: 0.7rem;
        font-style: italic;
        font-weight: bold;
        line-height: 1.5rem
    }

.bannerContent h4 {
    color: #fff;
    margin-top: 15px;
    font-size: 18px !important; font-weight: bold;
    line-height: normal;
}
.bannerContent h1 span {
    font-size: 18px;
    line-height: normal;
    color: #ffc208;
    padding: 4px 0px;
}
	
.carousel-caption img {
    width: 6rem;
    border-radius: 5rem;
    margin-top: 2rem
}
	
.dsu-addmission .bannerContent {
    width: 100%;
}	
.img-fluid {
    width: 84%;
}	
.logo {
    position: relative;
    top: 0;
}	
.contact-fild-box .form-control {
    width: 90%;
}	
 .carousel-caption img {
        width: 4rem;
        border-radius: 4rem;
        margin-top: 1rem
    }
}

#image-caption {
    font-style: normal;
    font-size: 1rem;
    margin-top: 0.5rem
}
#image-caption {
        font-style: normal;
        font-size: 0.6rem;
        margin-top: 0.5rem
    }

	
.bx-s {
    width: 100%;
    height: auto;

}	
    i {
        padding: 0.8rem
    }
.three-bx1 {
    width: 100%;
    height: auto;

}	
.dsu-addmission .bannerContent h1 {
    font-size: 20px;
    line-height: normal;
}
.ab {
    padding: 3px 4px;
}	
.ab p {
    text-align: left;}
.tx ul {
    padding: 13px 6px;
}	
.bc-img01 {
    padding: 80px 0;
}
	
	.dsu-addmission {
    margin-top: 0;
    position: relative;
    top: 39%;
}
	
	img.img-responsive {
    width: 100%; border-radius: 0;
    margin-bottom: 10px;
}
.why-cl {
    text-align: left;
    height: auto;
    padding: 6px 19px;
    border-radius: 0;
}
.why-cl1 {
    text-align: left;
    height: auto;
    padding: 28px 25px;
}

.three-bx {
    width: 100%; height: auto;

}
.tx h2 {
    font-size: 17px;
    display: block;

}
.dsu-form {
    width: 93%;
}
.bannerContent h5 {
    padding: 5px;
    margin-top: 10px;
    font-size: 14px;
}	
.carousel-indicators {
    bottom: -36px;
}	

.bx-s {
    height: auto;
    margin-bottom: 0px;

}
.row.lst {
    padding: 0 20px;
}	
 .dsu-addmission {
    top: -14px;
  }	
.bannerContent p {
  color: #b5e2cb;
  font-size: 27px;
}	
.bannerContent h2 {
  color: #ffffff;
  font-size: 16px;
}
.bannerContent h1 span {
      font-size: 22px;
    }	
.bannerContent h5 {
    margin-top: 0;
  }
 .dsu-intro {
    top: -47px;
  }	
.xcv {
  background-color: #212121;
  box-shadow: 0 0.8rem 1.6rem 0 rgba(18, 18, 18, 0.16);
  margin: 0 auto;
    margin-top: 0px;
  border-radius: 0.8rem;
  max-width: 123.2rem;
  height: auto;
  backdrop-filter: blur(0.4rem);
  margin-top: 0;
}
	
.bz1 {
  border-right: none;
  border-bottom: solid 1px #3e3e3e;
}
.bc-img01 {background-position: center;
    padding: 12px 0;
  }	
.fiv-one2 {
  display: block;
}	
.three-bx2 {
    width: 80%;
    height: auto;
    display: block;
    margin: 8px auto;
}	
.vb {
  box-shadow: 0px 0px 12px -3px rgb(0 0 0 / 35%);
  height: auto;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.widget-title h3 {
  font-size: 20px;
}	
	
.mb-4, .my-4 {
  margin-bottom: 0 !important;
}
	
.tab {
  width: 100%;
  height: auto;	
}
.tabcontent {
  width: 100%;
  min-height: 382px;
}	
.three-bx3 {
  width: 100%;
  height: auto !important;
}	
	
.bz1 h5 {
  font-size: 16px;
}
	
i {
    display: none;
  }	
	
.bz1 {
  font-size: 15px;
}
 .logo img {
      width: 175px;
    }	
 .bz1 {
    text-align: center;
  }	
.bannerContent h1 {
  width: 100%;
}	
.bannerContent h2 {
  width: 100%;
}
.bz1 {
  height: auto;
}
	
.mob {display: block;}
.desk {display: none;}	
.mob {
  margin: 14px 0px;
}
.abt {
  height: auto;
}	
.fiv-one14 {
  display: block;
}
.three-bx14 {
  height: auto;;
  width: 100%;
}

.partnerband img {
  width: 100% !important;
}
.bz1 h5 {
  color: #fff;
}
.three-bx5 {
  width: 100%;
  height: auto;
}	
.three-bx2 h2 {
  font-size: 28px !important;
}	
.tabs {
  display: block;
}

.tabs button {
    width: 100%;
  }
	
.bannerContent p {
  margin-bottom: 0;
}
	
.col-lg-8.leftsec_content {
  margin-top: 0 !important;
}
.form-card {
  margin-top: 8px !important;
  width: 100% !important;
}	
.card-1 {
  text-align: center !important;
}
.container6 {
  display: block !important;
}
.info-box {
  width: 100% !important;
  margin-bottom: 10px !important;
}	
	
.logo-row {
  display: inline-block !important;
}
	
	
	
}	