



body {
  color: #444444;
  color: #000;
/*  font-family: 'Inter', sans-serif;*/
font-family:'Arima', cursive;
font-size: 18px;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

img {
  max-width: 100%;
}

p {
  font-size: 18px;
  line-height: 32px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
  display: none;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: #3BB0B1;

}
#header.sticky-header {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 10px 0;
}
#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(40, 58, 90, 0.9);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
/*  max-height: 40px;*/
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/


.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}
.navbar a
 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:0 0;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-family: 'Inter', sans-serif;
}




.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
/*
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color:#EE3D8A;
}
*/
.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
  margin-top:15px;
}

.navbar .dropdown ul li {
  min-width: 200px;
  margin-left: 0;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 16px;
  text-transform: none;
  font-weight: 500;
  color: #26247B;
   font-family: 'Inter', sans-serif;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {

}

/*.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}
*/
/*.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
*/
/*.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
*/
.navbar-mobile a
{
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}


/*=====================
        banner
======================*/


#top-banner {
  width: 100%;
/*  height: 80vh;*/
  background: #3BB0B1;
  position: relative;
/*  padding-bottom: 150px;*/
  padding-top: 150px;
/*  height: 80vh;*/
}

.banner_content h3, .banner_content h1{
  font-family: 'Itim', cursive;
  font-size: 45px;
  margin: 0;
  font-weight: 800;
}


.banner_content {
  color: #fff;
    font-family: 'Itim', cursive;
}

.banner_content .join-link {
  font-size: 45px;
  color: #fff;
}

.banner_content .join-link {
  font-size: 45px;
  color: #fff;
  margin-top: 40px;
  display: inline-block;
}

.header-overlay img {
  width: 100%;
  height: auto;
}
.header-overlay {
 /* position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;*/
  background: #3BB0B1;;
}

.head_title h3, .head_title .h3 {
  font-size: 40px;
  font-family: 'Irish Grover', cursive;
  text-transform: capitalize;
  color: #EE3D8A;
}
.green-head h3 {
  color: #46B648;
}
.sec_padd {
  position: relative;
  padding: 40px 0;
}

.team_list {
  border-radius: 8px;
  background: #26247B;
  color: #fff;
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}
.team_list:hover {
  transform: translateY(-15px);
}
.member-name {
  font-family: 'Arima', cursive;
/*  padding: 10px 0;*/
  font-size: 20px;
  margin-top: 15px;
}

.team-member-row .team_list:nth-child(2n)
 {
  background: #EE3D8A;
}



.position {
  font-family: 'Arima', cursive;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 0;
}


.common-btn {
  background: #EE3D8A;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  display: inline-block;
  font-size: 20px;
  text-transform: capitalize;
  border: none;
  position: relative;
}
.common-btn:hover {
  color: #fff;
}
.common-btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #26247B;
  bottom: -6px;
  right: 9;
  border-radius: 8px;
  z-index: -9;
  right: -6px;
}
.gallery-img img {
  width: 100%;
}
.gallery-block {
  background: #FBAF5D;
  margin-bottom: 20px;
}
.gallery-title {
  background: #FBAF5D;
  color: #000;
  text-align: center;
  padding: 15px 10px;
  font-size: 20px;
  font-weight: bold;
}





/* ---------------------------
      contact form home
-------------------------------*/


.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form .form-group .form-control {
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
  padding: 15px 0;
outline: none;
box-shadow: none;
}


.address-block .info span {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 50px;
  height: 50px;
  background: #EF558B;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  position: relative;
  border: 2px solid #fff;
}

.address-block .info span::after {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #26247B;
  right: -6px;
  bottom: -6px;
  content: "";
  border-radius: 50%;
  z-index: -9;
}
.address-block .info h4 {
  padding: 0 0 0 70px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}
.address-block .info p {
  padding: 0 0 10px 70px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}



/*=======================
        footer
===========================*/

#footer {
  position: relative;
}

.footer-content {
  background: #7F58A5;
  padding: 40px 0;
  margin-top: -5px;
}

.footer-content .social_icon {
  margin: 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
  max-width: 500px;
  margin: auto;
  padding-left: 0;
}
.footer-bg img {
  width: 100%;
}
.footer-bg {
  width: 100%;
}
.social_icon li {
  display: inline-block;
  width: 50px;
  border: none;
  margin: 0 15px;
}

