

/* General CSS */
a{
    text-decoration: none;
    transition: all 0.4s ease;
}
html{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
body {
    margin: 0;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
}
.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366; /* WhatsApp brand green */
    color: #ffffff;

    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    overflow: visible;
  }

  /* WhatsApp icon */
  .whatsapp-icon {
    font-size: 30px;
    z-index: 2;
    pointer-events: none;
  }

  /* Pulsating halo */
  .whatsapp-btn .pulse {
    position: absolute;
    width: 64px;
    height: 64px;
    left: 0;
    top: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.25);
    z-index: 1;
    animation: whatsapp-pulse 1.8s infinite;
  }

  @keyframes whatsapp-pulse {
    0% {
      transform: scale(1);
      opacity: 0.9;
    }
    50% {
      transform: scale(1.6);
      opacity: 0.25;
    }
    100% {
      transform: scale(2.2);
      opacity: 0;
    }
  }

  /* Hover effect */
  .whatsapp-btn:hover {
    transform: translateY(-4px);
    background: #1ebe57; /* darker brand shade */
    box-shadow: 0 10px 30px rgba(27, 160, 86, 0.3);
    text-decoration: none;
  }

  /* Responsive smaller button on mobile */
  @media (max-width: 480px) {
    .whatsapp-btn {
      width: 56px;
      height: 56px;
    }
    .whatsapp-icon {
      font-size: 26px;
    }
    .whatsapp-btn .pulse {
      width: 56px;
      height: 56px;
    }
  }
