body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #707070;
}
* { 
    margin: 0; 
    padding: 0; 
    border: 0; 
}

.container {
    max-width: 90%;
}
.container-fluid {
    padding: 0px;
}
.img-100{
    max-width:100%;
  }
  .img-90{
    max-width:90%;
  }
  .img-85{
    max-width:85%;
  }
  .img-80{
    max-width:80%;
  }
  .img-75{
    max-width:75%;
  }
  .img-70{
    max-width:70%;
  }
  .img-65{
    max-width:65%;
  }
  .img-60{
    max-width:60%;
  }
  .img-50{
    max-width:50%;
  }
  .img-40{
    max-width:40%;
  }
  .img-30{
    max-width:30%;
  }
  .img-20{
    max-width:20%;
  }
  .img-15{
    max-width:15%;
  }
  .img-10{
    max-width:10%;
  }

  h1 {
      font-size: 2.8;
  }
  h2 {
    font-size: 2.2;
}
h3 {
    font-size: 1.9;
}
h4 {
    font-size: 1.88;
}
h5 {
    font-size: 1.25;
}
header {
    background: #EBF8FF;
    height: 100px;
    box-shadow: 0px 6px 5px 0px rgba(0,0,0,0.26);
    -webkit-box-shadow: 0px 6px 5px 0px rgba(0,0,0,0.26);
    -moz-box-shadow: 0px 6px 5px 0px rgba(0,0,0,0.26);
}


#header .header-transparent {
  background: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: position 10s;
  -ms-transition: position 10s;
  -o-transition: position 10s;
  transition: all 0.5s ease;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  animation: smoothScroll 1s forwards;
  z-index: 9;
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0px);
	}
}
.error{
  color:red;
  font-size:13px;
}
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  .nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
  }
  
  .nav-menu a {
    display: block;
    /* position: relative; */
    color: #333333;
    padding: 10px 15px;
    transition: 0.3s;
    font-size: 18px;
    font-weight: 700;
  }
  
  .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #333333;
    text-decoration: none;
  }
  
  .nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% - 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
  }
  
  .nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
  }
  
  .nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #1c3745;
  }
  
  .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #68A4C4;
  }
  
  .nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
  }
  
  .nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
  }
  
  .nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
  }
  
  .nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
  }
  
  .nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
  }
  
  @media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
      left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
      left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
      content: "\ea9d";
    }
  }
  
  /* Mobile Navigation */
  .mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: #1e4356;
    transition: 0.4s;
  }
  
  .mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .mobile-nav a {
    display: block;
    position: relative;
    color: #ddecf5;
    padding: 10px 20px;
    font-weight: 500;
  }
  
  .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #a2cce3;
    text-decoration: none;
  }
  
  .mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
  }
  
  .mobile-nav .active.drop-down > a:after {
    content: "\eaa0";
  }
  
  .mobile-nav .drop-down > a {
    padding-right: 35px;
  }
  
  .mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
  }
  
  .mobile-nav .drop-down li {
    padding-left: 20px;
  }
  
  .mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 24px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 45px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
  }
  
  .mobile-nav-toggle i {
    color: #0075BB;
  }
  
  .mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(30, 67, 86, 0.9);
    overflow: hidden;
    display: none;
  }
  
  .mobile-nav-active {
    overflow: hidden;
  }
  
  .mobile-nav-active .mobile-nav {
    left: 0;
  }
  
  .mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
  }

header .btn-register {
    background: #3B82F6;
    width: 140px;
    line-height: 25px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}


.img-100 {
    max-width: 100%;
}

header .btn-login {
  background: #fff;
  width: 110px;
  line-height: 25px;
  color:#3B82F6;
  border-radius: 20px;
  font-weight: 400;
  border:solid 2px #3B82F6;
  font-size: 18px;
}

header .btn-register:hover {
  color: #fff;
}

.banner {
background: url(../images/banner-1.png) no-repeat center center;
text-align: left;
font-weight: 500;
font-size: 20px;
color: #0F2235;
background-size: 100%;
}