.footer-menu-link ul {
  margin: 0;
  padding: 0;
}
.footer-menu-link ul li {
  display: inline-block;
}
.footer-menu-link {
  text-align: center;
  margin-top: 50px;
}
.footer-menu-link ul li a {
  color: #fff;
  padding: 15px 20px;
  display: block;
  font-size: 20px;
}
.Copyright-text {
  color: #fff;
  text-align: center;
  font-size: 14px;
}

/*=======================
           Vision 
 =====================*/

.Vision_box {
  background: #EE3D8A;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  font-size: 20px;
  margin: 15px 0;
 transition: 0.4s ease-in;
box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
height: 100%;
}

.Vision_box:hover {
  background-color:#EE3D8A;
  border-radius: 8px;
  background-image: url("../img/hover-shadow.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  color: #fff;
  transition: all 300ms linear;
  transform: translateY(-7px) scale(1.01);
}


.Vision_box.blue-bg, .blue-bg {
  background-color: #3BB0B1;
}
.Vision_box p {
  margin: 0;
}

.child-img-section img {
  width: 100%;
}




/*==============================*/


#ck-kids-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.info_item {
  position: relative;
  padding-left: 90px;
  min-width: 166px;
}

.info_item .info-icon {
  position: absolute;
  left: 0;
  top: -7px;
  bottom: 0;
  border: none;
  text-align: center;
  font-size: 35px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  line-height: 85px;
  color: #fff;
}
.info_item .count_number {
  font-weight: 700;
  line-height: normal;
  color: #44B2DF;
}

.count-text {
  margin: 0;
  font-size: 20px;
/*  color: #44B2DF;*/
}

.info_item .count_number h3 {
  display: inline-block;
  margin: 0;
}
.info_item .count_number span {
  font-size: 40px;
  vertical-align: sub;
  display: inline-block;
  line-height: 20px;
}

.info_item.green, .info_item.green .count_number {
  color: #38B559;
}

.info_item.blue,.info_item.blue .count_number 
{
   color: #44B2DF;
}

.info_item.red,.info_item.red .count_number 
{
   color: #ED5387;
}
.info_item.yellow,.info_item.yellow .count_number 
{
   color:#FBAF5B;
}



.info_item.green .info-icon {
  background:#38B559;
}

.info_item.blue .info-icon {
  background: #44B2DF;;
}

.info_item.red .info-icon {
  background: #ED5387;
}

.info_item.yellow .info-icon {
  background:#FBAF5B;
}



/*===============*/

.activities-content {
  background: #FBAF5D;
  display: flex;
  align-items: center;
  padding: 15px;
  justify-content: space-between;
  margin-top: 0px;
  position: relative;
  z-index: 9;
}