.section-space{
    padding-top: 70px;
    padding-bottom: 70px
}
.bg-fdfdfd{
    background-color: #f5f5f5
}
.btn-margin-top{
    margin-top: 40px
}
.btn-yellow{
    background-image: linear-gradient(to right, #FFC107 0%, #ffcc00 51%, #ffcc00 100%);
    padding: 15px 13px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: #000000;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 1px 1px 12px #00000024;
}
.btn-yellow i{
    padding-right: 4px
}
.btn-yellow:hover, .btn-yellow:active {
    background-position: right center;
    color: #000000 !important;
    text-decoration: none;
    transform: scale(1.02);
}
.btn-white{
    background-image: linear-gradient(to right, #ededed 0%, #ffffff 51%, #ffffff 100%);
    padding: 15px 13px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: #000000;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 1px 1px 12px #00000024;
}
.btn-white i{
    padding-right: 4px;
    color: #000000;
}
.btn-white:hover, .btn-white:active {
    background-position: right center;
    color: #000000 !important;
    text-decoration: none;
    transform: scale(1.02);
}

.btn-blue{
    background: #0063e6;
    background: -webkit-linear-gradient(to left, #3d8ffa, #0063e6);
    background: linear-gradient(to left, #3d8ffa, #0063e6);
    padding: 15px 13px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 1px 1px 12px #00000024;
}
.btn-blue i{
    padding-right: 4px;
    color: #fff;
}
.btn-blue:hover, .btn-blue:active {
    background-position: right center;
    color: #fff !important;
    text-decoration: none;
    transform: scale(1.02);
}
.main-heading{
    color: #0063e6;
    font-size: 3rem;
    line-height: 1;
    font-weight: 700
}
.main-heading span{
    color: #ffcc00
}
.sub-h{
    color: #64748b;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-top: 25px;
    margin-bottom: 60px;
}
/* logo Bar */
.logo-bar{
    padding: 3px;
    position: fixed;
    z-index: 1050;
    width: 100%;
    background: #ffffff;
}
.top-bar-logo{

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto;
}
.top-bar-logo img{
    width: 270px;
}
/* Navbar */
.navbar-brand img{
    width: 270px;
    transition: 0.5s;
}
.navbar-light.bg-light {
    background-color: #ffffff !important;
    padding-top: 3px;
    padding-bottom: 3px;
}
.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link{
    color: #fff;
    border-radius: 40px;
}
.navbar-light .navbar-nav .show>.nav-link:before {
    left: 0;
    right: 0;
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    background: rgb(0 94 151);
    height: 3px;
    -webkit-transition-property: left right;
    transition-property: left right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.navbar-light.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff !important;
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.navbar-light.is-sticky .navbar-brand img{
    width: 150px;
    animation: 500ms
        ease-in-out 0s normal none 1 running fadeInDown;
}
.navbar-light.is-sticky .nav-link, .navbar-light .nav-item .sm-btn{
    margin-top: 0px !important
}
.navbar-light .navbar-nav .nav-link {
    text-transform: capitalize;
    font-weight: 500;
    padding: 1px 10px;
    font-size: 15px;
    height: 33px;
    margin-right: 1px;
    margin-left: 1px;
    line-height: 28px;
    color: rgb(0 0 0 / 90%);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden;
}
.navbar-brand {
    font-weight: 500;
    /* letter-spacing: .3px; */
    /* font-size: 22px; */
    transition: 0.5s;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #0063e6;
}

.navbar-light .nav-item .dropdown-menu {
    padding: 20px 20px;
    width: max-content;
    background: #181818;
    border: 1px solid #22a70e4a;
}
.dropdown-menu .menu-box{
    display: flex;
    gap: 30px;
}
.drop-title{
    font-size: 17px;
    color: #22a70e;
    margin-bottom: 20px;
}
.navbar-light .nav-item .dropdown-menu .dropdown-item {
    font-size: 15px;
    color: #ffffff;
    opacity: 1;
    padding: 8px 10px;
    vertical-align: center;
}
.navbar-light .nav-item .dropdown-menu .dropdown-item img{
    width: 26px;
    margin-right: 5px
}
.navbar-light .nav-item .sm-btn{
    margin-top: 20px;
    padding: 7px 22px;
    font-size: 14px;
    margin-left: 27px;
    line-height: 24px;
    color: #fff;
    height: 43px;
    font-weight: normal;
    background: transparent;
    border: 1px solid #22a70e;
}
.navbar-light .nav-item .sm-btn:hover, .navbar-light .nav-item .sm-btn:active{
    color: #22a70e !important;
    border-color: #fff;
}
.navbar-light .nav-item .border-btn.sm-btn{
    color: #114a8f
}
.navbar-light .navbar-nav .dropdown-item:focus, .dropdown-item:hover {
    color: #fff !important;
    text-decoration: none;
    background-color: #22a70e2e;
    border-radius: 7px;
}

.dropdown-toggle::after {
    content: "\F282";
    font-family: "Bootstrap-icons";
    border-top: 0;
    border-right: 0;
    border-left: 0;
    text-transform: none;
    white-space: nowrap;
    vertical-align: -.10em;
}

.navbar-btn-bg {
    background-color: #579fd6;
    color: #fff;
    border-radius: 10px;
    padding: 7px 17px;
}

.navbar-btn-bg:hover {
    color: #081D46 !important;
}

.navbar-btn-border {
    border: 1px solid #579fd6;
    border-radius: 10px;
    padding: 7px 17px;
}

.navbar-btn-border:hover {
    border: 1px solid #fff;
}

.is-sticky .navbar-btn-border:hover {
    border: 1px solid #01C981;
    color: #081D46 !important;
}

.nav-c .navbar-light .navbar-nav .nav-link.active, .nav-c .navbar-light .navbar-nav .show>.nav-link {
    color: #081D46;
}
.nav-c .navbar-light .navbar-nav .nav-link {
    color: #081D46;
}
/* hero sec */
.hero-sec{
    position: relative;
    padding-top: 160px;
    padding-bottom: 70px;
    background-image: url(../../assets/img/hero-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}
.hero-sec:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    opacity: .9;
    background: #0063e6;
    background: -webkit-linear-gradient(to left, #005bd2, #0063e6);
    background: linear-gradient(to left, #005bd2, #0063e6);
}
.hero-sec .hero-content{
    position: relative;
    z-index: 1
}
.hero-sec .hero-content .hero-sub{
    color: #fff;
    font-size: 21px;
    margin-bottom: 40px;
    margin-top: 15px;
}
.hero-sec.hero-sec-bottom{
    padding-top: 70px
}
.counter{
    margin-bottom: 25px;
    text-align: center;
    background: #ffffff30;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 1px 1px 12px #00000024;
    -webkit-backdrop-filter: blur(7px);      /* Safari */
    backdrop-filter: blur(7px);
    width: 100%
}
.counter.counter2{
    background: #0063e6;
    background: -webkit-linear-gradient(to left, #3d8ffa, #0063e6);
    background: linear-gradient(to left, #3d8ffa, #0063e6);
}
.counter.counter2 .counter-title{
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: #fff
}
.counter .counter-title{
    line-height: 1;
    margin: 0 0 10px;
    color: #ffcc00;
    font-size: 26px;
    font-weight: 700;
}
.counter p{
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1;
    font-size: 14px !important;
    letter-spacing: .3px;
    color:#fff;
}
.counter.counter-yellow{
    background-image: linear-gradient(to right, #FFC107 0%, #ffcc00 51%, #ffcc00 100%);
}
.counter.counter-yellow .counter-title{
    color: #000
}
.counter.counter-yellow p{
    color: #000
}
.hero-sec .hero-heading{
    font-size: 60px;
    font-weight: 700;
    color: #fff;
}
.hero-sec .hero-heading span{
    color: #ffcc00;
}
.hero-sec .btn-ul{
    margin-top: 30px;
    position: relative;
    z-index: 1
}
.breathe {
    animation: breathe 2.5s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
}

.reg-form{
    position: relative;
    z-index: 1;
    border-radius: 12px;
    margin-bottom: 2rem;
    padding: 35px;
    background: #f2f6fc;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}
.reg-form .cntry-code select{
    max-width: 30%;
}
.reg-form .form-group {
    margin-bottom: 1rem;
    position: relative
}
.reg-form .form-group .input-label{
    font-size: 16px;
    color: #b28f6f;
}
.reg-form .form-group .label-top {
    font-size: 14px;
    margin-bottom: 5px;
    color: #000000;
    font-weight: 500;
}
.reg-form .btn-blue{
    margin-top: 30px
}
.reg-form .form-group .form-control {
    height: 48px;
    font-size: 14px;
    background-color: #ffffff;
    border: 1.7px solid #ffffff;
    border-radius: 4px;
    color: #2a2834;
    padding: .375rem 1rem;
    font-weight: 400;
    letter-spacing: .5px
}
.reg-form .form-group textarea.form-control{
    height: 90px
}
.reg-form .form-check-label {
    font-size: 15px;
}
.reg-form .reg-title{
    color: #0063e6;
    font-size: 25px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 800;
}
.reg-form .reg-sub-title{

    text-align: center;

    margin-bottom: 30px;
}
.reg-form .reg-subtitle{
    color: #2a2834;
    margin-bottom: 20px;
    font-size: 15px;
}
.reg-form .form-group .form-control::placeholder {
    color:#adadad;
    opacity: 1;
}

.reg-form .form-group .form-control:-ms-input-placeholder {
    color: #adadad;
}

.reg-form .form-group .form-control::-ms-input-placeholder {
    color: #adadad;
}

.form-control:focus {
    box-shadow: none;
    border: 1.7px solid blue !important;
}
.form-ft-list{
    margin-top: 20px
}
.form-ft-list li {
    position: relative;
    padding-left: 21px;
    line-height: 1.5;
    font-size: 14px;
    color: #647489;
    font-weight: 400;
}

.form-ft-list li::before {
    content: "\F26C";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 14px;
    color: #43A047;
}
.confirm-p{
    font-size: 13px;
    color: #647489;
}
.join-p{
    color: #fff;
    font-size: 18px;
    position: relative;
    z-index: 1;
    margin-top: 40px
}
.join-list{
    position: relative;
    z-index: 1;
}
.join-list li{
    color: #ebebeb
}
.grow-box{
    background-color: #fdfdfe;
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid #d5d5d5;
    text-align: center;
    box-shadow: 1px 1px 10px #e6e6e6;
    transition: 0.5s;
    width: 100%;
    margin-bottom: 30px;
}
.grow-box:hover{
    transform: scale(1.05);
    box-shadow: 0 4px 28px #0063e654;
}
.grow-box .new-icon{
    font-size: 3rem;
    margin-bottom: 20px
}
.grow-box i {
    color: #ffcc00;
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
    animation: updown 2s ease-in-out infinite;
}
.grow-box.grow-box-award .year{
    color: #ffcc00;
    font-weight: 700;
    font-size: 20px;
    margin-top: 20px
}
.grow-box.grow-box-award span{
    background: #eff5fd;
    color: #0063e6c9;
}
.col-lg-4:nth-child(1) .grow-box i {
    animation-delay: 0s;
}
.col-lg-4:nth-child(2) .grow-box i {
    animation-delay: 0.3s;
}
.col-lg-4:nth-child(3) .grow-box i {
    animation-delay: 0.6s;
}

@keyframes updown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
.grow-box .grow-title{

    color: #0063e6;

    font-size: 1.5rem;

    line-height: 2rem;

    font-weight: 600;
}
.grow-box p{

    color: #64748b;

    margin-top: 20px;

    margin-bottom: 20px;
}
.grow-box span{

    background: rgb(255 204 0 / 20%);

    padding: 8px 15px;

    border-radius: 20px;

    font-size: 14px;

    font-weight: 400;

    margin-top: 14px;

    display: inline-block;

    width: 100%;
}
.grow-box.grow-box-img{
        padding: 20px;
}
.grow-box.grow-box-img .grow-img{
    border-radius: 10px;
    margin-bottom: 20px
}
.unique-row{
    margin-bottom: 50px;
}
.unique-row .unique-img{
    border-radius: 0.5rem;
}
.unique-box{
    padding: 3.4rem;
    border-radius: 0.5rem;
    box-shadow: 1px 1px 12px #00000017;
    transition: 0.5s;
}
.unique-box:hover{
    box-shadow: 0 4px 38px #0063e633;
    transition: 0.5s;
}
.unique-box h5{
    color: #0063e6;
    font-size: 1.8rem;
    line-height: 2rem;
    font-weight: 700;
}
.unique-box .unique-p{
    color: #64748b;
    margin-top: 30px;
    margin-bottom: 10px;
}
.unique-box.unique-blue{
    background-color: rgb(239 246 255);
}
.unique-box .point-box{
    background-color: #fff9;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-top: 20px;
}
.unique-box .point-box p{

    margin-bottom: 0px;

    color: #0063e6;

    font-weight: 500;

    font-size: 14px;

    position: relative;

    padding-left: 24px;
}
.unique-box .point-box p:before{
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background-color: #ffcc00;
    top: 7px;
    left: 8px;
}
.unique-box.unique-yellow{
    background-color: rgb(254 252 232);
}
.unique-box.unique-green{
    background-color: rgb(240 253 244);
}
.kinder-img{
    border-radius: 1.5rem;
    position: relative
}
.kinder-img:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, #3d8ffa, #0063e6);
    opacity: .3;
    height: 100%;
    border-radius: 1.5rem;
}
.kinder-img img{
    border-radius: 1.5rem;
}
.kinder-img-con{
    background: #fff;
    padding: 20px 15px;
    position: absolute;
    bottom: 8%;
    border-radius: .75rem;
    width: 92%;
    left: 4%;
    z-index: 2;
}
.kinder-img-con h5{

    color: #0063e6;

    font-weight: 600;

    margin-bottom: .5rem;

    font-size: 16px;
}
.kinder-img-con p{

    color: #64748b;

    margin-bottom: 0px;

    font-size: .875rem;

    line-height: 1.25rem;

    font-weight: 400;
}

.white-box{
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 38px #0063e633;
    transition: 0.5s;
    background-color: #fff;
}
.white-box h5{
    color: #0063e6;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.m-list{
    margin-bottom: 0px
}
.m-list li {
    position: relative;
    padding-left: 25px; /* space for the icon */
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: .3px;
    color: #8b98aa;
    font-weight: 400;
}

.m-list li::before {
    content: "\f26e"; /* Bootstrap check2 icon */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 20px;
    color: #ffcc00;
}
.kinder-stats{
    border-radius: 0.75rem;
    background-color: rgb(255 204 0 / 20%);
    padding: 1rem;
    text-align: center;
    margin-top: 20px
}
.kinder-stats h6{

    font-size: 1.5rem;

    line-height: 2rem;

    color: #0063e6;

    font-weight: 700;
}
.kinder-stats p{

    margin-bottom: 0px;

    font-size: .875rem;

    line-height: 1.25rem;

    color: #64748b;
}
.sub-gradient{
    background: linear-gradient(180deg, #f5f5f500 0%, #f0f3f5 100%);
}
.review-box{
    background-color: #fdfdfe;
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid #d5d5d5;
    box-shadow: 1px 1px 10px #e6e6e6;
    transition: 0.5s;
    width: 100%;
    margin-top: 30px;
}
.review-box:hover{
    transform: scale(1.05);
    box-shadow: 0 4px 28px #0063e654;
}
.review-box .star-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 1.3rem;
    color: #ffcc00;
    justify-content: center;
}

.review-box .star-rating span {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.review-box p{
    color: #64748b;
    line-height: 1.625;
    font-size: 15px;
    margin-top: 30px;
    margin-bottom: 10px;
    font-style: italic
}
parent-div hr{

}
.parent-div{

    display: flex;

    gap: 20px;

    align-items: center;
}
.parent-div .parent-icon{

    width: 48px;

    height: 48px;

    line-height: 48px;

    background: #0063e6;

    border-radius: 999px;

    text-align: center;

    display: flex;

    align-items: center;

    justify-content: center;
}
.parent-div .parent-icon h3{
    text-transform: uppercase;
    margin-bottom: 0px;

    color: #fff;

    font-size: 17px;

    font-weight: 400;
}
.parent-div span{

    font-size: .875rem;

    line-height: 1.25rem;

    color: #64748b;

    font-weight: 300;
}
.parent-div .parent-info h5{

    color: #0063e6;

    font-size: 16px;

    margin-bottom: 0;
}
.autority-sec{
    text-align: center
}
.autority-list{
    margin-top: 30px
}
.autority-list li{

}
.autority-list .auth-box{
    background: #eff5fd;
    padding: .75rem 1.5rem;
    border-radius: 0.75rem;
    color: #0063e6a6;
    font-weight: 600;
    margin-bottom: 15px
}
.certification-box{
    background-color: #fdfdfe;
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid #d5d5d5;
    text-align: center;
    box-shadow: 1px 1px 10px #e6e6e6;
    transition: 0.5s;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 50px;
}
.certification-box .ct-title {
    color: #0063e6;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
}
.cf-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    align-items: start;
}

.cf-grid .cf-grid-item {
    background: #eff5fd;
    padding: 14px 10px;
    border-radius: 4px;
    color: #0063e6;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
    border: 1px solid #acd0ff;
    margin-top: 15px;
}
/* footer */

.m-footer{
    padding-top: 60px;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background: #0063e6;
    background: -webkit-linear-gradient(to bottom, #0050b9, #0063e6);
    background: linear-gradient(to bottom, #0050b9, #0063e6);
}
.footer-link-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.ft-logo{
    width: 280px;
    margin-bottom: 20px
}
.ft-p{
    font-size: 15px !important
}
.footer-link-list li a{
    position: relative;
    color: #e5e5e5;
    margin-right: 30px;
    font-size: 15px;
    transition: all 0.5s ease-out;
}
.m-footer p{
    color: #e5e5e5;
    font-size: 14px;
    line-height: 1.9;
}
.m-footer h6{
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 50px;
    position: relative;
}
.m-footer h6:after{
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0px;
    height: 4px;
    background: #ffcc00;
    width: 50px;
}
.footer-middle{
    padding-bottom: 0px;
}
.footer-social-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-social-list a{
    color: #000000;
    font-size: 15px;
    transition: .2s;
    width: 34px;
    background: #ffcc00;
    height: 34px;
    border-radius: 100%;
    text-align: center;
    line-height: 36px;
    display: inline-block;
}
.footer-social-list a:hover{
    color: #ffcc00;
    background: #000000;
}
.footer-link-list li a{
    padding-bottom: 6px;
    margin-bottom: 7px;
    padding-left: 10px;
    display: inline-block;
}
.footer-link-list li a:hover{
    color: #ffcc00;
}
.footer-widget{
    margin-top: 10px;
    padding-bottom: 25px;
}
.footer-bottom{
    margin-bottom: 0px;
    margin-top: 0;
    padding: 15px 0;
    width: 100%;
    /* background-color: #00445b; */
}
.footer-bottom p{
    margin-bottom: 0px;
    font-size: 14px;
    color: #fff
}
.footer-bottom .container{
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 20px;
}
.footer-bottom p span{
    color: #ffcc00;
}
.footer-bar{
    border-bottom: 1px solid rgba(132,132,132,.17);
    margin-bottom: 60px;
    padding: 25px 0 22px;
}
.address-ul{
    color: #e5e5e5;
    font-size: 16px;
}
.address-ul li{
    padding-bottom: 6px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 26px;
    font-size: 15px;
    color: #e5e5e5;
}
.address-ul li i{
    color: #ffcc00;
    font-size: 15px;
    margin-right: 3px;
    position: absolute;
    left: 0;
    margin-top: 1px;
}
.footer-link-list li a:after{
    content: "";
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-left: 2px solid #ffcc00;
    border-bottom: 2px solid #ffcc00;
    top: 6px;
    left: -7px;
    -moz-transform: rotate(224deg);
    -o-transform: rotate(224deg);
    -ms-transform: rotate(224deg);
    -webkit-transform: rotate(224deg);
    transform: rotate(224deg);
    transition: all 0.5s ease-out;
}
.footer-link-list li a:hover:after{
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.btm-auth-list{
    margin-top: 10px
}
.btm-auth-list .auth-box{
    background: #ffffff30;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    border-radius: 8px;
    color: #ffcc00;
    border: 1px solid #ffffff30;
    font-size: 14px
}

.privacy-list {
    margin-top: 10px;
    margin-bottom: 20px
}

.privacy-list li {
    display: inline-block;
    position: relative;
    padding: 0 4px;
}

.privacy-list li:not(:first-child)::before {
    content: "•";
    position: absolute;
    left: -10px;
    color: #dadada;
}

.privacy-list li a {
    font-size: 14px;
    color: #dadada;
    text-decoration: none;
}

.privacy-list li a:hover {
    color: #ffcc00;
}
/* ================ MEDIA QUERIES ================ */
@media (max-width: 768px) {
    .kinder-img-con{
        position: relative;
        box-shadow: 0 4px 38px #0063e633;
        margin-top: 20px;
        margin-bottom: 20px;
        width: 100%;
        left: 0;
    }
    .cf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .navbar-brand img{
        width: 130px
    }
    .hero-sec{
        padding-top: 90px;
        padding-bottom: 50px
    }
    .hero-sec .hero-heading{
        font-size: 30px;
        line-height: 1.4;
    }
    .hero-sec .hero-content .hero-sub{
        font-size: 14px
    }
    .counter p{
        font-size: 12px !important
    }
    .counter .counter-title{
        font-size: 20px
    }
    .hero-sec .btn-ul{
        margin-top: 0px;
    }
    .hero-sec .btn-ul li{
        display: block;
        margin-right: 0px
    }
    .hero-sec .btn-ul .btn{
        width: 100%;
        margin-bottom: 20px;
        font-size: 14px;
        display: block;
    }
    .reg-form{
        padding: 15px;
        margin-bottom: 0px
    }
    .btn-blue{
        font-size: 14px
    }
    .main-heading{
        font-size: 30px;
        line-height: 1.4;
    }
    .section-space {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .sub-h {
        font-size: 14px;
        line-height: 1.35rem;
        margin-top: 5px;
        margin-bottom: 30px;
    }
    .grow-box{
        padding: 20px
    }
    .grow-box i {
        font-size: 30px;
        margin-bottom: 10px
    }
    .grow-box p {
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 14px;
    }
    .btn-margin-top {
        margin-top: 20px;
    }
    .unique-row {
        margin-bottom: 20px;
    }
    .unique-box{
        padding: 15px;
        margin-bottom: 20px
    }
    .unique-box h5{
        font-size: 20px
    }
    .unique-box .unique-p {
        font-size: 14px;
        margin-top: 10px;
    }
    .unique-box .point-box{
        margin-top: 10px;
    }
    .white-box{
        padding: 15px
    }
    .white-box h5{
        font-size: 20px
    }
    .grow-box .new-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    .btn-yellow{
        font-size: 14px
    }
    .counter{
        padding: 15px
    }
    .counter.counter2 .counter-title {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .review-box{
        margin-top: 20px;
        padding: 20px
    }
    .autority-list .auth-box{
        font-size: 14px
    }
    .hero-sec.hero-sec-bottom{
        padding-top: 50px
    }
    .hero-sec.hero-sec-bottom .btn-ul{
        margin-top: 20px
    }
    .join-list li {
        margin-top: 8px;
    }
    .auth-box{
        padding: 12px
    }
    .navbar-light.is-sticky .navbar-brand img {
    width: 120px;
    }
}
