/*
Theme : Radar Vector style css
Version : 1.0
Developer : DVK
*/
@font-face {
    font-family: "segoeui";
    src: url("./font/segoeui.ttf");
    src: url("./font/segoeui.ttf") format("ttf"),
    url("./font/segoeui.ttf") format("ttf"),
    url("./font/segoeui.ttf") format("ttf");
    display:swap;
}
:root {
    --montserrat : 'Montserrat', sans-serif; /* Default Theme Font */
    --poppins: 'Poppins', sans-serif;
    --segoeUI: 'segoeui', sans-serif;
    --theme-green: #39b24a;
    --theme-light-gray:#d5d5d5;
    --theme-gray: #585858;
    --theme-dark-gray:#404040;
    --theme-white:#fff;
    --theme-red:#dc4c64;
}
body, html{
    margin:0;
    font-family: var(--montserrat);
    font-size: 0.975rem;
}
body::-webkit-scrollbar {
  width: 10px
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.103);
  -webkit-border-radius: 5px;
  border-radius: 5px
}

body::-webkit-scrollbar-thumb {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: var(--theme-green);
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.103)
}

body::-webkit-scrollbar-thumb:window-inactive {
  background: var(--theme-green);
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary{
    display:block;
}
a:active,
a:hover {
    outline: 0;
}
.grid-shadow{
  box-shadow: 0 2px 15px -3px rgba(0,0,0,0.07),0 10px 20px -2px rgba(0,0,0,0.04);
}
a{
    text-decoration:none;
}
h1, h2, h3, h4, h5, h6{
    margin:0;
}
.h2{
  font-family: var(--segoeUI);
  font-weight: 600;
}
p{
    margin: 0;
}
.fs-sm{
    font-size:0.75rem
}
.fs-md{
    font-size: 0.875rem;
}
.fs-lg{
    font-size: 1rem;
}
.fs-xl{
    font-size: 1.5rem;
}
.txt-green{
    color: var(--theme-green)!important;
}
.theme-font{
  font-size: 0.975rem;
}
.txt-lightgray{
  color: var(--theme-light-gray)!important;
}
.txt-gray{
  color: var(--theme-gray)!important;
}
.noFocus:focus{
    box-shadow: none;
}
img{
    max-width: 100%;
}
/* background-color */
.bggreen{
    background-color: var(--theme-green);
}
.bggray{
    background-color: var(--theme-gray);
}
.bglightgray{
    background-color: var(--theme-light-gray);
}
.bgdarkgray{
    background-color: var(--theme-dark-gray);
}
.bgred{
  background-color: var(--theme-red);
}
/* border-color */
.brd-green{
    border-color: var(--theme-green)!important;
}
.brd-gray{
    border-color: var(--theme-gray)!important;
}
/* .brd-green{
    border-color: var(--theme-green)!important;
} */

.match-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
}
.match-height > [class*='col-'] {
	 display: flex;
	 flex-direction: column;
}