.activities-block {
  margin-bottom: 30px;
}
.activities-title {
  max-width: 260px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.activities-content .read-more {
  min-width: 100px;
  color: #000;
text-align: center;
}
.activities-img img {
  margin-bottom: -1px;
}
.activities-img {
  overflow: hidden;
  position: relative;
}
.activities-img img {
  width: 100%;
  transition: all 0.4s ease-in-out;
}
.activities-img:hover img {
  transform: scale(1.1);
}
.center-select-block {
  position: relative;
}
.center-select-block::after {
  position: absolute;
  content: "";
  border-top: 11px solid #FBAF5B;
  top: 15px;
  right: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}

/*--------------------
       testimonials
--------------------*/


.testimonials-bg {
  background: #FBAF5B;
  width: 100%;
}
.testimonials-bg .head_title h3 {
  color: #fff;
  margin-top: -50px;
}
.testimonials-bg {
  background: #FBAF5B;
}

.testimonials-bottom-bg img, .testimonials-top-bg img, .yellowshape-bottom-bg img, .yellowshape-top-bg img
{
  width: 100%;
}
.benefits_list {
  text-align: center;
  margin-top: 50px;
}
.benefits_list li {
  display: inline-block;
  padding: 25px 25px;
  font-size: 20px;
  position: relative;
  padding-left: 50px;
  width: 30%;
  text-align: left;
  vertical-align: top;
}
.testimonials-bg {
  background: #FBAF5B;
  margin-top: -1px;
  margin-bottom: 0;
}

.testimonials-slder {
  margin-bottom: 0;
}
.testimonials-top-bg {
  margin-top: -35px;
}

.testimonials-slide .content {
  background: #fff;
  text-align: center;
  padding: 30px;
  margin: 0 0;
  border-radius: 50% 50% 20px 20px;
  min-height: 250px;
  padding-top: 150px;
}

.testimonials-slide {
  text-align: center;
}

.testi-img {
  display: inline-block;
}
.testimonials-slide {
  text-align: center;
  position: relative;
}
.testi-img {
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  width: auto;
  text-align: center;
  max-width: 150px;
  margin: auto;
}
.testimonials-slder .slick-track {
  padding-top: 80px;
  padding-bottom: 50px;
}
.star {
  color: #FBAF5B;
  margin-top: 15px;
}

.testimonials-slide {
  transform: scale(0.7);
  transition: all 0.4s ease-in-out;
}
.testimonials-slide.slick-center {
  transform: scale(1);
}
.testimonials-slide .content p {
  margin: 0;
}
.author-name {
  font-weight: 600;
}


.slick-prev::before {
 content: "" !important;
  background: url("../img/left_arrow.svg");
  width: 40px;
  height: 40px;
  display: block;
  background-size: 40px;
  background-repeat: no-repeat;
}

.slick-next::before {
 content: "" !important;
  background: url("../img/right-arrow.svg");
  width: 40px;
  height: 40px;
  display: block;
  background-size: 40px;
  background-repeat: no-repeat;
}

.img-fluid.icon1 {
  position: absolute;
  top: 0;
  left: 100px;
}

.icon2 {
  position: absolute;
  bottom: 0;
}
.img-fluid.icon3 {
  position: absolute;
  top: 10px;

}
.green-dot-circle {
  position: absolute;
  width: 30px;
  height: 30px;
  background: #35B558;
  border-radius: 50%;
  bottom: 40%;
  right: 100px;
}
.fixed_icon {
  max-width: 80px;
}

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

.right-rocket {
  position: absolute;
  right: 30px;
  top: auto;
  bottom: 0;
}
.activities-content .read-more .arrow {
  margin-left: 10px;
}






/*---------------------------
     admission page
----------------------------*/


/*[Awards & Recognitions sec]*/



.blue-bg {
  background: #26247B;
}

.pink-bg {
  background: #EE3D8A;
}

.list-col {
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  position: relative;
  height: 100%;
}
.awards_content {
  text-align: center;
}
.list-img.awards_img {
  text-align: center;
  padding: 25px 0;
}

.year {
  background: #fff;
  color: #EE3D8A;
  position: absolute;
  left: 0;
  top: 20px;
  padding: 3px 9px;
  line-height: normal;
  font-size: 16px;
  font-weight: 600;
}

.year::after {
  position: absolute;
  content: "";
  border-right: 16px solid transparent;
  border-top: 16px solid #fff;
  border-bottom: 16px solid #fff;
  top: 0px;
  width: 16px;
  right: -15px;
}
.faqs-list-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 10px;
  column-gap: 30px;
}
.list_content p {
  font-size: 20px;
}

.card.faq-list {
  margin-bottom: 15px;
}

.faqs-list-block .card-header {
  background: #26247B;
  color: #fff;
  padding:0;
  height: 100%;
}

.faqs-list-block .card-link {
  color: #fff;
  font-size: 20px;
  padding: 20px 40px;
  display: block;
  /*padding-left: 40px;*/
  position: relative;
}
.card.faq-list {
  width: 100%;
}
.kids-service-slider .slick-track{
  display: flex;
}
.kids-service-slider .slick-slide{
  height: auto;
}
section#kids_sec1 {
    padding-bottom: 0;
    padding-top: 0;
}
.faqs-list-block .card-link:hover {
  text-decoration: none;
  color: #fff;
}

.list_content.kids_content {
  text-align: center;
}

.admission-step-block {
  background: #44B2DF;
  color: #fff;
  height: 265px;
  width: 265px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  text-align: center;
  padding:20px;
  position: relative;
  margin: auto;
  z-index: 99;
}
.admission-step p {
  line-height: normal;
  margin-top: 10px;
  font-size: 20px;
}
.cloud-step {
  position: relative;
}