.banner-content {
  font-weight: 500;
font-size: 17px;
color: #0F2235;

}
.banner-content h1 {
  color: #0F2235;
  margin: 10px auto;
  font-weight: 700;
}

 
.glass {
  position: relative;
  background: inherit;
  overflow: hidden;
  width: 100%;
  height: auto;
  border-radius: 20px;
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 
              0 6px 20px rgba(0, 0, 0, 0.15); */
  z-index: 1;
  margin: 225px 0px 30px;
  
}

.glass:before {
  content: '';
  position: absolute;
  background: inherit;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: -20px;
  box-shadow: inset 0 0 500px rgba(255, 255, 255, 1); 
  filter: blur(10px);
  z-index: -1;
  filter        : blur(30px);
  -moz-filter   : blur(30px);
  -webkit-filter: blur(30px);
  -o-filter     : blur(30px);

}

.banner img {
  margin: 30px auto 0px;
}
.banner-content .btn-register {
  background: #3B82F6;
  width: 250px;
  line-height: 50px;
  border-radius:33px;
  color: #fff;
  margin: 15px auto;
  font-size: 24px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.banner .btn-register a {
  color: #fff;
}

.carousel-caption {
	position: absolute;
	right: 15%;
	top: 30%;
	left: 15%;
	z-index: 10;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #fff;
	text-align: center;
}


.carousel-caption .btn-register {
    background: #0075BB;
    width: 170px;
    line-height: 30px;
    border-radius: 25px;
    color: #fff;
}

.carousel-indicators {
	position: absolute;
	right: 0;
	bottom:30%;
	left: 0;
	z-index: 15;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-left: 0;
	margin-right: 15%;
	margin-left: 15%;
	list-style: none;
}
.carousel-indicators li {
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	width: 10px;
	height: 10px;
	margin-right: 3px;
	margin-left: 3px;
	text-indent: -999px;
	background:transparent;
	border-radius: 10px;
    border:solid 2px rgba(255,255,255,.5);
}
.carousel-indicators .active {
    border:solid 2px #0F2235;
    background: transparent;
}
.about-content {
    margin: auto;
}

.about-img {

}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #707070;
}
.about-text h2 {
    color: #333333;
    font-weight: 700;
    text-align: center;
}
.about-text p {
  text-align: center;
  color: #0F2235;
  font-size: 20px;
}

.about-text-slider p {
  text-align: left;
  color: #0F2235;
  font-size: 16px;
  line-height: 32px;
}
.about-text ul {
    margin: 40px 0px 0px;
    padding: 0px;
}

.about-text ul li {
    list-style: none;
    background: url(../images/arrow.png) no-repeat left 5px;
    margin: 0px 0px 40px;
    padding: 0px 0px 0px 40px;
}

 .what-we-do {
    /* background: url(../images/what-we-do-bg.png) no-repeat center top; */

 }
 .what-we-do h2 {
  color: #333333;
  font-weight: 700;
  text-align: center;
}
 .cards_whatwedo {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .cards_whatwedo .cards__item {
    display: flex;
    padding: 1rem;
    
  }
  @media (min-width: 40rem) {
    .cards_whatwedo .cards__item {
      width: 50%;
    }
  }
  @media (min-width: 56rem) {
    .cards_whatwedo .cards__item {
      width: 33.3333%;
    }
  }
  .cards_whatwedo .card {
    border-radius: 0.25rem;
    box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    /* overflow: hidden; */
    border-radius: 20px;
    border:none;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    border:solid 1px #3B82F6;
    position: relative;
  }
  .cards_whatwedo .card__title {
    color: #0F2235;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0px;
    margin: 0px 0px 20px;
    line-height: 1.5rem;
  }
  .cards_whatwedo .card__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding:0rem 1.8rem 1.8rem;
    margin-top: 75px;
  }

  .cards_whatwedo .card__text {
    flex: 1 1 auto;
    margin-bottom:0;
    font-size: 16px;
    padding-bottom: 10px;
}

  .cards_whatwedo .card__image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    overflow: hidden;
    position: absolute;
    top: -55px;
    left: 40px;
  }
  
  .cards_whatwedo .btn-view {
    background: #0075BB;
    width: 151px;
    line-height: 40px;
    border:none;
    border-radius: 25px;
    color: #fff;
}
  .cards_whatwedo .btn {
    background: #3B82F6;
    width: 230px;
    line-height: 30px;
    border:none;
    border-radius: 50px;
    color: #fff;
  }
  .cards_whatwedo .btn--block {
    display: block;
    width: 159px;
  }
  .cards_whatwedo .btn--block a{
    color: #fff;
  }

  .contact {
      background: url(../images/Contact-Us.png) no-repeat center top;
  }

  .contact h3 {
    text-align: left;
    color: #0075BB;
    font-weight: 700;
}