/* header start */
.logo{
  max-width: 130px;
  width:100%;
}
.main-menu ul li{
    position:relative;
    margin: 0 15px;
    text-transform: uppercase;
    font-weight:600;
    font-family: var(--montserrat);
    font-size: 0.775rem;
}
.main-menu ul li a{
    color: var(--theme-green);
    transition:0.4s ease-in-out;
    padding: 14px 0;
}
.main-menu ul li a.active{
    color: var(--theme-gray);
}
.main-menu ul li a:hover{
    color: var(--theme-gray);
}
.main-menu ul li.drop{
    padding: 0 18px 0 0;
}
.main-menu ul li.drop::after{
    content: "\e9fe";
    position:absolute;
    right:0px;
    font-size: 1rem;
    font-weight: bold;
    color: var(--theme-green);
    transition:0.4s ease-in-out;
    font-family: "Phosphor" !important;
    speak: never;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.main-menu ul li.drop:hover::after{
    transform: rotate(180deg);
    color: var(--theme-gray);
}
.main-menu ul li ul.submenu{
    width:280px;
    display: none;
    position:absolute;
    background-color:var(--theme-white);
    box-shadow:1px 1px 5px #dddddd;
    top:25px;
    transition:0.4s ease-in-out;
    margin: 0;
    padding: 0;
    z-index: 9;
}
.main-menu ul li:hover ul.submenu{
    display: block;
    perspective: 1000px;
    list-style: none;
}
.main-menu ul li ul.submenu > li{
    border-bottom: 1px solid #e9e9e9;
    margin: 0;
    padding: 0 0;
    list-style: none;
}
.main-menu ul li ul.submenu > li:last-child{
    border-bottom: none;
}

.main-menu ul li ul.submenu > li a{
    list-style: none;
    text-transform: uppercase;
    padding: 10px 10px;
    transition: 0.4s ease-in-out;
    display: block;
}
.main-menu ul li ul.submenu > li a:hover{
    color: var(--theme-gray);
}

  .main-menu li:hover > ul.submenu li {
    opacity: 0;
    transform-origin: top center;
  }
  .main-menu li:hover > ul.submenu li:nth-child(1) {
    animation-name: drp;
    animation-duration: 300ms;
    animation-delay: -170ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
  }
  .main-menu li:hover > ul.submenu li:nth-child(2) {
    animation-name: drp;
    animation-duration: 300ms;
    animation-delay: -40ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
  }
  .main-menu li:hover > ul.submenu li:nth-child(3) {
    animation-name: drp;
    animation-duration: 300ms;
    animation-delay: 90ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
  }
  .main-menu li:hover > ul.submenu li:nth-child(4) {
    animation-name: drp;
    animation-duration: 300ms;
    animation-delay: 220ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
  }
  .main-menu li:hover > ul.submenu li:nth-child(5) {
    animation-name: drp;
    animation-duration: 300ms;
    animation-delay: 350ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
  }
  .main-menu li:hover > ul.submenu li:nth-child(6) {
    animation-name: drp;
    animation-duration: 300ms;
    animation-delay: 480ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
  }

@keyframes drp {
    0% {
      opacity: 0;
      transform: rotateX(-90deg);
    }
    100% {
      opacity: 1;
      transform: rotateX(0deg);
    }
  }

  input.autowidth{
    width: 109px;
    border-radius: 20px;
    border: 1px solid rgb(221, 221, 221);
    transition: 0.4s ease-in-out;
    outline: none;
    height: 30px;
}
.auto{
    position:relative;
}
.auto::after{
    position:absolute;
    content: "\ebdd";;
    font-family: "Phosphor" !important;
    right:8px;
    top:3px;
    color: var(--theme-green);
    font-size: 1.5rem;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

  /* home page */
  .homebanner{
    width: 100%;
    position:relative;
  }
  .homebanner img{
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: fill;
  }
  .overlay{
    width:100%;
    position: absolute;
    top: 60%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
  }
  .overlay .h3{
    text-transform: uppercase;
    color: var(--theme-white);
    font-weight: bold;
    font-family: var(--poppins);
    font-size: 3.2rem;
    text-shadow: 2px 2px 15px #383838, -2px -2px 15px #232222;
  }
  .btn.bggreen:hover{
    background-color: var(--theme-green);
  }
  section.wrap{
    overflow: hidden;

  }
  .contentWrap{
    padding:50px 0;
}
.contentWrap h4{
  font-size:3rem;
  color: var(--theme-white);
  font-family: var(--segoeUI);
  font-weight:500;
}
.contentWrap P{
  font-size: 1rem;
  color: var(--theme-white);
  font-family: var(--segoeUI);
  font-weight:300;
}
.leftLine, .rightLine{
    width: 580px;
}
.leftLine {
  left: -501px;
  transform: rotate(-236deg);
  top: -67px;
}
.rightLine {
  z-index: 0;
  right: -80px;
  max-width: 400px;
  top: 30%;
}
.leftLine img{
    max-width: 100%;
}
.rightLine img{
  max-width: 400px;
}
.artical-img{
    z-index:1;
    position: relative;
}

.contentWrap ul{
  list-style:disc;
  margin: 0;
  padding: 0;
}

.contentWrap ul li{
  font-size:1rem;
  font-weight: normal;
 color:var(--theme-white);
 font-family: var(--segoeUI);
 margin-bottom: 1rem;
}

.arrows-V {
  position: absolute;
  top: 0px;
  right: 46px;
  height: 150px;
  z-index: 9;
}
.arrows-V img{
  max-height:100%;
}
.arrows-H {
  position: absolute;
  bottom: 10px;
  max-width: 150px;
  left: 114px;
}

/* airlaw page */
.airlaw .carousel-indicators{
  bottom: -45px;
}
.airlaw .carousel-control-prev-icon, .airlaw .carousel-control-next-icon{
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  color: var(--theme-white);
  background-color: var(--theme-green);
  background-image: none;
  padding: 6px;
}
.airlaw .carousel-control-next, .airlaw .carousel-control-prev{
  opacity: 1;
  width: 0%;
  top: 18%;
}
.airlaw-cnt {
  max-width: 1024px;
  margin: 0 auto;
}
.rulesAir{
  font-family: var(--segoeUI);
}
.airlaw .carousel-indicators [data-bs-target]{
  border: 1px solid var(--theme-green)!important;
  width: 25px;
  height: 3px;
  border-radius: 6px;
  background-color: transparent;
  margin-right: 8px;
  margin-left: 8px;
}
.airlaw .carousel-indicators .active{
  background-color: var(--theme-green);
}


/* computer Number */
.cmp .inner-container{
  background-color: var(--theme-gray);
  border-radius: 40px;
}
.cmp .computerNum p{
  font-family: var(--segoeUI);
  font-size: 0.975rem;
}
/* student dashbarod */

.studentDashbaord .inner-container{
  background-color: var(--theme-green);
  border-radius: 40px;
}
.studentDashbaord ul.icons{
  list-style:none;
  padding: 0;
  margin: 0;
}
.studentDashbaord ul.icons li{
  display:inline-block;
  margin:0 4rem 0 0;
}
.studentDashbaord ul.icons li a{
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #4db75c;
  display: block;
  text-align: center;
  color: var(--theme-gray);
  transition: 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.studentDashbaord ul.icons li a:hover{
  background-color: var(--theme-gray);
  color: var(--theme-white);

}
.nobgTooltip {
  --bs-tooltip-bg:transparent;
  --bs-tooltip-color: var(--bs-white);
}
.actions a.btn:hover{
  background-color: var(--theme-green)!important;
}
#loader{
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #ffffff5e;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  z-index: 999;
}
#loader .image-holder{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 10px;
}
#loader .image-holder img{
  box-shadow: 0 0 0.875rem 0 rgb(255 255 255 / 54%);
  border-radius: 50%;
  border: 1px solid #347e3e;
}
#loader .image-holder:before{
  position: absolute;
  content: "";
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  -webkit-animation: pulse 1s ease-out;
  animation: pulse 1.8s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes pulse {
  0% {
      -webkit-transform: scale(0);
      opacity: 0;
  }
  25% {
      -webkit-transform: scale(0.3);
      opacity: 1;
  }
  50% {
      -webkit-transform: scale(0.6);
      opacity: .6;
  }
  75% {
      -webkit-transform: scale(0.9);
      opacity: .3;
  }
  100% {
      -webkit-transform: scale(1);
      opacity: 0;
  }
}