.cloud-step span {
  color: #44B2DF;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 20px;
  font-weight: 600;
}

.admission-step-block.green-bg {
  background: #38B559;
}

.admission-step-block.green-bg .cloud-step span {
  color: #38B559;
}
.admission-step-block.light-red {
  background: #F26EA7;
}

.admission-step-block.light-red .cloud-step span {
  color:#F26EA7;
}

.admission-step-block.orange-bg {
  background: #FBAF5B;
}

.admission-step-block.orange-bg  .cloud-step span {
  color:#FBAF5B;
}


.admission-step {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
.col-md-3.admission-step.bottom-arrow::after {
  background: url("../img/arrow-bottom.svg");
  z-index: 99;
  width: 100%;
  height: 100%;
  left: auto;
  border: none;
  content: "";
  position: absolute;
  background-size: contain;
  right: -7px;
  margin: auto;
  bottom: -7px;
  top: auto;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 0;
}
.col-md-3.admission-step.top-arrow::after {
  background: url("../img/arrow-top.svg");
  background-repeat: no-repeat;
  background-position: center top;
  z-index: 99;
  width: 110%;
  height: 110%;
  left: -9px;
  border: none;
  content: "";
  position: absolute;
  top: -8px;
  background-size: contain;
  right: 0;
  margin: auto;
   z-index: 0;
}


.col-md-3.admission-step::before {
  background: #fff;
  position: absolute;
  content: "";
  width: 114%;
  height: 120%;
  top: -10px;
  right: -27px;
  z-index: 9;
  transition: all 1s ease-in-out;
  /*width: 0;*/
  left: auto;

}
.arrow-animated .col-md-3.admission-step::before
{
    width: 0;



}

.row.gap-row {
  padding: 50px 0;
}


.light-blue-dots {
  content: "";
  width: 20px;
  height: 20px;
  background: #44B2DF;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 35%;
}

.green-dots {
  background: #46B648;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 16%;
  border-radius: 50%;
  top: 25px;
}

/*
.faqs-list-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 10px;
  column-gap: 30px;
  counter-reset: my-counter;
}*/


.list_content h3 {
  font-family: 'Arima', cursive;
  font-size: 25px;
  text-align: center;
  padding: 15px 0;
  margin-top: 10px;
}
.list-img.kids_img img {
  border-radius: 5px;
}
.kids_content p {
  font-size: 16px;
  margin: 0;
  line-height: normal;
}


.card.faq-list {
  width: 100%;
  counter-increment: my-counter;
  padding-left: 0;
}

.card.faq-list::after {
  position: absolute;
  content: ""counter(my-counter)".";
  color: #fff;
  top: 20px;
  left: 15px;
  font-size: 20px;
}

.card.faq-list::nth-child(2)
{
  background: #EE3D8A;

}

.card.faq-list:nth-child(2n) .card-header {
  background: #EE3D8A;
  height: 100%;
}


.faqs-list-block .card-link::after {
  position: absolute;
  content: "";
  height: 19px;
  border-top:15px solid #FBAF5B;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.benefits-bg {
  background: #FBAF5B;
  margin-bottom: -1px;
  margin-top: -1px;
  padding: 10px 0;
}
.benefits_list ul {
  margin: 0;
  padding: 0;
}
.benefits_list li {
  display: inline-block;
  padding: 15px 25px;
  font-size: 20px;
  position: relative;
  padding-left: 50px;
}
.benefits_list li::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border: none;
  left: 0;
  top: 9px;
  background: url("/public/front/img/plan-icon-1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.white-text h3, .white-text {
  color: #fff;
}

/* ===========End admission page======== */










/*---------------------------
       curriculum Page
----------------------------*/

.step-icon {
  background: #C5248E;
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 50%;
  margin: auto;
  position: relative;
  display: block;
  padding: 15px;
  margin-top: 30px;
}

.step-icon img {
  max-width: 100%;
  max-height: 100%;
}
.education_step h3 {
  font-size: 16px;
  color: #C5248E;
}
.education_step {
  text-align: center;
  position: absolute;
  max-width: 180px;
  width: 100%;
  transition:all 0.8s ease-in-out;
}
.education-structure {
  position: relative;
}

.education_step.step-1 {
  left: 0;
  bottom: 0;
}
.education_step.step-2 {
  left: 10%;
  bottom: 50%;
}
/*.education_step.step-2 {
  top: 28px;
  left: 16%;
}
*/
.education_step.step-3 {
  left: 0;
  right: 0;
  margin: auto;
  top: -25px;
}
.education_step.step-4 {
  right: 10%;
  bottom: 50%;
}

.education-structure {
  position: relative;
  min-height: 400px;
  max-width: 800px;
  margin: auto;
}



.education_step.step-5 {
  right: 0;
  bottom: 0;
}

.student-flow {
  position: absolute;
  top: auto;
  bottom: -100px;
  left: 0;
  right: 0;
  margin: auto;
  border: 0px solid #ddd;
  width: 250px;
  text-align: center;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 99;
  background: #fff;
}

.step-icon::after {
  position: absolute;
  content: "";
  width: 115px;
  height: 115px;
  border: 1px solid;
  left: -23px;
  top: 0;
  border-radius: 50%;
  right: 0;
  bottom: 0;
  margin: auto;
}


.education_step .line {
  display: block;
  width: 73%;
  height: 1px;
  background: #000;
  position: absolute;
}

.education_step.step-1 .line {
  left: 146px;
  bottom: 15px;
  transform: rotate(5deg);
}
.education_step.step-2 .line {
  transform: rotate(45deg);
  bottom: -55px;
  right: 0;
  top: auto;
  left: 109px;
}

.education_step.step-3 .line {
  position: absolute;
  bottom: -92px;
  transform: rotate(90deg);
  top: auto;
  left: 23px;
}
.education_step.step-4 .line {
  top: auto;
  left: -63px;
  transform: rotate(137deg);
  bottom: -54px;
}
.education_step.step-5 .line {
  transform: rotate(174deg);
  top: auto;
  left: -100px;
  bottom: 17px;
}
.education_step .line::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: #000;
  left: -7px;
  top: -4px;
  border-radius: 50%;
}
#kids_sec {
  padding-bottom: 140px;
}




