/******* Bootstrap Theming ********/
/********** Custom CSS ************/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root{
    --primary-blue:#17a2b8;
    --secondary-blue: #00394f;
    --primary-yellow:#F0EB73;
    --secondary-yellow:#FFDE03;
    --primary-green: #0b8d46;
    --secondary-green: #044923;
    --white-2: #fefefe;
    --white: #fff;
}
body{
    background: var(--white-2);
}
/*h1,h2,h3,h4{font-family: 'Inter', sans-serif;}*/
h1,h2,h3,h4{font-family: "Handlee", cursive;}
.pl-4 h4{
    font-weight: bolder;
}

a {
    color: black;
}
.bg-color{
    background: var(--primary-blue);
}
.bg-light{
    background: var(--white-2) !important;
}
.bg-white{
    background: var(--white) !important;
}
.text-color-primary{
    color: var(--primary-blue);
}
.btn-primary{
    background: var(--primary-blue);
    border: var(--primary-blue);
}
.btn-primary:hover{
    background: var(--secondary-blue);
}
.btn-green{
    background: var(--primary-green);
    border: var(--primary-green);
}
.btn-green:hover{
    background: var(--secondary-green);
}
.rounded-1{
    border-radius: 10px;
}
.rounded-2{
    border-radius: 20px;
}
.slant-top{
    content: "";
    position: absolute;
    height: 4rem;
    margin: 0;
    width: 50%;
    z-index: 0;
    clip-path: polygon(
        0 0, /* left top */
        100% 0, /* right top */
        100% 0, /* right bottom */
        0 100% /* left bottom */
    );
}
.slant-bottom{
    content: "";
    position: absolute;
    height: 4rem;
    margin: 0;
    right: 0;
    width: 50%;
    bottom: 0;
    z-index: 0;
    clip-path: polygon(
        0% 100%, /* left top */
        100% 0, /* right top */
        100% 100%, /* right bottom */
        100% 100% /* left bottom */
    );
}
.triangle-notch:before{
    content: "";
    position: absolute;
    margin: 0;
    left: 50%;
    transform: translate(-50%,0%);
    /*width: 50%;*/
    top: 0;
    z-index: 0;
    border-right: solid 25px transparent;
    border-left: solid 25px transparent;
    border-top: solid 25px var(--white-2);

}
.crystallize-bg{
    /*background-position: 50%;*/
    background-size: cover;
    bottom: 0;
    content: "";
    height: 100px;
    left: 0;
    opacity: 0.4;
    background: #ccc url("https://flutterwave.com/images/sections/box.png") no-repeat;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.bg-vector{
    position: absolute;
    width: 100%;
    /*height: 10px;*/
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

.title-top{
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
    background: rgba(255,255,255,0.7);
    line-height: 0;
}
.cards-bg{
    background: #fff !important;
    box-shadow: 0 5px 10px -10px var(--secondary-blue);
    border: 1px solid  var(--secondary-blue);
    border-radius: 10px;
    transition: 0.2s;
}
.cards-bg:hover{
    box-shadow: 0 3px 10px -10px var(--secondary-blue);
    transition: 0.2s;
}

.nav-border-bottom {
  border-bottom: 0.5px var(--secondary-blue) solid;
}
.leaders img, .teachers img, .team-social{
   border-radius: 10px;
}

.navbar-light .navbar-toggler {
  outline: none;
  border: none;
}
.preview-carousel .owl-stage-outer{
    border-radius: 20%;
}
.full-width-carousel .owl-stage-outer{
    border-radius: 0;
}

.text-primary{
    color: var(--secondary-blue) !important;
}
.text-primary{
    color: var(--secondary-blue) !important;
}

.dropdown-menu {
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: 0 0 8px -4px #333;
}

.dropdown-menu .dropdown-item {
  padding: 1rem 1rem;
}

.dropdown-menu .dropdown-item:hover {
  color: #ffffff;
  background: var(--primary-blue);
}
.join-now{
    font-size: 1.2rem;
    font-weight: bold;
}
.section-title {
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-blue);
}

.section-title span {
  position: relative;
  background: var(--white-2);
  z-index: 1;
}

.section-title::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-blue);
}

.section-title-alt::before {
    background: var(--white-2) !important;
}


[class^=flaticon-]:before,
[class*=" flaticon-"]:before,
[class^=flaticon-]:after,
[class*=" flaticon-"]:after {
  font-size: inherit;
  margin-left: 0;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 0;
  z-index: 11;
  -webkit-animation: action 1s infinite alternate;
  animation: action 1s infinite alternate;
}

@-webkit-keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}
@keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}
.navbar-light .navbar-nav .nav-link {
  padding: 30px 15px;
  color: #00394f;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-blue);
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    padding: 10px 15px;
  }
}
.post-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 35px;
  top: 50%;
  left: 0;
  margin-top: -20px;
  padding: 0 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.post-carousel .owl-nav .owl-prev,
.post-carousel .owl-nav .owl-next {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-blue);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 30px;
  font-size: 18px;
  opacity: 0.1;
  transition: 0.3s;
}

.post-carousel:hover .owl-nav .owl-prev,
.post-carousel:hover .owl-nav .owl-next {
  opacity: 1;
}
.post-carousel .owl-nav .owl-prev:hover,
.post-carousel .owl-nav .owl-next:hover{
    background: rgba(229, 229, 229, 0.85);
    transition: 400ms;
}
.tox-promotion{
    display: none;
}
.tox-statusbar__branding{
    display: none;
}
.portfolio-item .portfolio-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  opacity: 0;
  transition: 0.5s;
}

.portfolio-item:hover .portfolio-btn {
  /*opacity: 1;*/

}
.news-title{
    font-family: inherit;
}
.news-title{
    font-family: inherit;
}

.team .team-social {
  top: 0;
  background: rgba(0, 12, 36, 0.94);
  opacity: 0;
  z-index: 1;
  transition: 0.5s;
}

.team:hover .team-social {
  opacity: 1;
}

.testimonial-carousel .owl-dots {
  margin-top: 30px;
  text-align: center;
}

.testimonial-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 10px;
  background: #dddddd;
}

.testimonial-carousel .owl-dot.active {
  background: var(--primary-blue);
}

.contact-form .help-block ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}/*# sourceMappingURL=style.css.map */
.modal-lg{
    max-width: 98%;
}
.bg-secondary-yellow{
    background: var(--primary-yellow);
}