.contact .contact-form {
      background: #F2F2F2;
  }

  .contact .media-left {
    margin-right: 20px;
  }
  .contact .media-left .fas {
    font-size: 30px;
    background: #0075BB;
    border-radius: 50px;
    color: #fff;
    line-height: 80px;
    width: 83px;
    height: 83px;
    text-align: center;
    box-shadow: 0 0 0 3px #e5e5e5;
-webkit-transition: color 0.3s;
-moz-transition: color 0.3s;
transition: color 0.3s;
transform:none;
  }

  .contact .media-left .fas:hover {
    font-size: 30px;
    background: #e5e5e5;
    border-radius: 50px;
    color: #0075BB;
    line-height: 80px;
    width: 83px;
    height: 83px;
    text-align: center;
    box-shadow: 0 0 0 3px #0075BB;
    transform: scale(0.95);
  }
  
.contact .contact-form input, .contact .contact-form textarea {
  border:solid 1px #707070;
  border-radius: 10px;
  margin-bottom: 10px;
}
.contact .contact-form .btn-submit {
  background: #0075BB;
    width: 159px;
    line-height: 40px;
    border:none;
    border-radius: 25px;
    color: #fff;
    margin-left: 5px;
}
.contact .contact-form input {
  height: 50px;
}
  .contact .contact-form h3 {
    text-align: left;
    color: #0F2235;
    font-weight: 700;
    font-size: 1.5rem;
}

.contact .media h4{ 
  color: #0F2235;
  font-weight: 700;
}

.contact .media p {
  font-size: 15px;
  color: #707070;
}

.revolution {
  background: #EBF8FF;
  text-align: center;
}

.revolution h4{ 
  color: #0F2235;
  font-weight: 700;
  font-size: 25px;
}

.revolution .btn-success {
  width: 225px;
  height: 45px;
  border-radius: 50px;
  background: #00BEBE;
  border:none;
  margin: 20px 10px 0px;
}

.revolution .btn-info {
  width: 225px;
  height: 45px;
  border-radius: 50px;
  background: #3B82F6;
  border:none;
  margin: 20px 10px 0px;
}

.revolution .btn-success a, .revolution .btn-info a {
  color: #fff;
}
.map iframe {
	display: block;
  border-radius: 25px;
  width: 95%;
  margin: auto;
}

footer {
  background: #0F2235;
  color: #fff;
}

footer h4 {
  font-weight: 700;
  margin-bottom: 40px;
}
footer ul {
  margin: 0px;
  padding: 0px;
}

footer img {
  margin-bottom: 40px;
}
footer .text {
  width: 90%;
}

footer .fab {
  font-size: 25px;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  margin: 0px 30px 30px 0px;
}
footer ul li {
  list-style: none;
  margin-bottom: 10px;
}

footer ul li a {
  color: #fff;
}
footer #inlineFormInputGroup {
  height: 50px;
  border-radius:10px 0px 0px 10px;
}
footer .input-group-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: .375rem .75rem;
	margin-bottom: 0;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	background-color: #0075BB;
	border: 1px solid #0075BB;
	/* border-radius:10px 10px 10px 10px; */
}

footer .input-group-text img {
  margin: 0px;
}

.input-group > .input-group-prepend:not(:first-child) > .input-group-text {
  border-radius:0px 10px 10px 0px;
}

footer hr {
  background:rgba(255, 255, 255, 0.50);;
}


.testimonial{
  padding: 0;
  margin: 10px auto;
  text-align: left;
}

.testimonial h3 {
  color: #333333;
  font-weight: 700;
  text-align: center;
}


.testimonial .testimonial-content {
  width: 49%;
  display: inline-block;
  vertical-align: middle;
}