.pink-color .step-icon,  .education_step.pink-color .line, .education_step.pink-color .line::after
{
  color: #C5248E;
    background:#C5248E;
}
.green-color .step-icon, .education_step.green-color .line, .education_step.green-color .line::after {
  color: #00BE02;
    background:#00BE02;
}

.orange-color .step-icon, .education_step.orange-color .line, .education_step.orange-color .line::after
{
  color: #FBAF5B;
  background:#FBAF5B;

}

.blue-colour .step-icon, .education_step.blue-colour .line, .education_step.blue-colour .line::after
{
  color: #26247B;
  background:#26247B;

}

.light-blue .step-icon, .education_step.light-blue .line, .education_step.light-blue .line:after{
  color: #00B4E5;
   background:#00B4E5;
}




.pink-color h3
{
  color: #C5248E;

}
.green-color h3 {
  color: #00BE02;

}

.orange-color h3
{
  color: #FBAF5B;


}

.blue-colour h3
{
  color: #26247B;


}

.light-blue h3 {
  color: #00B4E5;

}


.student-flow::after {
  border: 15px solid transparent;
  background-size: 100% 100%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(white, white),
       linear-gradient(50deg, #C5248E 50%, #00BE02 30%),
       linear-gradient(120deg, #FBAF5B 66%, #26247B 30%),
       linear-gradient(300deg, #ddd 36%, lightgray 30%),
       linear-gradient(210deg, #00B4E5 56%, lightgray 30%),
       linear-gradient(350deg, #00B4E5 76%, lightgray 30%);
   background-position: center center, left top, right top,
   left bottom, right bottom, left bottom;
  background-origin: content-box, border-box, border-box, border-box, border-box, border-box;
  background-clip: content-box, border-box, border-box, border-box, border-box, border-box;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
  transform: rotate(-25deg);
  z-index: -9;
}

/*.student-flow {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease-in-out;
}
.education_step
{
	  opacity: 0;
}
*/

.education_step.step-1 {
 /* left: 0;
  bottom: 0;*/
  /*transform: rotate(0) translateY(20.5px) translateX(249.5px) rotate(0);*/
  transition-delay: 0.4s;
  /*opacity: 0;*/
}


/*
.education_step.step-2
{
 transition-delay: 0.6s;
}


.education_step.step-3
{
 transition-delay: 0.8s;
}

.education_step.step-4
{
 transition-delay: 1s;
}

.education_step.step-5
{
 transition-delay: 1.2s;
}



.arrow-animated .education_step.step-1 
{
  transform: rotate(0) translateY(0) translateX(0) rotate(0);
  opacity: 1;
}
.education_step
{
	  opacity: 0;
}
.arrow-animated .education_step {
  opacity: 1;
}

.arrow-animated .student-flow
{
 opacity: 1;
 transform: translateY(0);
  transition-delay: 0.2s;
}*/








/*---------------------------
       Gallery Page
----------------------------*/

/**/



#filters ul li a {
  color: #EE3D8A;
  font-size: 20px;
  padding: 5px 5px;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 2px solid transparent;

}
#filters .filtro {
  display: inline-block;
  padding: 0 15px;
}

#filters ul {
  border: none;
  margin-bottom: 50px;
}

#filters .filtro.active a {
  color: #26247B;
  border-color: #26247B;
}
#filters .img-box img {
  width: 100%;
}
#filters .img-box {
  margin: 15px 0;
  border: 3px dashed #EE3D8A;
  border-radius: 50px;
  padding: 25px;
  overflow: hidden;
}
#filters .img-box a {
  display: block;
  position: relative;
}

