@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
.top_nav{
	padding:20px;
	padding-bottom: 0;
	background: rgb(2,0,36);
	background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
}
p{
    font-family: 'Poppins', sans-serif;
}
.top_nav p,.top_nav p a, .top_nav marquee{
	color: #fff;
	font-family: 'Poppins', sans-serif;
	text-decoration: none;
}
.top_nav .social i{
	padding: 0 15px;

}
.top_nav marquee{
	color:#fa0a0a;
	font-weight: 700;
}


/*---------------------- navbar style ----------------------*/
.navbar{
	background-color: #001055;
}
.navbar .nav-item{
	margin: 0 10px;
}
.navbar .nav-item .nav-link{
	font-family: 'Poppins', sans-serif;
	color: #fff !important;
	font-weight: 600;
	background-color:#08a0cf;
	border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	width: 120px;
	text-align: center;
	transition: 0.8s ease all;
	font-size: 18px;
}

.navbar .nav-item .nav-link:hover{
	background-color: #fff;
	color:#08a0cf!important;
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.addmission_btn {
    animation: blink 1s infinite;
}
.addmission_btn:hover{
    color:#fff;
}

/*------------------------------- our proud style----------------*/


.ourworks-box{
	width: 60%;
	justify-content: center;
	text-align: center;
}

.our-works-head{
	font-size: 25px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	color: #08a0cf;
	text-transform: uppercase;
}
.Proud img{
	height: 220px;
	width: 100px;
	/*border-radius: 50%;*/
	border-radius: 10% 30% 50% 70%;
	box-shadow: rgba(0, 16, 85, 0.35) 0px 5px 15px;
}

.proud_name,.designation{
	font-family: 'Poppins', sans-serif;
}
.proud_name{
	font-weight: 700;
	margin-top: 10px;
    font-size: 18px;
}


.introduce{
	height: 250px;
	background-color:white;
	box-shadow: 0 3px 10px #5969f642;
	border-bottom: 4px solid #5969f6;
	color: black;
}

.introduce:hover{
	box-shadow: 0 3px 15px #5969f666;
	border-bottom: 4px solid #B122e5;
	color: black;
	text-decoration: none;
}
.flex-column-1{
	height: 70%;
	width: 100%;

}
.flex-column-2{
	height: 30%;
	width: 100%;
	align-items:center;
}

.carousel-indicators .active{
	background-color: #08a0cf;
}
.carousel-indicators li{
	background-color: #c8e5ff;
}
.carousel-indicators{
	bottom: -50px;
}

/*======================== about us ====================*/
.about_us p{
	font-family: 'Poppins', sans-serif;
}
.cloud {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 100px 100px 100px 0;
  background-color: #000;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}

.cloud::before, .cloud::after {
  content: "";
  position: absolute;
  background-color: #000;
  border-radius: 100%;
}

.cloud::before {
  width: 50px;
  height: 50px;
  top: -25px;
  left: 10px;
}

.cloud::after {
  width: 80px;
  height: 80px;
  top: -40px;
  right: 10px;
}


.about_us .read_more{
	border-radius: 50px;
	background: #001055;
	box-shadow:  20px 20px 60px #000e48,
	-20px -20px 60px #001262;
	color: #fff
}
.about_us button {
  border-radius: .25rem;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
  padding-left: 25px;
  padding-right: 25px;
  color: #fff;
  -webkit-clip-path: polygon(0 0,0 0,100% 0,100% 0,100% calc(100% - 15px),calc(100% - 15px) 100%,15px 100%,0 100%);
  clip-path: polygon(0 0,0 0,100% 0,100% 0,100% calc(100% - 15px),calc(100% - 15px) 100%,15px 100%,0 100%);
  height: 40px;
  font-size: 0.7rem;
  line-height: 14px;
  letter-spacing: 1.2px;
  transition: .2s .1s;
  background-image: linear-gradient(90deg,#1c1c1c,#6220fb);
  border: 0 solid;
  overflow: hidden;
}

.about_us button:hover {
  cursor: pointer;
  transition: all .3s ease-in;
  padding-right: 30px;
  padding-left: 30px;
}

/*============================ our  courses =========================*/

.our_courses .card_div{
	display: flex;
	justify-content: center;
	place-item:center;
	margin-bottom: 15px;
}

.our_courses .card {
  width: 300px;
  height: 254px;
  background: #07182E;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
}

.our_courses .card h2 {
  z-index: 1;
  color: #fff;
  font-size: 2em;
  font-family: 'Poppins', sans-serif;
}
.our_courses .card p{
	z-index: 1;
	color: #fff;
	font-family: 'Poppins', sans-serif;
}

.our_courses .card::before {
  content: '';
  position: absolute;
  width: 100px;
  background-image: linear-gradient(180deg, rgb(0, 183, 255), rgb(255, 48, 255));
  height: 150%;
  animation: border_animate 4s linear infinite;
  transition: all 0.3s linear;
}

@keyframes border_animate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.our_courses .card::after {
  content: '';
  position: absolute;
  background: #07182E;
  ;
  inset: 5px;
  border-radius: 15px;
} 



.our_courses button {
 position: relative;
 padding: 0.5em 1.8em;
 outline: none;
 border: 1px solid #303030;
 background: #2e525e;
 color: #fff;
 text-transform: uppercase;
 letter-spacing: 2px;
 font-size: 15px;
 overflow: hidden;
 transition: 0.2s;
 border-radius: 20px;
 cursor: pointer;
 font-weight: bold;
 z-index: 1;
}

.our_courses button:hover {
 box-shadow: 0 0 10px #00d5ff, 0 0 25px #001eff, 0 0 50px #00d5ff;
 transition-delay: 0.6s;
}

.our_courses button span {
 position: absolute;
}

.our_courses button span:nth-child(1) {
 top: 0;
 left: -100%;
 width: 100%;
 height: 2px;
 background: linear-gradient(90deg, transparent, #00d5ff);
}

.our_courses button:hover span:nth-child(1) {
 left: 100%;
 transition: 0.7s;
}

.our_courses button span:nth-child(3) {
 bottom: 0;
 right: -100%;
 width: 100%;
 height: 2px;
 background: linear-gradient(90deg, transparent, #001eff);
}

.our_courses button:hover span:nth-child(3) {
 right: 100%;
 transition: 0.7s;
 transition-delay: 0.35s;
}

.our_courses button span:nth-child(2) {
 top: -100%;
 right: 0;
 width: 2px;
 height: 100%;
 background: linear-gradient(180deg, transparent, #00d5ff);
}

.our_courses button:hover span:nth-child(2) {
 top: 100%;
 transition: 0.7s;
 transition-delay: 0.17s;
}

.our_courses button span:nth-child(4) {
 bottom: -100%;
 left: 0;
 width: 2px;
 height: 100%;
 background: linear-gradient(360deg, transparent, #001eff);
}

.our_courses button:hover span:nth-child(4) {
 bottom: 100%;
 transition: 0.7s;
 transition-delay: 0.52s;
}

.our_courses button:active {
 background: #ae00af;
 background: linear-gradient(to top right, #ae00af, #001eff);
 color: #bfbfbf;
 box-shadow: 0 0 8px #00d5ff, 0 0 8px #001eff, 0 0 8px #00d5ff;
 transition: 0.1s;
}

.our_courses button:active span:nth-child(1) 
span:nth-child(2) 
span:nth-child(2) 
span:nth-child(2) {
 transition: none;
 transition-delay: none;
}


/*======================= footer style =========================*/

.pg-footer a {
  color: #fff;
  text-decoration: none;
}
.pg-footer {
  font-family: 'Roboto', sans-serif;
}

.footer {
    color: #fff;
    background: rgb(2,0,36);
    background: linear-gradient(150deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
}
.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    position: relative;
    top: -1px;
    width: 100%;
}
.footer-wave-path {
    fill: #fffff2;
}

.footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 450px;
    position: relative;
}

.footer-content-column {
    box-sizing: border-box;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    color: #fff;
}

.footer-content-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-logo-link {
    display: inline-block;
}
.footer-menu {
    margin-top: 30px;
}

.footer-menu-name {
    color: #fffff2;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.footer-menu-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 10px;
    padding-left: 0;
}
.footer-menu-list li {
    margin-top: 5px;
}

.footer-call-to-action-description {
    color: #fffff2;
    margin-top: 10px;
    margin-bottom: 20px;
}
.footer-call-to-action-button:hover {
    background-color: #fffff2;
    color: #00bef0;
}
.button:last-of-type {
    margin-right: 0;
}
.footer-call-to-action-button {
    background-color: #027b9a;
    border-radius: 21px;
    color: #fffff2;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s;
    cursor: pointer;
    position: relative;
}
.footer-call-to-action {
    margin-top: 30px;
}
.footer-call-to-action-title {
    color: #fffff2;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.footer-call-to-action-link-wrapper {
    margin-bottom: 0;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
}
.footer-call-to-action-link-wrapper a {
    color: #fff;
    text-decoration: none;
}

.footer-social-links {
    bottom: 0;
    height: 54px;
    position: absolute;
    right: 0;
    width: 236px;
}

.footer-social-amoeba-svg {
    height: 54px;
    left: 0;
    display: block;
    position: absolute;
    top: 0;
    width: 236px;
}

.footer-social-amoeba-path {
    fill: #027b9a;
}

.footer-social-link.linkedin {
    height: 26px;
    left: 3px;
    top: 11px;
    width: 45px;
}

.footer-social-link {
    display: block;
    padding: 10px;
    position: absolute;
}

.hidden-link-text {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    top: 50%;
}

.footer-social-icon-svg {
    display: block;
}

.footer-social-icon-path {
    fill: #fffff2;
    transition: fill .2s;
}

.footer-social-link.twitter {
    height: 28px;
    left: 62px;
    top: 3px;
    width: 47px;
}

.footer-social-link.facebook {
    height: 24px;
    left: 123px;
    top: 12px;
    width: 48px;
}

.footer-social-link.instagram {
    height: 34px;
    left: 172px;
    top: 7px;
    width: 60px;
}

.footer-copyright {
    background-color: #027b9a;
    color: #fff;
    padding: 15px 30px;
  text-align: center;
}

.footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.footer-copyright-text {
  color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright-link {
    color: #fff;
    text-decoration: none;
}


/* Media Query For different screens */
@media (min-width:320px) and (max-width:479px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 990px;
    position: relative;
  }
}
@media (min-width:480px) and (max-width:599px)  { /* smartphones, Android phones, landscape iPhone */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}
@media (min-width:600px) and (max-width: 800px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1000px;
    position: relative;
  }
}


@media (min-width: 760px) {
  .footer-content {
      margin-left: auto;
      margin-right: auto;
      max-width: 1230px;
      padding: 40px 15px 300px;
      position: relative;
  }

  .footer-wave-svg {
      height: 50px;
  }

  .footer-content-column {
      width: 24.99%;
  }
}

/*=========================== about page style ===========================*/
.about_page img{
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.md_message{
    line-height: 35px;
}
.notice p a{
    color: #0617cf;
}
.notice form label, .notice form input::placeholder, .notice form textarea::placeholder, .notice form input{
  font-family: 'Poppins', sans-serif;
}

/*======================= notice page style ===============*/
.notice_page table, .notice_page th{
    border: 1px solid #16a1c7;
    padding: 10px;
}
/*=================== courses page ===============*/
.course_page table, .course_page th, .course_page td{
    border: 1px solid #16a1c7;
    padding: 10px;
}
.course_page td:nth-child(1), .course_page td:nth-child(5){
  text-align: center;
}


/*================= contact page ===============================*/
.contact_page form label, .contact_page form input::placeholder, .contact_page form textarea::placeholder, .contact_page form input{
  font-family: 'Poppins', sans-serif;
}

/*============================== mobile responsive ==============================*/

@media only screen and (max-width: 600px) {

	.top_nav p,.top_nav p a{
		font-size: 10px;
	}
	.top_nav .social i{
		padding: 0 8px;

	}
	.navbar .nav-item .nav-link{
		width: 100%;
		margin: 10px 0;
	}

	/*============ our proud==============*/
	.our-works-head{
		font-size: 16px;
	}
	.left_arrow{
		left: -6%!important;
	}
	.right_arrow{
		right:-6%!important;
	}
    .notice .img{
        display: none;
    }
    .notice p a{
        font-size:12px;
    }
    .notice_page table, .notice_page th{
        font-size: 10px;
    }
    .Proud img{
        height: 200px!important;
        width: 200px!important;
        align-items: center!important;
    }
    /*============== courses page ======================*/

    .course_page table  {
      margin-right: 10px!important;
    }
    .course_page table, .course_page th,.course_page td{
        font-size: 10px;
    }
}