@keyframes pulse {
  0% {
      transform: scale(0);
      opacity: 0;
  }
  25% {
      transform: scale(0.3);
      opacity: 1;
  }
  50% {
      transform: scale(0.6);
      opacity: .6;
  }
  75% {
      transform: scale(0.9);
      opacity: .3;
  }
  100% {
      transform: scale(1);
      opacity: 0;
  }
}
.fixHeader{
    position: fixed;
    background-color: #fff;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 5px 16px rgb(57 178 74 / 46%);
    border-bottom: 1px solid #39b24a4f;
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease-out;
}
#header{
  padding: 8px 0;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
#scroll {
  position: fixed;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #39b24a;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  box-shadow: 0 0 0.875rem 0 rgb(33 37 41 / 50%);
  z-index: 99;
}
#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #fff;
}
section.wrap.round-edge{
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

/* enrollment css */

.profile-img {
  height: 100px;
  width: 100px;
  border-radius: 5px;
  border: 1px solid var(--theme-green)
}

.profile-img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.proLabel {
  padding: 8px 10px;
  border-radius: 0.3rem;
  cursor: pointer;
  font-size: 0.75rem;
}
label.proLabel.bggreen {
  box-shadow: 0 8px 9px -4px rgba(57, 178, 74, 0.529), 0 4px 18px 0 rgba(57, 178, 73, 0.504);
}
.btn.bgred{
 box-shadow: 0 8px 9px -4px rgba(220,76,100,0.3), 0 4px 18px 0 rgba(220,76,100,0.2);
}
.btn.bgred:hover{
  background-color: var(--theme-red);
}
.formPolicy{
  font-size: 12px;
}
.formPolicy li{
  margin-bottom: 5px;
}
.gj-datepicker-bootstrap button[role=right-icon] .gj-icon, 
.gj-datepicker-bootstrap button[role=right-icon] .material-icons{
  font-size: 18px!important;
  top: .45rem!important;
  left: .55rem!important;
}
.gj-datepicker button.btn{
  background-color: #347e3e;
  color:#fff;
}
.gj-datepicker button.btn:hover{
  background-color: #347e3e;
  color:#fff;
}
.form-check-input:checked {
  background-color: #39b24a;
  border-color: #39b24a;
}
.form-control:focus{
  border-color: #39b24a;
}
.enrollmentForm_heading{
    color: #ffffff!important;
    background-color: #39b24a;
    padding: 3px 10px;
    font-size: 14px;
    border-radius: 12px;
}
.form-label {
  margin-bottom: .2rem;
  font-size: 0.875rem;
}
.serviceCard{
  width: 19%;
  padding: 25px 15px;
}
.serviceCard .imageCard{
  background-color: #fff;
  padding: 0 8px;
  border-radius: 50%;
  width: 155px;
  height: 155px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.serviceCard .imageCard .imgBlock{
    background-color: #ffffff;
    border: 5px solid #585858;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    padding: 20px;
    position: relative;
}
.serviceCard .imageCard .imgBlock:before{
    content: attr(data-service);
    position: absolute;
    top: -22px;
    background-color: #39b24a;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
.serviceCard .serviceApplybtn a{
  background-color: transparent;
  color: #39b24a;
  border-color: #39b24a;
}
.serviceCard .serviceApplybtn a{
  background-color: transparent;
  color: #39b24a;
  border-color: #39b24a;
}
.serviceCard:hover{
  box-shadow: 0 0 0.875rem 0 rgb(33 37 41 / 42%);
  padding: 25px 15px;
  border-radius: 18px;
}
.serviceCard:hover .imageCard .imgBlock{
  background-color: #39b24a;
  border-color: #39b24a;
}
.serviceCard:hover .imageCard .imgBlock:before{
  background-color:#fff ;
  color: #39b24a;
}
.serviceCard:hover .serviceApplybtn a{
  background-color: #39b24a;
  color: #fff;
}
.service-container{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    padding-bottom: 120px;
}
.serviceCaption{
    width: 295px;
    position: absolute;
    bottom: -186px;
    padding: 10px;
}
.text-justify{
  text-align: justify;
}
.highlight{
  letter-spacing: 0.9px;
}
.highlight span{
  text-shadow: 2px 2px 15px #38383847, -2px -2px 15px #23222266;
}
.brandVideo{
  width: 100%;
  max-height: max-content;
}
video.brandVideo::-webkit-media-controls-fullscreen-button {
  display: none;
}
.fs-875{
  font-size: 0.875rem;
}
.accordion-button:not(.collapsed){
    color: var(--theme-white);
    background-color: var(--theme-green);
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--theme-green);
}
.accordion-button{
  padding: 10px 10px;
  font-weight: 500;
}
.accordion-button:focus{
  box-shadow: none;
}
.accordion-item {
  color: #ffffff;
  background-color: #585858;
  border: var(--bs-accordion-border-width) solid #39b24a;
}
.navbar-toggler{
    background-color: transparent;
    color: #39b24a;
    border: 0;
    border-radius: 3px;
    padding: 0;
    font-size: 35px;
    font-weight: 700;
}
.navbar-toggler:focus{
  box-shadow:none;
}
p{
  text-align: justify;
}