#filters .img-box a::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255,255,255,.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

#filters .img-box a:hover::before {
  -webkit-animation: circle .75s;
  animation: circle .75s;
}




@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
@keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}

.scale-anm {
  transform: scale(1) !important;
}
.logo img{
  height: auto;
}
.footer-bg img, .about-img img, .activities-img img, .testimonials-top-bg img, .header-overlay img, .banner_id img{
  width: 100%;
  height: auto;
}
.tile {
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
.child-img-section img{
  height: auto;
  width: 100%;
}
#filters .img-box{ 
  position: relative;
  opacity: 1;
}
.yellow-dots {
  width: 30px;
  height: 30px;
  background: #F6CB11;
  display: inline-block;
  border: none;
  border-radius: 50%;
  top: 0;
  bottom: 20%;
  position: absolute;
  margin: auto;
  left: 100px;
}
.galery-footer img {
  max-width: 60px;
}
.galery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

@keyframes slideDash {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

.gallery-img {
  overflow: hidden;
}
.gallery-img a {
  display: block;
}
.gallery-img img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.gallery-img:hover img {
  transform: scale(1.1);
}


.hover15 figure::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255,255,255,.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}









/*---------------------------
    hover effect
----------------------------*/

/**/

.hovicon::after {
pointer-events: none;
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
content: '';
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
  top: 0;
  left: 0;
  padding: 0;
  z-index: -1;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  opacity: 0;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
-moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
transition: transform ease-out 0.1s, background 0.2s;
}

.hovicon:hover {
  background: rgba(255, 255, 255, 0.05);
  -webkit-transform: scale(0.93);
  -moz-transform: scale(0.93);
  -ms-transform: scale(0.93);
  transform: scale(0.93);
  color: #fff;
}



.block-hover-effect {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  position: relative;
  overflow: hidden;
  z-index: 9;
}
/* effect #2 */
.block-hover-effect {
  /* overlay styles */
  /* icon styles */
}
.block-hover-effect:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transition-property: transform;
  transition-duration: 0.4s;
  transition-timing-function: linear;
  transition-delay: 0s;
  display: block;
  width: 200%;
  height: 200%;
  content: "";
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center top;
  background-color: rgba(255, 255, 255, 0.2);
  /*background-color: #EE3D8A;*/
  border-radius: 50%;
  z-index: -9;
}

.block-hover-effect:hover::before {
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center bottom;
}

/*.block-hover-effect:after {
  position: absolute;
  top: 1px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 40px;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-size: 25px;
  font-weight: 900;
  line-height: inherit;
  transform: scale(1.5);
  opacity: 0;
}*/
/*.block-hover-effect:hover {
  padding-left: 26px;
  padding-right: 46px;
}*/
/*.block-hover-effect:hover:before {
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center bottom;
}*/
/*.block-hover-effect:hover:after {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  transform: scale(1);
  opacity: 1;
}
*/