.testimonial .testimonial-content h3 {
    text-align: left;
    color: #0075BB;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonial .pic{
  display: inline-block;
  overflow: hidden;
  width: 49%;
  vertical-align: middle;
}
.testimonial .pic img{
  width: 100%;
  height: auto;
}
.testimonial .title{
  display: block;
  margin: 0 0 7px 0;
  font-size: 20px;
  font-weight: 600;
  color: #ffc33c;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.testimonial .post{
  display: block;
  font-size: 15px;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.testimonial .description{
  font-size: 16px;
  line-height: 30px;
}
.owl-theme .owl-controls{ margin-top: 0; }
.owl-theme .owl-controls .owl-page span{
  background: #fff;
  opacity: 0.8;
  transition: all 0.3s ease 0s;
}
.owl-theme .owl-controls .owl-page.active span{ 
  background: #3B82F6; 
  width: 20px;
  height: 20px;
  
}

.owl-theme .owl-controls .owl-page span {
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #9FA7AE;
}

.owl-theme .owl-controls .owl-buttons .owl-prev {
  left: 0;
  padding-left: 20px;
}
.owl-theme .owl-controls .owl-buttons .owl-next {
  right: 0;
  padding-right: 20px;
}



/* Slider */

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider
{
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list
{
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 400px;
}
.slick-list:focus
{
  outline: none;
}
.slick-list.dragging
{
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track
{
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after
{
  display: table;
  content: '';
}
.slick-track:after
{
  clear: both;
}
.slick-loading .slick-track
{
  visibility: hidden;
}

.slick-slide
{
  display: none;
  float: left;
  height: 350px;
  min-height: 1px;
  border-radius: 0.25rem;
	box-shadow: 0 15px 25px 4px rgba(15, 34, 53, 0.15);
  font-size: 15px;
	font-weight: 400;
	line-height: 28px;
}

.slick-slide img {
  padding: 8px 8px 0px;
}
.slick-slide p {
  padding: 15px 16px 10px;
}
.slick-slide p b {
  padding-bottom:0px;
  font-weight: 500;
  font-size: 18px;
}
.slick-slide p br {
  padding-bottom: 20px;
}
[dir='rtl'] .slick-slide
{
  float: right;
}
.slick-slide img
{
  display: block;
}
.slick-slide.slick-loading img
{
  display: none;
}
.slick-slide.dragging img
{
  pointer-events: none;
}
.slick-initialized .slick-slide
{
  display: block;

}
.slick-loading .slick-slide
{
  visibility: hidden;
}
.slick-vertical .slick-slide
{
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

.banner-what-we-do {
  background:url(../images/banner-what-we-do.png) no-repeat center top;
  height: 301px;
  text-align: center;
  color: #fff;
}

.banner-what-we-do h1 {
  padding: 50px 0px 5px;
}

.banner-what-we-do p{
  font-size: 22px
}


.nav-justified .nav-link.active {
  font-size: 22px;
  color: #3B82F6;
  font-weight: 700;
  border-bottom: solid 2px #3B82F6;
  text-align: center;
}

.nav-tabs .nav-link {
	font-size: 22px;
	color: #0F2235;
	font-weight: 400;
	margin: 0px 25px;
	text-align: center;
}

 
.projects-banner {
  background:url(../images/projecs.png) no-repeat center top;
  height: 301px;
  text-align: center;
  color: #fff;
}

.projects-banner h1 {
  padding: 50px 0px 5px;
}

.projects-banner p{
  font-size: 22px
}


.cards_projects {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;

}
.cards_projects .cards__item {
  display: flex;
  padding: 1rem;
  
}
@media (min-width: 40rem) {
  .cards_projects .cards__item {
    width: 100%;
  }
}
@media (min-width: 56rem) {
  .cards_projects .cards__item {
    width: 50%;
  }
}
.cards_projects .card {
  border-radius: 0.25rem;
  /* box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25); */
  display: inline;
  flex-direction: column;
  /* overflow: hidden; */
  border-radius: 20px;
  border:none;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  border:solid 1px #3B82F6;
  position: relative;
  padding: 20px 20px 10px;
}
.cards_projects .card__title {
  color: #0F2235;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0px;
  margin: 0px 0px 20px;
  line-height: 1.5rem;
}
.cards_projects .card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding:0rem 1.8rem 1.8rem;
  margin-top:10px;
  width: 60%;
  display: inline-flex;
  vertical-align: top;
}

.cards_projects .card__text {
  flex: 1 1 auto;
  margin-bottom:0;
  font-size: 16px;
  padding-bottom: 10px;
}

.cards_projects .card__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  overflow: hidden;
  width: 35%;
  display: inline-flex;

}

.cards_projects .btn {
  background: #fff;
  width: 151px;
  line-height: 20px;
  border:none;
  border-radius: 25px;
  color: #0075BB;
  border: solid 1px #0075BB;
  cursor: pointer;
}
.cards_projects .btn--block {
  display: block;
  width: 151px;
  height: 35px;
  margin-top: 20px;
}
.cards_projects .btn--block:hover {
  background: #0075BB;
  color: #fff;
}

.banner-media {
  background:url(../images/media.png) no-repeat center top;
  height: 301px;
  text-align: center;
  color: #fff;
}

.banner-media h1 {
  padding: 50px 0px 5px;
}

.banner-media p{
  font-size: 22px
}

.banner-event {
  background:url(../images/event.png) no-repeat center top;
  height: 301px;
  text-align: center;
  color: #fff;
}

.banner-event h1 {
  padding: 50px 0px 5px;
}

.banner-event p{
  font-size: 22px
}

.event-box {
  padding: 25px;
  border:solid 1px #3B82F6;
  font-size: 18px;
  line-height: 26px;
  border-radius: 15px;
  display:block;
  overflow:hidden;
  margin: 0px auto 30px;
  width: 90%;
}
.event-box h5 {
  font-size: 24px;
  font-weight: 500;
}
.event-box .date {
  float: left;
  background: #DCFFF8;
  border-radius: 10px;
  width: 20%;
  height: 100px;
  margin-right: 25px;
  text-align: center;
  color: #0F2235;
  padding: 20px 10px 10px;
}
.event-box .date1 {
  float: left;
  background: #FFEEFA;
  border-radius: 10px;
  width: 20%;
  height: 100px;
  margin-right: 25px;
  text-align: center;
  color: #0F2235;
  padding: 20px 10px 10px;
}
.event-box .date2 {
  float: left;
  background: #FFF9DF;
  border-radius: 10px;
  width: 20%;
  height: 100px;
  margin-right: 25px;
  text-align: center;
  color: #0F2235;
  padding: 20px 10px 10px;
}
.event-box .date3 {
  float: left;
  background: #FFF9DF;
  border-radius: 10px;
  width: 20%;
  height: 100px;
  margin-right: 25px;
  text-align: center;
  color: #0F2235;
  padding: 20px 10px 10px;
}
.event-box .date p, .event-box .date1 p, .event-box .date2 p, .event-box .date3 p {
  padding-bottom: 0px;
  margin-bottom: 0px;
}


.event-box .content {
  float: right;
  width: 77%;
  color: #0F2235;
  font-size: 18px;
  line-height: 28px;
}




.banner-contact h1 {
  padding: 50px 0px 5px;
}

.banner-contact p{
  font-size: 22px
}

.get-in-touch {
  background: #00BEBE;
  border-radius: 20px;
  width: 400px;
  color: #fff;
  overflow: hidden;
  float: right;
}


.get-in-touch a {
  color: #fff;
}

.get-in-touch h5 {
  margin-bottom: 30px;
}

.get-in-touch ul.list-unstyled li  {
  margin-bottom:5px;
  overflow: hidden;
}

.get-in-touch ul.list-unstyled li .fas {
  float: left;
  margin-bottom: 20px;
  width: 12%;
  vertical-align: top;
  font-size: 20px;
  margin-top: 5px;
}
.get-in-touch ul.list-unstyled li .fas.fa-phone.fa-2x {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
  margin-left: -14px;
}

.get-in-touch ul.list-unstyled li p {
  float: right;
  width: 85%;
  vertical-align: top;
  line-height: 22px;
}

.form-control {
	display: block;
	width: 100%;
	height: calc(1.5em + .75rem + 2px);
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #0F2235;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #0F2235;
	border-radius: 1.25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  margin-bottom: 15px;
}

#contact-form .btn-primary {
	color: #fff;
	background-color: #3B82F6;
	border-color: #3B82F6;
	border-radius: 50px;
  padding: .375rem 1.25rem;
  width: 230px;
  height: 54px;
}


.banner-student-register {
  background:url(../images/registration-student.png) no-repeat center top;
  height: 301px;
  text-align: center;
  color: #fff;
}

.banner-student-register h1 {
  padding: 50px 0px 5px;
}

.banner-student-register p{
  font-size: 22px
}

.register .btn-success {
  width: 225px;
  height: 45px;
  border-radius: 50px;
  background: #00BEBE;
  border:none;
  margin: 20px 10px 0px;
  line-height: 35px;
}

.student-registeration-form .bg {
  background: #E3ECF5;
  text-align: center;
}

.student-registeration-form ul.nav-tabs {
  width: 60%;
  padding: 15px 0px;
  border-bottom: 0px;
  margin: auto;
}

.student-registeration-form .nav-tabs ul {
  margin: auto;
  text-align: center;
}

 

.student-registeration-form .nav-tabs li a {
  font-size: 22px;
  color: #0F2235;
  font-weight: 400;
  margin: 0px 25px;
  text-align: center;
}

.student-registeration-form .nav-tabs li a.active {
  font-size: 22px;
  color: #3B82F6;
  font-weight: 700;
  border-bottom: solid 2px #3B82F6;
  text-align: center;
}

.student-registeration-form  .tab-content {
  width: 80%;
  margin: auto;
}

#menu1, #home {
	border: solid 1px #3B82F6;
	border-radius: 20px;
	width: 80%;
	margin: 5% auto;
}

.banner-teacher-register {
  background:url(../images/register-teacher.png) no-repeat center top;
  height: 301px;
  text-align: center;
  color: #fff;
}

.banner-teacher-register h1 {
  padding: 50px 0px 5px;
}

.banner-teacher-register p{
  font-size: 22px
}

.teacher-registeration-form {
  border: solid 1px #3B82F6;
	border-radius: 20px;
	width: 64%;
	margin: 5% auto;
}
#loginmenu, #registermenu {
  position: relative;
}
.menu-login{
  position: absolute;
  background: #fff;
  padding: 20px;
  border-radius:25px;
  box-shadow: 0px 8px 5px 0px rgba(0,0,0,0.26);
    -webkit-box-shadow: 0px 8px 5px 0px rgba(0,0,0,0.26);
    -moz-box-shadow: 0px 8px 5px 0px rgba(0,0,0,0.26);
    animation: smoothScroll 1s forwards;
    left:0;
    margin-top: 5%;
}

