/********** Template CSS **********/
:root {
    --primary: #1f99e8;
    --secondary: #32d05b;
    --light: #F5F8F2;
    --dark: #252C30;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}
.relative{
    position: relative;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/

.sticky-top {
    top: -150px;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075) !important;
    transition: .5s;
}


.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 10px 0;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

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

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.offcanvas-icons .navbar-toggler {
    display: block;
    border: transparent;
}
.offcanvas-icons .navbar-toggler:focus {
    box-shadow: none;
}
.offcanvas-body {
    padding: 35px;
    padding-top: 0;
}
/*.sticky-top.shadow-sm img {
    height: 50px;
}*/
.navbar .nav-item .dropdown-menu {
    background-color: #fff !important;
}
.navbar .nav-item .dropdown-menu .dropdown-item{
    color: #000;

}
.dropdown-item:hover, .dropdown-item:focus{
    background-color: #1f99e8 !important;
    color: #fff !important;
}
.ft-button .btn.btn-grad {
    width: 25%;
}
@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        width: 126px;
        height: 100px;
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 75px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}




/*** Header ***
.banner::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 560px;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-image: url("../images/banner-bg-img.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}
/*.banner::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top:30%;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-image: url("../images/header-shape.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}*/
.ch-slider .item{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.banner-ch-title h1 {
    font-weight: 800;
    font-size: 4rem;
    color: #fff;
    text-shadow: 2px 2px #000;
    opacity: .95;
}
.banner-ch-title p {
    font-size: 1.5rem;
    color: #fff;
}
.banner-ch-title h5{
    color: #1f99e8;
 }
/*** Header ***/
/*** Header ***/
.carousel-caption {
    top: -150px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 1;
    background-color: rgb(0 0 0 / 10%);
}
.carousel-item img{
    height: 100%;
    width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
}
.carousel-control-prev, .carousel-control-next {
    top: -150px;
}
@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/*** About ***/
.row-flex{
    display: flex;
    flex-wrap: wrap;
}
.about-cnt h1 {
    font-size: 2rem;
    font-weight: 400;
}
.about-cnt h5 {
    color: #1f99e8;
    font-weight: 800;
}
.about-cnt h1 span {
    font-weight: 300;
}
.about-card{
    border-radius: 4px;
    background: #edf9f6;
    padding:30px 35px;
    cursor: pointer;
    height: 100%;
    transition: .3s

}

.about-card:hover{
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}
.about-card h3 {
    font-weight: 600;
    font-size: 16px;
    min-height: 46px;
    display: flex;
    align-items: end;
    line-height:23px;
}
.about-card h3 span{
    font-family: 'Playfair Display', serif;

}
.line{
    position: relative;
}
.line::before{
    content: '';
    position: absolute;
    width: 20%;
    height: 2px;
    background-color: #1f99e8;
    top: 0;
    left: 0;
}
.line::after{
    content: '';
    position: absolute;
    width: 20%;
    height: 2px;
    background-color: #32d05b;
    top: 0;
    left:38px;
}
.about-card p {
    margin-top: 30px;
    margin-bottom: 0;
}

.btn-grad {
    background-image: linear-gradient(to right, #1f99e8 0%, #32d05b  51%, #32d05b  100%);
    margin-top: 30px;
    padding: 10px 25px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
    width: 75%;
  }

  .btn-grad:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }
  .btn-banner{
    box-shadow: none;
    width: 25%;
    border-radius: 0;
    background-color: #32d05b;
    background-image: none;
  }
  .btn-banner:hover{
    background-color: #1f99e8;
  }
  .btn-banner2{
    box-shadow: none;
    width: 25%;
    border-radius: 0;
    background-color: #1f99e8;
    background-image: none;
  }
  .btn-banner2:hover{
    background-color: #32d05b;
  }
  .our-value {
    background: linear-gradient(90deg, rgba(249,246,237,1) 0%, rgba(218,240,238,1) 50%, rgba(220,214,240,1) 100%);
    padding: 70px 0;
}
/*** About ***/

/***community**/
.comprehensive{
    width: 100%;
    height: 100%;
    background-image: url("../images/comprehensivey-bg-img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}
.commitment{
    width: 100%;
    height: 100%;
    background-image: url("../images/commitment-bg-img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}
.community{
    width: 100%;
    height: 100%;
    background-image: url("../images/community-bg-img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.community, .comprehensive{
    background-color: #f6f7f9;
}
.community-cnt h1{
    font-size: 3rem;
    font-weight: 400;
    line-height: 50px;
}
.community-cnt h1 span{
    font-weight: 700;
}
.community-cnt {
    background-color: #f6f7f9;
    padding: 100px 0;
}
/***different***/
.different{
    padding: 100px 0;
    background-color: rgb(31 153 232 / 8%);
}
.why-choose-inner{
    background-color: #fff;
    padding: 100px 0;
}
.different-cnt h1{
    font-size: 3rem;
    font-weight: 400;
    line-height: 50px;
}
.different-cnt h1 span{
    font-weight: 700;
}
.different-box, .register-box{
    position: relative;
    border: 1px solid  #ddd;
    height: 100%;
    margin-bottom: 20px;
    transition: .3s;

}
.different-box-cnt {
    padding: 20px;
}
.different-box-cnt p {
    margin-bottom: 0;
	text-align:justify;
}
.different-box:hover{
    background-color: #1f99e8;

}
.register-box:hover{
    background-color: #f7f7f7;
}
.register-box p{
    height: 70px;
}
.different-box:hover h6, .different-box:hover p{
    color: #fff;
}
.different-cnt h5{
    color: #1f99e8;
    font-weight: 400;
}
.bg-green{
    background-color: #32d05b;
    color: #fff;
}
.why-choose-inner .col-md-6 {
    margin-bottom: 70px;
}
.why-choose-icon img {
    position: absolute;
    background-color: #1f99e8;
    padding: 10px;
    width: 75px;
    height: 75px;
    top: -38px;
    left: 30px;
    border: 2px solid #fff;
}
.why-choose-inner .different-box-cnt {
    margin-top: 60px;
}
/***different***/

.value-cnt h1{
    font-size: 3rem;
    font-weight: 600;
    line-height: 50px;
    color: #222;
    position: relative;
    z-index: 10;
}
.value-listing {
    border-radius: 20px;
    padding: 40px;
    position: relative;
    z-index: 10;
    height: 100%;
    background: #fff;
    color: #222;
    border-bottom: 5px solid #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075)
}
.value-listing:hover{
    border-bottom: 5px solid #32d05b;


}
.letter-highlight {
    background-color: #32d05b;
    color: #fff;
    border-radius: 50%;
    padding: 10px;
    width: 80px;
    height: 80px;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin-left: auto;
    margin-right: auto;
    margin-top: -80px;
    margin-bottom: 16px;
    border: 2px dashed;

}
.value-dec p {
    color: #fff;
}
.value-cnt{
    margin-bottom: 100px;
}

/*******botton-section*******/
.botton-section::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-image: url("../images/banner-bg-img.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}
.botton-section {
    padding:75px 0px;
}
.botton-section-cnt h2 {
    padding-top: 20%;
}
/*******botton-section*******/


/*** Footer ***/
.footer {
    color: #B0B9AE;
}
.footer h4{
    color: #29334f;
    font-weight: 600;
    font-size: 1.5rem;
}
.footer .btn.btn-link, .footer p {
    display: block;
    margin-bottom: 15px;
    padding: 0;
    text-align: left;
    color: #29334f;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}


.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer a i, .top-social a i {
    color: #fff;
    background-color: #1f99e8;
    padding: 12px;
    width: 40px;
    height: 40px;
    text-align: center;
    transition: .5s;
}
.footer a i:hover, .top-social a i:hover {
    background-color: #32d05b;
    border-radius: 50%;
}

.footer a  i, .top-social a i {
    margin-right: 10px;
}
.menu-social a i {
    color: #fff;
    background-color: #32d05b;
    padding: 12px;
    width: 40px;
    height: 40px;
    text-align: center;
    transition: .5s;
}
.menu-social a  {
    padding: 5px;
}
.menu-social a i:hover {
    background-color: #1f99e8;
}
.ch-banner-image img {
    position:relative;
    display:block;
    width:100%;
    height:100%;
}
.banner_img1 {
    position:absolute;
    bottom:0px;
    left:0px;
    z-index:128;
}
.banner-ch-title {
    width: 100%;
    text-align: left;
    background-color: rgb(0 0 0 / 5%);
    padding: 50px;
}
.ch-banner-image{
    width: 50%;
}
.waves {
    position:relative;
    width: 100%;
    height:20vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: -16%;
    background: transparent;
    z-index: 1;
  }
  .botton-section .waves {
    margin-top: -5%;
    transform: scaleY(-1);
}
.why-choose-inner h1 {
    margin-bottom:40px !important;
}
.why-are-home .different-box {
    padding: 20px;
}
.why-are-home .col-md-6 {
    margin-bottom: 20px;
}
.why-are-home .different-box:hover{
    background-color: transparent;
    border: 1px solid #1f99e8;
    box-shadow: 3px 3px #1f99e8;
}
.why-are-home .different-box:hover h6, .why-are-home .different-box:hover p{
    color: #000;
}
.register-form .card {
    border-color: #32d05b;
}
.register-form .card-header {
    background-color: #32d05b;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}
.register-form .card-body .form-container {
    padding: 30px;
}
.form-btn {
    background-color: #1f99e8;
    border-radius: 0;

}
.form-btn:hover {
    background-color: #32d05b;
    color: #fff;
}
.form-btn2{
    background-color: #32d05b;
    border-radius: 0;
}
.form-btn2:hover {
    background-color: #1f99e8;
    color: #fff;
}
.register-form .form-container .form-control {
    border-radius: 0;
}

.register-form .form-control:focus, .register-form .form-check-input:focus {
    border-color: #1f99e8;
    box-shadow: none;
}
.register-form .form-check-input:checked {
    background-color: #1f99e8;
    border-color: #1f99e8;
}
/*************Mobile View*****************/
@media (max-width: 991.98px){
    .navbar .navbar-brand {
        width: auto;
        height: auto;
    }
    .navbar .navbar-nav {
        margin-top: 20px;
        border-top: 1px solid #EEEEEE;
    }

 .banner::after
    {
        display: none;
    }
    .banner::before {
        height: 100%;
    }
    .botton-section::before{
        height: 100%;
    }
}
@media (max-width: 767px){
    .banner-cnt {
        padding-top: 50px;
        padding-right: 0;
        padding-bottom: 50px;
    }
    .ch-banner-image{
        padding-bottom: 50px;
        height: 100% !important;
    }
    .banner-ch-title{
        background-color: transparent;
        padding: 20px;
    }
    .banner-ch-title h1 {
        font-size: 2rem;
    }
    .banner-ch-title p {
        font-size: 1rem;
    }
    .different-box{
        height: auto;
    }

    .ch-banner-image{
        width: 40% !important;
    }
    .btn-banner, .btn-banner2{
        width: auto;
        margin-top: 0px;
        font-size: 14px;
    }
    .about-cnt h1, .community-cnt h1, .different-cnt h1 {
        font-size: calc(1.375rem + 1.5vw);
        margin-bottom: 15px !important;
        line-height: 35px;
    }
    .about-card{
        height: auto;
        margin-bottom: 25px;
    }
    .community, .comprehensive, .commitment{
        background-image: none;

    }
    .community-cnt, .different, .why-choose-inner{
        padding: 30px 0;
    }
    .botton-section::before{
        background-image: linear-gradient(#fbf6ee, #dbeded, #e2d5ee);
    }
    .botton-section-cnt h2 {
        padding-top: 50px;
    }
    .botton-section-img img{
        margin-top: 0;
        margin-bottom: 50px;
    }
    .botton-section {
        padding: 25px 0px;
    }
    .banner-ch-title {
        padding-left: 0;
    }
    .carousel-control-prev-icon, .carousel-control-next-icon{
        border-radius: 0;

    }
    .carousel-control-prev, .carousel-control-next {
        display: block;
    }
    .carousel-control-prev {
        left: 70%;
    }
    .carousel-control-prev, .carousel-control-next {
        top: 200px;
        width: auto;
    }
    .carousel-control-next {
        margin-left: 60px;
        right: 0;
    }
    .why-choose-inner h1 {
        margin-bottom: 80px !important;
    }
    .register-box p{
        height: auto;
    }
    .value-listing{
        margin-bottom: 75px;
        height: auto;
    }
    .about-md{
        padding: 30px;
        border-radius: 0 !important;
    }
    .ft-button .btn.btn-grad {
        width: 50%;
    }
}

@media (max-width: 500px){
    .waves {
        margin-top: -40% !important;
    }
    .carousel-control-prev, .carousel-control-next {
        top: 350px;
    }
    .carousel-caption {
     top: 0;
    }

}

  /* Animation */

  .parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
  }
  .parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
  }
  .parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
  }
  .parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
  }
  .parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
  }
  @keyframes move-forever {
    0% {
     transform: translate3d(-90px,0,0);
    }
    100% {
      transform: translate3d(85px,0,0);
    }
  }
  /*Shrinking for mobile*/
  @media (max-width: 768px) {
    .waves {
      height:80px;
      min-height:40px;
      margin-top: -26%;
    }
  }
.banner_img2 {
    position:absolute;
    top: 10%;
    left: 20%;
    z-index:118;
}
.banner_img3 {
    position:absolute;
    top: -40px;
    right: 30%;
    z-index:98;
}
.banner_img4 {
    position:absolute;
    top: 15%;
    right: 5%;
    z-index:88;
}
.animation-left {
    -webkit-animation: left 5s linear 0s infinite normal forwards;
    animation: left 5s linear 0s infinite normal forwards
}

@-webkit-keyframes left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translateX(-40px);
        transform: translateX(-40px)
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translateX(-40px);
        transform: translateX(-40px)
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.animation-right {
    -webkit-animation: right 5s linear 0s infinite normal forwards;
    animation: right 5s linear 0s infinite normal forwards
}

@-webkit-keyframes right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translateX(40px);
        transform: translateX(40px)
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translateX(40px);
        transform: translateX(40px)
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.animation-up {
    -webkit-animation: up 5s linear 0s infinite normal forwards;
    animation: up 5s linear 0s infinite normal forwards
}

@-webkit-keyframes up {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes up {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.animation-down {
    -webkit-animation: down 5s linear 0s infinite normal forwards;
    animation: down 5s linear 0s infinite normal forwards
}

@-webkit-keyframes down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}



.ch-slider .owl-dot {
    width: 10px;
    height: 10px;
    background: #b0e1ff;
    border-radius: 50%;
    float: left;
    margin-right: 5px;
}
.ch-slider .owl-dots .active {
    width: 10px;
    height: 10px;
    background: #45c0b4;
    border-radius: 50%;
}








.bred_crumb {
    /*background-image: url(../images/bread_crumb_bg.png);
    /*background: var(--purple);
    background-repeat: no-repeat;
    background-size: cover;*/
    background-position: center;
    min-height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    margin-top:0px;
    background-size: 300% 300%;
    /* background-image: linear-gradient(
        -45deg,
        rgba(217,242,255,1) 0%,
        rgba(255,232,249,1) 25%,
        rgba(217,242,255,1) 51%,
        rgba(233,230,255,1) 100%
    ); */
    animation: AnimateBG 10s ease infinite;
    background: rgb(249,246,237);
    background: linear-gradient(90deg, rgba(249,246,237,1) 0%, rgba(218,240,238,1) 50%, rgba(220,214,240,1) 100%);
}

.bred_crumb::after {
    content: "";
    background-image: url(../images/banner-shape.svg);
    position: absolute;
    bottom: -7px;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 125px;
    background-position: center;
}

.bred_crumb .bred_text {
    text-align: center;
    z-index: 1000;
    position: relative;
}

.bred_crumb .bred_text h1 {
    color: var(--purple);
    font-size: 55px;
    font-weight: 700;
}

.bred_crumb .bred_text h1 + p {
    color: var(--body-text-purple);
    margin-top: -5px;
}

.bred_crumb .bred_text ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bred_crumb .bred_text ul li {
    margin: 0 5px;
    list-style: none;
}

.bred_crumb .bred_text ul li a, .bred_crumb .bred_text ul li span {
    color: var(--body-text-purple);
    font-size: 14px;
    transition: .4s all;
}

.bred_crumb .bred_text ul li a:hover {
    text-decoration: underline;
}

.bred_crumb .bred_text .search_bar {
    margin-top: 25px;
    position: relative;
    z-index: 1000;
}

.bred_crumb .bred_text .search_bar form .form-group {
    position: relative;
    max-width: 600px;
    height: 60px;
    margin: 0 auto;
}

.bred_crumb .bred_text .search_bar form .form-group .form-control {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    border: 1px solid var(--bg-purple);
    font-size: 16px;
    padding-left: 30px;
    color: var(--body-text-purple);
}

.bred_crumb .bred_text .search_bar form .form-group .form-control::placeholder {
    color: var(--body-text-purple);
}

.bred_crumb .bred_text .search_bar form .form-group .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--dark-purple);
}

.bred_crumb .bred_text .search_bar form .form-group .btn {
    position: absolute;
    right: 2px;
    top: 2px;
    background-color: var(--bg-purple);
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 100px;
    text-align: center;
    line-height: 56px;
    font-size: 23px;
    color: var(--text-white);
}

.bred_crumb .bred_text .search_bar form .form-group .btn:hover {
    background-color: var(--dark-purple);
}

.back-to-top {
    background-color: #32d05b;
    border-color: #32d05b;
}
.back-to-top:hover {
    background-color: #1f99e8;
    border-color: #1f99e8;
}

/* -----------Animation-Css-Start-------------- */

/* animation line wraper */
.anim_line {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.anim_line span {
    position: absolute;
    z-index: 99999;
    top: -275px;
    animation: star_down_one 6s infinite linear;
    opacity: 0;
}

.anim_line.dark_bg {
    max-width: 1170px;
}

.anim_line.dark_bg span {
    transform: rotate(180deg);
}

.anim_line span:first-child {
    left: -17%;
    animation-delay: 3s;
}

.anim_line span:nth-child(2) {
    left: 0%;
    animation-delay: 5s;
}

.anim_line span:nth-child(3) {
    left: 17%;
    animation-delay: 1s;
}

.anim_line span:nth-child(4) {
    left: 34%;
    animation-delay: 4s;
}

.anim_line span:nth-child(5) {
    left: 51%;
    animation-delay: 7s;
}

.anim_line span:nth-child(6) {
    left: 68%;
}

.anim_line span:nth-child(7) {
    left: 85%;
    animation-delay: 3s;
}

.anim_line span:nth-child(8) {
    left: 99%;
    animation-delay: 2s;
}

.anim_line span:nth-child(9) {
    left: 117%;
    animation-delay: 5s;
}

/* footer .top_footer .anim_line span:first-child {
    left: 5%;
}

footer .top_footer .anim_line span:nth-child(2) {
    left: 13%;
} */

@keyframes star_down_one {
    0% {
        opacity: 0;
        top: -250px;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}




/* --------Object-Moving-Animation-Css-Start----- */
.moving_animation {
    animation: moving_object 6s infinite linear;
}

.moving_position_animatin {
    position: relative;
    animation: moving_position_animatin 6s infinite linear;
    z-index: -1;
}

.about_app_section .about_img .screen_img img {
    animation-delay: 3s;
}

.modern_ui_section .ui_images .right_img img:nth-child(3) {
    animation-delay: 3s;
}

.modern_ui_section .ui_images .right_img img:nth-child(2) {
    animation-delay: 3s;
}

.modern_ui_section .ui_images .right_img img:nth-child(1) {
    animation-delay: 3s;
}

@keyframes moving_object {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes moving_position_animatin {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}


/* ------------Waves-Animation---------------- *
.waves-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 150px;
    height: 150px;
}

.waves {
    width: 150px;
    height: 150px;
    background: rgba(0, 0, 0, 1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    z-index: -1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    position: absolute;
    top: 0;
}

.wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    position: absolute;
    top: 0;
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}



/*------Header Btn Animation------*/
@keyframes pulse-blue-small-sm {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 73, 242, 0.7);
    }

    100%,
    30% {
        box-shadow: 0 0 0 12px transparent
    }
}

@keyframes pulse-blue-medium-sm {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 73, 242, 0.4);
    }

    100%,
    30% {
        box-shadow: 0 0 0 20px transparent
    }
}


/* Inner Page banner shape animation */
.bred_crumb .banner_shape1, .banner_shape2, .banner_shape3 {
    position: absolute; }

.bred_crumb .banner_shape1 {
    top: 200px;
    left: 15%;
    animation: mymove 10s infinite;
}

.bred_crumb .banner_shape2 {
    top: 100px;
    right: 10%;
    animation: mymove 5s infinite;
}

.bred_crumb .banner_shape3 {
    top: 350px;
    right: 20%;
    animation: mymove 3s infinite;
}


/* CTA section Shape animation */

.query_section .banner_shape1, .banner_shape2, .banner_shape3 {
    position: absolute; }

.query_section .banner_shape1 {
    top: 200px;
    left: 15%;
    animation: mymove 10s infinite;
}

.query_section .banner_shape2 {
    top: 100px;
    right: 10%;
    animation: mymove 5s infinite;
}

.query_section .banner_shape3 {
    top: 350px;
    right: 20%;
    animation: mymove 3s infinite;
}


@keyframes mymove {
  50% {transform: rotate(180deg);}
}


.inner-banner {
    float: left;
    width: 100%;
    margin-top: -110px;
    position: relative;
}
.text-justify{ text-align: justify; }
h1 {
    font-size: 3rem;
    font-weight: 400;
}
h1 span {
    font-weight: 700;
}


.wrap{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
    /* max-width: 1000px; */
    margin: auto;
    margin-top: 50px;
}
.box{
    background: #e0ffe9;
    border-radius: 10px;
}
.box img{
    width:100%;
    /* height: 300px; */
}
.social{
    margin-top: -270px;
    background: #65b9ef;
    border-radius: 0 20px 20px 0;
    position: absolute;
}
.box a{
    display: flex;
    margin: 5px;


    position: relative;
    text-decoration: none;
    font-size:15px;
    color:#fff;
    padding: 5px;
}
.box .fa{
    line-height: 30px;
    width:30px;
    height: 30px;
    position: relative;
    text-align: center;

}
.text {
    padding: 15px;
}
.about-md-img img{
    border-radius: 30px;
    margin-top: 3rem;
}
.about-md div{
    max-width: 458px;
    text-align: justify;
}
.about-md{
    border-radius: 30px;
    background: #209ae6;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}
.about-md h2{
    color: #fff;
}
.about-md h6{
    color: #fff;
}

.abt-why .line::after {
    content: '';
    position: absolute;
    width: 20%;
    height: 2px;
    background-color: #32d05b;
    top: 0;
    left: 35px;
}


.contact_us_form {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0
}

.contact_us_form input, .contact_us_form textarea {
    color: #707070;
    font-size: 14px;
    font-weight: 400;
    padding-left: 20px;
    background: #f9f9f9;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: none
}

.contact_us_form input,
.contact_us_form select {
    height: 50px;
    border: 1px solid #cdcdcd;
    border-radius: 0
}

.contact_us_form textarea {
    height: 116px;
    border: 1px solid #cdcdcd;
    border-radius: 0
}

.swp_icon_box, .swp_last {
    background-image: url(../images/swp_bg.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: 50% 0;
    background-repeat: no-repeat;
    position: relative
}

.flex-contact{
    display: flex;
    align-items: center;
}
.flex-contact i{
    font-size: 27px;
    margin-right: 15px;
    color: #209ce1;
}

.flex-contact a {
    color: #000;
}
.row-contact{-webkit-box-shadow: 1px -1px 5px 0px rgba(0,0,0,0.2);-moz-box-shadow: 1px -1px 5px 0px rgba(0,0,0,0.2);box-shadow: 1px -1px 5px 0px rgba(0,0,0,0.2);float: left;width: 100%;padding: 35px;margin-bottom: 55px;background: #fff;border-radius: 10px;}





/* Styling for progress bar */
.progress {
    height: 20px;
}

/* Styling for Toastr notifications */
#registrationNotifications {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    max-width: 300px;
}


/* Apply styles to the form container */
.form-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Style form headings */
.form-container h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Style form labels */
.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Style form input fields */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Style form buttons */
.form-group button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

.form-group button:hover {
    background-color: #0056b3;
}

/* Add space between form elements */
.form-group {
    margin-bottom: 30px;
}

/* Style form error messages */
.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .form-container {
        max-width: 100%;
    }
}


section.different .box {
    cursor: pointer;
}

.link_color
{
	color: #000 !important;
}


.js-cookie-consent {
        background-image: linear-gradient(to right, #1f99e8 0%, #32d05b63 51%, #32d05b70 100%);
        margin-top: 30px;
        padding: 10px 25px;
        text-align: center;
        text-transform: uppercase;
        transition: 0.5s;
        background-size: 200% auto;
        color: white;
        box-shadow: 0 0 20px #eee;
        border-radius: 10px;
        display: block;
        width: 100%;
        z-index: 90;

}
.floating-button {
    position: fixed;
    bottom: 20px;
    /* Adjust as needed */
    right: 20px;
    /* Adjust as needed */
    z-index: 1000;
    /* Ensure it's above other content */
}

.rotate-horizontal {
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(180deg);
    transition: transform 0.3s ease;
    /* Add transition for smooth animation */
}

.rotate-horizontal .btn {
    transform: rotateY(180deg);
    /* Rotate the text */
}

.rotate-horizontal:hover {
    transform: perspective(1000px) rotateY(0deg);
    /* Rotate back to normal on hover */
}

.rotate-horizontal:hover .btn {
    transform: rotateY(0deg);
    /* Rotate the text back to normal on hover */
}