/*============================*/
/*about us page*/

.facilities-box {
  background: #EE3D8A;
  padding: 30px;
  border-radius: 10px;
  height: 100%;
}
.border-radius-10 {
  border-radius: 10px;
}
.facilities-box h3 {
  text-align: center;
  color: #ffc107;
  font-size: 24px;
  padding: 15px 0;
  font-family: 'Arima', cursive;
}

.facilities-box .details {
  display: flex;
}
.details_left {
  width: 60%;
  padding-right: 20px;
}
.details_right {
  width: 40%;
  border: 1px solid #fff;
  text-align: center;
  padding: 10px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.details_left .read-more {
  color: #fff;
  border: 1px solid;
  padding: 10px 30px;
  display: inline-block;
}
.facilities-box .read-more {
  position: relative;
  padding-right: 50px;
  padding-left: 20px;
}
.facilities-box .read-more::before {
  position: absolute;
  content: "";
  width: 19px;
  height: 2px;
  background: #fff;
  top: 0px;
  bottom: 0;
  right: 14px;
  margin: auto;
}

.facilities-box .read-more::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  top: 17px;
  right: 15px;
  transform: rotate(-45deg);
}
.details_right {
  width: 40%;
  border: 1px solid #fff;
  text-align: center;
  padding: 10px;
  border-radius: 20px;
}
.line {
  display: block;
  width: 100%;
  background: #fff;
  height: 1px;
  margin: 10px 0;
}
.content-img img {
  /*max-height: 200px;*/
  width: 100%;
  object-fit: cover;
}
.group-block h5, .group-block p {
  font-size: 16px;
  margin: 10px 0;
}
.group-block {
  width: 100%;
}


/*===================*/




/*---------------------------
     playground
----------------------------*/



.service-box {
  border: 2px solid #EE3D8A;
  padding: 30px 60px;
}
.service-title h3 {
  color: #EE3D8A;
  font-size: 20px;
  font-family: 'Arima', cursive;
  padding: 20px 0;
  margin: 0;
}
.service-box p {
  color: #EE3D8A;
  max-width: 450px;
  margin: auto;
}
.service-icon img {
  max-height: 100px;
  object-fit: contain;
 
  transition: all 0.3s ease-in;
   transition-duration: 3s;
}
.service-box:hover h3, .service-box:hover * {
  color: #fff !important;
}

.service-box:hover .service-icon img {
  filter: brightness(100);
}
.service-box::before {
  background-color: #EE3D8A;
}

.blue-color.service-box::before {
  background-color: #26247B;
}


/*---------------------------
      common css
----------------------------*/


.gree-bg {
  background: #38B559 !important;
}

.blue-color *, .blue-color {
  color: #26247B  !important;
}
.blue-color {
  border-color: #26247B !important;
}
.light-blue-bg {
  background: #44B2DF;
}

.common_padd {
  padding: 90px 0;
  position: relative;
}

.green-dots.bottom {
  bottom: 50px;
  top: auto;
}

/*slider*/
.slick-slider {
    margin:0 -15px;
}
.slick-slide {
    text-align:center;
    margin-right:15px;
    margin-left:15px;
}

.slick-slide {
  height: auto;
}
.slick-track {
  display: flex;
  flex-wrap: wrap;
}


/**/

/*---------------------------
     end common css
----------------------------*/





/*---------------------------
       contact us
----------------------------*/


.sidelist ul {
  padding: 0;
}
.sidelist ul li {
  display: block;
  padding: 10px 0;
}
.content-left h3, .side-title h3 {
  color: #26247B;
  font-family: 'Arima', cursive;
}

.sidelist h4 {
  color: #EE3D8A;
  font-family: 'Arima', cursive;
}

.pdf-icon {
  display: inline-block;
}
.pdf-block.sidelist h4 {
  display: inline-block;
  margin-left: 10px;
  margin-bottom: 0;
  vertical-align: middle;
  color: #DD2025;
}
.pdf-icon img {
  max-width: 20px;
}

/*-----*/