.menu-login ul {
  margin: 0px;
  padding: 0px;
}

.menu-login li  {
  list-style: none;
}

.menu-register {
  position: absolute;
  background: #fff;
  padding: 20px;
  border-radius:25px;
  box-shadow: 0px 8px 5px 0px rgba(0,0,0,0.26);
    -webkit-box-shadow: 0px 8px 5px 0px rgba(0,0,0,0.26);
    -moz-box-shadow: 0px 8px 5px 0px rgba(0,0,0,0.26);
    animation: smoothScroll 1s forwards;
    right:0;
    margin-top: 5%;
    width: 240px;
}
.menu-register ul {
  margin: 0px auto;
  padding: 0px;
  text-align: center;
}

.menu-register li  {
  list-style: none;
  margin-bottom:25px;
}

.menu-register li:last-child {
  margin-bottom: 0px;
}
.menu-register li a {
  color: #0F2235;
  border:solid 1px #0F2235;
  padding: 10px 20px;
  border-radius:20px;
}
.container-fluid.media {
  display: block;
}
.media .bg {
	background: #E3ECF5;
	text-align: center;
  padding: 10px;
}
.media .bg ul.nav-tabs {
	width: 20%;
	padding: 15px 0px;
	border-bottom: 0px;
	margin: auto;
}
.media .bg .nav-tabs li a.active {
	font-size: 22px;
	color: #3B82F6;
	font-weight: 700;
	border-bottom: solid 2px #3B82F6;
	text-align: center;
}
.media .bg .nav-tabs li {
	width: 50%;
}
.media .bg .nav-tabs li a {
	font-size: 22px;
	color: #0F2235;
	font-weight: 400;
	margin: 0px 25px;
	text-align: center;
}
.media-large-heading {
  font-size: 24px;
  font-weight: 500;
  color: #0F2235;
  margin: 20px 0px;
}

.cards_media {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;

}
.cards_media .cards__item {
  display: flex;
  padding: 1rem;
}

.cards_media li:nth-child(2) {
padding: 20px;
}
@media (min-width: 40rem) {
  .cards_media .cards__item {
    width: 50%;
  }
}
@media (min-width: 56rem) {
  .cards_media .cards__item {
    width: 33.3333%;
  }
}
.cards_media .card {
  border-radius: 0.25rem;
  /* box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25); */
  display: inline;
  flex-direction: column;
  /* overflow: hidden; */
  border-radius: 20px;
  border:none;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  
  position: relative;
  padding: 0px;
}
.cards_media .card__title {
  color: #0F2235;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0px;
  margin: 0px 0px 20px;
  line-height: 1.5rem;
}

.cards_media .card__date {
  color: #6F7A86;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0px;
  margin: 20px 0px 10px;
  line-height:25px;
  display: block;
}
.cards_media .card__content {
  flex: 1 1 auto;
  flex-direction: column;
  padding:0rem 0 1.8rem;
  margin-top:10px;
  width: 100%;
  display: inline-flex;
  
}

.cards_media .card__text {
  flex: 1 1 auto;
  margin-bottom:0;
  font-size: 16px;
  padding-bottom: 10px;
  line-height: 27px;
  color: #0F2235;
  overflow: hidden;
   text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
          line-clamp: 2; 
  -webkit-box-orient: vertical;
}