.scrollto.submenu-list span {
  position: relative;
  display: block;
}
.scrollto.submenu-list span::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 11px;
  left: auto;
  right: -14px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}


/*.navbar li.active .nav-link:hover {
  color: #EE3D8A;
}
*/
.navbar li.active  a.scrollto::before
{
  color: #EE3D8A;
}
.navbar .dropdown ul li.active a
{
    color: #EE3D8A;
}

.benefits-section.confident_school .benefits_list li {
  min-width: 25%;
  width: auto;
}

/*animation css*/
/*================================*/




:root {
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 1s;
}

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(90vw) rotateY(67.5deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(90vw) rotateY(67.5deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
[data-animation] {
  opacity: 0;
  -webkit-animation-timing-function: var(--animation-timing-function);
          animation-timing-function: var(--animation-timing-function);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: var(--animation-duration);
          animation-duration: var(--animation-duration);
  will-change: transform, opacity;
}

.animations-disabled,
.animations-disabled [data-animation] {
  -webkit-animation: none !important;
          animation: none !important;
  opacity: 1 !important;
}

.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}

.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}

.slideInLeft {
  -webkit-animation-name: slideInleft;
          animation-name: slideInleft;
}

.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

.zoomReverseIn {
  -webkit-animation-name: zoomReverseIn;
          animation-name: zoomReverseIn;
}

.flipInY {
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
}

.flipOutY {
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
  animation-direction: reverse;
}

.right-rocket img {
    height: auto;
}


.box {
  width: 7rem;
  height: 7rem;
  margin: 1rem;
  background: radial-gradient(circle at top right, #e61a5e, #5e1ae6);
  border-radius: 1.5rem;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3) inset, 0 3px 9px rgba(0, 0, 0, 0.3);
}

/*end animation css*/

.about-content .h5{
  font-family: 'Arima', cursive;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}
.about-content h4, .about-content .h4 {
    color: #3bb0b1;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 20px;
    font-family: "Jost", sans-serif;
}
section#Vision-mission-section {
    /*padding-top: 0;*/
    padding-bottom: 70px;
}
section.sec_padd.child-img-section {
    padding-top: 0;
    padding-bottom: 20px;
}
section#team-member {
    display: none;
}
section#our-facilities, section#ck-info {
    padding-top: 0;
}
section.testimonials-section {
    padding-top: 40px;
}
section#our-facilities.sec_padd.our-facilities-sec {
    padding-top: 40px;
    padding-bottom: 0;
}



.blog-txt{
    color: #000;
}
.blog-txt h3{
    font-size: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
span.date {
    font-size: 13px;
}
.grid.grid-block.row .card {
  height: 100%;
}
.blog-img {
    position: relative;
    padding-top: 65%;
}
 
.blog-img img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}
div#blogs-container .col-md-4.digital {
 margin-bottom: 20px;
}
.sidebar {
    padding: 30px 15px;
}
 
.blog_description {
    padding-top: 20px;
    padding-bottom: 30px;
}
 
.sidebar h5.card-title.mt-3 {
    margin-top: 0 !important;;
    font-size: 16px;
}
 
.sidebar p.card-text {
    font-size: 14px;
}
.blog_page .sidebar .row.no-gutters {
    display: flex;
   align-items: center;
}
.blog_top_section img 
{
    width: 100%;
    max-width: 100%;
}
.sidebar .blue-title.title-small
{
    font-size: 22px;
    margin-bottom: 20px;
}
.sidebar h5.card-title.mt-3 {
    margin-top: 0 !important;
    font-size: 16px;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar {
    padding-top: 0;
}
.sidebar p.card-text small.text-muted {
    font-family: 'montserratmedium';
}
.sidebar {
    padding-top: 0;
}
.blog_page h1.blog-title {
    font-size: 33px;
    font-weight: 700;
}
.blog_page .b-title {
    margin-bottom: 20px;
}
.blog_page .sidebar {
    border-left: 1px solid #ddd;
    padding-left: 30px;
    height: 100%;
}
.blog-container {
    padding-right: 15px;
}

span.date::after {
    position: absolute;
    content: "\f274";
    display: block;
    font-family: fontawesome;
    top: -1px;
    left: 0;
}

span.date {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    color: #6c757d!important;
}