.cards_media .card__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  overflow: hidden;
  width: 100%;
  display: block;

}
.cards_media .card__image img {
  border-radius: 25px;
  width: 100%;
  height: 317px;
}
.cards_media .btn {
  background: #fff;
  width: 151px;
  line-height: 20px;
  border:none;
  border-radius: 25px;
  color: #0075BB;
  border: solid 1px #0075BB;
  cursor: pointer;
}
.cards_media .card__btn {
  display: block;
  width: 151px;
  height: 35px;
  margin-top: 20px;
}
#new-meida .btn {
	background: #fff;
	width: 151px;
	line-height: 20px;
	border: none;
	border-radius: 25px;
	color: #0075BB;
	border: solid 1px #0075BB;
	cursor: pointer;
}
.cards_media .card__btn:hover {
  background: #0075BB;
  color: #fff;
}


.banner-teacher-login {
  background:url(../images/login-teacher.png) no-repeat center top;
  height: 692px;
  text-align: left;
  color: #fff;
}

.banner-teacher-login h1 {
  padding:0px 0px 5px;
}

.banner-teacher-login p{
  font-size: 22px;
  margin-bottom: 5px;
}

.teacher-registeration-form {
  border: solid 1px #3B82F6;
	border-radius: 20px;
	width: 64%;
	margin: 5% auto;
}

#login-form {
	background: #fff;
	padding: 35px 40px;
	border-radius: 20px;
	color: #0F2235;
	text-align: left;
}

#login-form .btn-success {
  height: 45px;
  border-radius: 50px;
  background: #00BEBE;
  border:none;
  margin: 20px 10px 0px;
}

/* manoj */
.back-home-btn{
  color: #fff;
  background-color: #3B82F6;
  border-radius: 35px;
  border: 2px solid #3B82F6;
}
.back-home-btn:hover{
  color: #fff;
  background-color: #3B82F6;
  border-radius: 35px;
  border: 2px solid #0f5ad4;
}
.banner-thankyou {
  background:linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),url(../images/thankyou.png) no-repeat center 20%;
  min-height: 500px;
  text-align: center;
  color: #fff;
  background-size:cover;
}
.banner-thankyou .container{
  transform: translateY(12em);
}