/*
[Master Stylesheet] 
Project: Kids School Html
-------------------------------------------------------------------*/

/********************************************************
1. body start
 *******************************************************/
:root {
    --pp-theme-color: rgb(61 186 225);;
    --pp-white-color: #ffffff;
    --pp-black-color: #000000;
    --pp-grey-color: #8c919d;
    --pp-bg-color: #eef4f7;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-family: "DynaPuff", system-ui;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

a,
a:hover,
a:focus {
    text-transform: capitalize;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "DynaPuff", system-ui;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
    word-break: break-word;
}

img {
    max-width: 100%;
}

input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus,
.form-control:focus {
    outline: none !important;
    box-shadow: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

p {
    margin: 0px;
    word-break: break-word;
    color: #898989;
    font-weight: 400;
    font-size: 19px;
    line-height: 34px;
    font-family: "Open Sans", sans-serif;
}

.container {
    max-width: 1500px;
}

.pp-heading {
    font-size: 30px;
    color: var(--pp-black-color);
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
}

.pp-paragraph {
    font-size: 15px;
    color: #222222;
    font-weight: 500;
    line-height: 25px;
}

/* button css start*/
.pp-btn {
    position: relative;
    min-width: 150px;
    display: inline-block;
    text-align: center;
    padding: 18px 45px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: "Inter";
    font-weight: 600;
    text-transform: capitalize;
    font-size: 16px;
    color: var(--pp-theme-color);
    background-color: var(--pp-white-color);
    border-radius: 40px;
    z-index: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.pp-btn:hover {
    background: #ff6699;
    color: var(--pp-white-color);
}

button.pp-btn {
    border: none;
}

/* dark btn */
.pp-dark-btn {
    position: relative;
    min-width: 190px;
    display: inline-block;
    text-align: center;
    padding: 18px 50px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: "Inter";
    font-weight: 600;
    text-transform: capitalize;
    font-size: 16px;
    color: var(--pp-white-color);
    background-color: var(--pp-theme-color);
    border-radius: 40px;
    z-index: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.pp-dark-btn:hover {
    background: #ff6699;
    color: var(--pp-white-color);
}

/* dark btn */
/* button css end*/

/* logo */
.pp-navbar-menu .responsive-logo a img {
    display: none;
}

.pp-toggle-btn {
    display: none;
}

/* logo */

/* header section css start */
.pp-header-wrapper {
    position: absolute;
    top: 0px;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 9;
    background-color: #fff;
}

.pp-header-wrapper::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    bottom: -10px;
    left: 0;
    background: url(/assets/images/header_png.png) center center repeat-x;
    z-index: 1;
}

.pp-header-wrapper .container-fluid {
    max-width: 100%;
    padding: 0;
    border-radius: 0px;
}

.pp-header-wrapper.pp-header-fixed {
    position: fixed;
    background-color: var(--pp-white-color);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.7s ease-in-out;
    -webkit-animation: slideInDown .7s;
    -moz-animation: slideInDown 0.7s;
    -ms-animation: slideInDown 0.7s;
    -o-animation: slideInDown 0.7s;
    animation: slideInDown 0.7s;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
}

.pp-header-parent {
    background-color: var(--pp-white-color);
    border-radius: 5px;
    padding: 0px 0 0px 40px;
}

.pp-header-inner {
    display: flex;
    align-items: center;
}

.pp-brand-logo a img {
    max-width: 191px;
    height: 35px;
    object-fit: contain;
}

.pp-navbar-menu {
    margin-left: auto;
}

.pp-navbar-menu ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 40px;
}

.pp-navbar-menu ul li a {
    color: var(--pp-black-color);
    font-size: 16px;
    font-weight: 500;
    padding: 20px 0;
    display: inline-block;
    position: relative;
}

.menu li a:hover,
.menu .active a {
    color: var(--pp-theme-color);
}

/* header section css end */
/* banner section css start */
.pp-banner-wrapper {
    height: calc(100vh - 50px);
    background-image: url(../images/banner.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 250px;
    padding-top: 155px;
    position: relative;
    z-index: 1;
}

.banner_div_img {
    position: absolute;
    bottom: -90px;
    left: 24%;
    /* right: 20%; */
    max-width: 1045px;
}

.bg_banner1 {
    background-image: url(../images/banner2.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.pp-banner-left {
    /* padding-top: 165px; */
    text-align: center;
}

.pp-banner-tp-heading {
    display: inline-block;
}

.pp-banner-left h4 {
    background-color: var(--pp-white-color);
    border-radius: 40px;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ed5ab0;
    padding: 15px 20px 10px 20px;
    min-width: 300px;
    display: inline-block;
    text-align: center;
}

.pp-banner-left h1 {
    font-size: 62px;
    color:#2b2b2b;
    font-weight: 600;
    text-transform: capitalize;
    margin: 15px 0 10px 0;
}

.pp-banner-left h1 span{
    color: #ffffff;
}

.pp-banner-left p {
    font-size: 16px;
    line-height: 26px;
    color: var(--pp-white-color);
    font-weight: 400;
    max-width: 561px;
    width: 100%;
    margin: auto;
}

.pp-banner-btn {
    display: flex;
    align-items: center;
    margin-top: 15px;
    justify-content: center;
}

.pp-main-btn {
    max-width: 200px;
    width: 100%;
}

.pp-banner-video-btn {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.pp-banner-video-btn p {
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--pp-white-color);
    font-weight: 700;
    text-transform: uppercase;
    max-width: 190px;
    margin-right: 20px;
}

.pp-banner-video-btn span {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--pp-white-color);
    border: 6px solid rgba(86, 204, 213, 0.79);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    animation: shadow-pulse 1.3s infinite alternate-reverse both;
}

.appointment-form {
    padding: 60px;
    border-radius: 50px;
    background-color: #fef5ff;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.wpcf7-form-control-wrap {
    position: relative;
}

.appointment-form select,
.appointment-form .form-select,
.appointment-form .form-control {
    height: 60px;
    border: none;
    border-radius: 30px;
}

.appointment-form .vs-btn {
    width: 100%;
    display: block;
    height: 60px;
}

.wave-btn {
    transition: 0.21s;
}

.vs-btn {
    background-color: #ed5ab0;
    color: #fff;
    font-size: 15px;
    padding: 10px 33px;
    line-height: 1.4;
    text-transform: capitalize;
    min-width: 150px;
    text-align: center;
    border-radius: 9999px;
    border: none;
    display: inline-block;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.btn-hover {
    z-index: -1;
    position: absolute;
    left: -1px;
    top: -1px;
    width: 110%;
    height: 110%;
    border-radius: 50px;
}

.btn-hover .btn-hover-inner {
    position: relative;
    display: block;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}


.btn-hover .part {
    position: absolute;
    top: -5px;
    width: 25%;
    height: 100%;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.7);
    transition: transform 0.21s !important;
    background: #88c90d;
    border-color: var(--secondary-color);
}

.btn-hover .part:nth-child(1) {
    left: 0;
    transition-delay: 0s !important;
}

.btn-hover .part:nth-child(2) {
    left: 30%;
    transition-delay: 0.07s !important;
}

.btn-hover .part:nth-child(3) {
    left: 60%;
    transition-delay: 0.14s !important;
}

.btn-hover .part:nth-child(4) {
    left: 90%;
    transition-delay: 0.21s !important;
}

.btn-hover .part {
    position: absolute;
    top: -5px;
    width: 25%;
    height: 100%;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.7);
    transition: transform 0.21s !important;
    background: #88c90d;
    border-color: #88c90d;
}

.wave-btn:hover .part,
.wave-btn:active .part,
.wave-btn:focus .part {
    transform: translateZ(0) scale(1.7) !important;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(255, 255, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgb(255, 255, 255, 0.3);
    }
}

.pp-banner-video-btn span img {
    max-width: 14px;
    height: 18px;
    object-fit: contain;
}

.appointment-section {
    padding: 100px 0px;
}

/* banner section css end */

/* about section css start */
.pp-about-wrapper {
    padding: 80px 0;
    background-color: var(--pp-white-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.pp-about-heading {
    margin-bottom: 50px;
}

.pp-about-parent-box {
    transition: all 0.3s ease-in-out;
}

.pp-about-box {
    padding: 40px 17px 65px 18px;
    border-radius: 10px;
    background-color: #f7fcff;
    transition: all 0.3s ease-in-out;
}

.pp-about-inner {
    text-align: center;
    display: flex;
    align-items: center;
}

.pp-about-inner span {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    /* box-shadow: -9.804px 15.096px 10px rgba(38, 171, 250, 0.2); */
    background-color: rgb(61 186 225);;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;

    padding: 5px;
}

.pp-about-inner span img {
    max-width: 34px;
    height: 30px;
    object-fit: contain;
}

.pp-about-inner span::before {
    content: '';
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: transparent;
    position: absolute;
    z-index: 0;
    border: 2px dashed #ed5ab0;
}

.pp-about-inner h5 {
    font-size: 20px;
    color: #38b5ff;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    margin-top: 30px;
}

.pp-about-inner .pp-paragraph {
    margin-top: 24px;
}

.pp-about-btn {
    text-align: center;
    margin: -25px auto 0 auto;
    transition: all 0.3s ease-in-out;
}

.pp-about-btn a {
    display: inline-block;
    background-color: #5fc3ff;
    border-radius: 22px;
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

.pp-about-parent-box:hover .about-first-box {
    box-shadow: 1.5px 3.99px 27px 0px rgba(38, 171, 250, 0.2);
}

.pp-about-parent-box:hover .pp-about-inner span {
    transform: translateY(-10px);
}

.pp-about-parent-box:hover .pp-about-inner span img {
    transform: rotate(360deg);
}

.pp-about-parent-box:hover .pp-about-btn a {
    color: var(--pp-white-color);
}

/* about second box */
.about-second-box {
    background-color: #fffcf6;
}

.pp-about-parent-box:hover .about-second-box {
    box-shadow: 1.5px 3.99px 27px 0px rgba(247, 200, 111, 0.2);
}

.about-second-box span {
    box-shadow: -9.804px 15.096px 10px rgba(247, 200, 111, 0.2);
    background-color: #ffcd71;
}

.about-second-box h5 {
    color: #ffb526;
}

.about-second-btn a {
    background-color: #ffb526;
}

/* about third box */
.about-third-box {
    background-color: #fff7f9;
}

.pp-about-parent-box:hover .about-third-box {
    box-shadow: 1.5px 3.99px 27px 0px rgba(255, 143, 166, 0.2);
}

.about-third-box span {
    box-shadow: -9.804px 15.096px 10px rgba(255, 143, 166, 0.2);
    background-color: #ff5e80;
}

.about-third-box h5 {
    color: #ff5e80;
}

.about-third-btn a {
    background-color: #ff5e80;
}

/* about fourth box */
.about-fourth-box {
    background-color: #f2fdff;
}

.pp-about-parent-box:hover .about-fourth-box {
    box-shadow: 1.5px 3.99px 27px 0px rgba(16, 211, 246, 0.2);
}

.about-fourth-box span {
    box-shadow: -9.804px 15.096px 10px rgba(16, 211, 246, 0.2);
    background-color: #42e2ff;
}

.about-fourth-box h5 {
    color: #42e2ff;
}

.about-fourth-btn a {
    background-color: #42e2ff;
}

/* about box end */
.pp-about-botm-parent {
    padding-top: 95px;
}

.pp-about-right .pp-heading {
    text-align: left;
}

.pp-about-right .pp-paragraph {
    color: var(--pp-grey-color);
    margin: 28px 0 40px 0;
}

.pp-about-left-img img {
    max-width: 520px;
    height: 579px;
    object-fit: contain;
    animation: up-down 2.5s infinite alternate-reverse both;
}

/* about section css end */
/* counter section css start */
.pp-counter-wrapper {
    background-color: #00162a;
    padding: 140px 0;
    width: 100%;
    position: relative;
}

.footer-shape {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    color: #ffffff;
    z-index: 1;
}

.footer-shape1 {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    z-index: 1;
}

.footer-shape1 .footer-wave-shape {
    width: 150%;
    height: 30px;
}

.footer-shape .footer-wave-shape {
    transform: rotate(180deg);
    width: 130%;
    height: 30px;
}

.pp-count {
    display: flex;
    align-items: center;
}

.pp-count span {
    width: 90px;
    height: 90px;
    border-radius: 45px;
    background-color: var(--pp-white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.pp-count span img {
    max-width: 35px;
    height: 35px;
    object-fit: contain;
}

.counting {
    font-size: 38px;
    color: #3dbae1;
    font-weight: 500;
}

.profile_img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}
.profile_img img{
    width: 100%;
}
.profile_co{
    font-size: 12px;
    color:#ed5ab0;
}

.anker_tag{
    color:#39b7dd;
}

.pp-count-heading {
    /* min-width: 220px; */
    height: 40px;
    display: inline-block;
    text-align: center;
    /* background-color: rgba(255, 255, 255, 0.19); */
    border-radius: 20px;
    /* padding: 10px 15px; */
    /* margin: 10px auto 0 auto; */
}

.pp-count-heading h5 {
    font-size: 16px;
    font-weight: 300;
    color: var(--pp-white-color);
    text-transform: uppercase;
}

.pp-count:hover span {
    transform: translateY(-10px);
}

/* counter section css end */
/* activity section css start */
.pp-activity-wrapper {
    padding: 80px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
}

.pp-activity-wrapper .container {
    max-width: 1400px;
}

.pp-activity-heading {
    padding-bottom: 50px;
}

.pp-activity-box {
    display: flex;
    gap: 30px;
    border-radius: 30px;
    /* box-shadow: 0 0 15px rgba(52, 124, 222, 0.1); */
    background-color: var(--pp-white-color);
    padding: 25px 25px 25px 25px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.pp-activity-box:hover {
    transform: translateX(10px);
}

.pp-activity-inner h3 {
    font-size: 22px;
    color: var(--pp-black-color);
    font-weight: 700;
    text-transform: capitalize;
}

.pp-activity-inner .pp-paragraph {
    margin: 10px 0;
    color: var(--pp-grey-color);
}

.pp-activity-inner a.readmore {
    font-size: 15px;
    color: var(--pp-theme-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.pp-activity-inner img {
    max-width: 17px;
    height: 10px;
    object-fit: contain;
}

.pp-activity-inner a.readmore:hover {
    letter-spacing: 2px;
}

.pp-activity-inner img {
    margin-left: 5px;
}

.pp-activity-btn .pp-dark-btn {
    margin: 40px auto 0 auto;
}

/* activity section css end */
/* gallery section css start */
.pp-gallery-wrapper {
    padding: 140px 0;
    background-color: rgb(254 246 233);
    ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
}

.pp-gallery-heading {
    padding-bottom: 30px;
}

.pp-gallery-wrapper .content {
    display: flex;
    margin: 30px -15px 0 -15px;
}

.single-content {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.pp-gallery-wrapper .single-content img {
    width: 270px;
    height: 260px;
    object-fit: cover;
}

.pp-gallery-wrapper .filters {
    width: 100%;
    text-align: center;
}

.pp-gallery-wrapper .filter-button-group ul {
    padding: 20px 0;
}

.pp-gallery-wrapper .filter-button-group ul li {
    display: inline-block;
    margin-right: 5px;
}

.pp-gallery-wrapper .filter-button-group ul li:last-child {
    margin-right: 0;
}

.pp-gallery-wrapper .filter-button-group ul li a {
    font-size: 16px;
    color: var(--pp-grey-color);
    font-weight: 400;
    text-transform: capitalize;
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.pp-gallery-wrapper .filter-button-group ul li a:hover,
.pp-gallery-wrapper .filter-button-group ul li.active a {
    background-color: var(--pp-theme-color);
    color: var(--pp-white-color);
    border-radius: 20px;
}

.pp-gallery-btn .pp-dark-btn {
    margin: 40px auto 0 auto;
}

.pp-gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    height: 260px;
}

.pp-gallery-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: all 0.5s;
}

.gallery-box-inner:hover .pp-gallery-img img {
    transform: scale(1.15);
}

/* gallery section css end */
/* blog section css start */
.pp-blog-wrapper {
    padding: 80px 0;
    background-color: var(--pp-white-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
}

.pp-blog-heading {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.pp-blog-heading .pp-paragraph {
    margin-left: auto;
    color: var(--pp-theme-color);
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.pp-blog-heading img {
    max-width: 17px;
    height: 10px;
    object-fit: contain;
    margin: 2px 0 0 5px;
}

.pp-blog-heading .pp-paragraph:hover {
    letter-spacing: 2px;
}

.pp-blog-content {
    position: relative;
}

.pp-blog-img img {
    border-radius: 10px 10px 0 0;
    height: 275px;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.pp-blog-img {
    overflow: hidden;
    position: relative;
}

.pp-blog-img_frame {
    background-image: url(../images/frame.png);
    background-repeat: no-repeat;
    /* background-position: 100%; */
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}


.pp-blog-box:hover .pp-blog-img img {
    transform: scale(1.2)rotate(5deg);
}

.pp-blog-content .pp-dark-btn {
    font-size: 11px;
    font-weight: 300;
    position: absolute;
    right: 25px;
    left: 25px;
    bottom: -20px;
    border-bottom: 0px;
    padding: 10px 20px;
    min-width: 100px;
}

.pp-blog-content {
    /* box-shadow: 0 0 15px rgba(52, 124, 222, 0.1);
    background-color: var(--pp-white-color); */
    border-radius: 0 0 10px 10px;
    padding: 25px 19px 20px 20px;
    position: relative;
}

.pp-blog-content h4 {
    font-size: 20px;
    color: var(--pp-black-color);
    text-transform: capitalize;
}

.pp-blog-content .pp-paragraph {
    color: var(--pp-grey-color);
    margin-top: 8px;
}

.pp-blog-footer {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.pp-blog-footer-info {
    display: flex;
    align-items: center;
}

.pp-blog-footer-info:last-child {
    margin-left: auto;
}

.pp-blog-footer-info a {
    font-size: 14px;
    color: var(--pp-grey-color);
    margin-left: 10px;
}

.pp-blog-footer-info img {
    max-width: 21px;
    height: 14px;
    object-fit: contain;
}

/* blog section css end */


.about-img img {
    transition: .5s;
}

.rounded-circle {
    border-radius: 50% !important;
}

.bg-light {
    background-color: #FFF5F3 !important;
}

.p-3 {
    padding: 1rem !important;
}

.w-75 {
    width: 75% !important;
}

/* client section css start */
.pp-client-wrapper {
    padding: 140px 0 80px;
    background-color: #dbeaf7;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
}

.pp_overlay-image {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    transform: rotate(180deg);
}

.pp_overlay-image2 {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
}

.pp_overlay-image_banner {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
}


.animation1 {
    position: absolute;
    top: -279px;
    right: 0;
}

.animation2 {
    position: absolute;
    left: 50px;
    animation: upDown 3s infinite ease-in-out;
}

.animation3 {
    position: absolute;
    left: 14px;
    bottom: 10px;
    animation: rotate 5s infinite ease-in-out;
}

.animation4 {
    position: absolute;
    left: 34px;
    animation: zoomInOut 3s infinite ease-in-out;
}

.animation_rainbow {
    position: absolute;
    left: -74px;
    top: -15px;
    animation: zoomInOut 3s infiniteease-in-out;
}

.animation_rainbow img {
    transform: rotate(90deg);
}

.about_img_clss {
    width: 100%;
    border-radius: 50%;
    background-color: #fff;
    transition: ease-in-out .4s;
}

.about_img_clss:hover {
    background-color: #5fc3ff
}

.about_img_clss1 {
    width: 450px !important;
    height: 415px;
    padding: 5px;
}

.about_img_clss2 {
    width: 216px;
    height: 195px;
}

.tor_gallery_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 30px;
    column-gap: 30px;
}

.gallery_horizontal {
    grid-row-end: span 2;
}

.gallery_vertical {
    grid-column-end: span 2;
}

.tor_gallery_box {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    max-height: 308px;
}

.tor_img_wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    max-height: 308px;
    padding: 5px;
    border: 2px dashed #76b1e5;
    border-radius: 20px;

}

.tor_img_wrap>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    border-radius: 20px;
}

.tor_gallery_box:hover .tor_g_heading_wrap {
    transform: scale(1, 1);
}

.tor_gallery_box:hover .tor_img_wrap>img {
    transform: scale(1.15);
    transform-origin: center;
    -webkit-filter: brightness(0.7) contrast(1.1) saturate(1.1) blur(2px);
    filter: brightness(0.7) contrast(1.1) saturate(1.1) blur(2px);
}

.tor_g_heading_wrap {
    position: absolute;
    left: 10px;
    padding: 12px 15px;
    transition: all 0.3s;
    top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0000007a;
    border-radius: 5px;
    transform: scale(0, 1);
    transform-origin: left;
}

.tor_g_heading {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
}

.gallery_horizontal .tor_gallery_box,
.gallery_horizontal .tor_img_wrap {
    max-height: 621px;
}

.gallery_vertical .tor_gallery_box,
.gallery_vertical .tor_img_wrap {
    max-width: 845px;
    max-height: 308px;
}

@media (min-width: 992px) {

    .tor_gallery_box,
    .tor_img_wrap {
        max-width: 408px;
    }

    .gallery_horizontal .tor_gallery_box,
    .gallery_horizontal .tor_img_wrap {
        max-height: 646px;
    }

    .gallery_vertical .tor_gallery_box,
    .gallery_vertical .tor_img_wrap {
        max-width: 845px;
        max-height: 308px;
    }

}


.animation7 {
    position: absolute;
    left: 50px;
    top: -50px;
    animation: zoomInOut 3s infinite ease-in-out;
}

.animation7 img {
    width: 70px;
}

.animation5 {
    position: absolute;
    left: 70px;
    top: -48px;
    animation: rotate 5s infinite ease-in-out;
    z-index: 99;
}

.animation6 {
    position: absolute;
    top: 10px;
    right: 44px;
    animation: rotate 5s infinite ease-in-out;
}
.animation11{
    position: absolute;
    left: 30px;
    top: 160px;
    animation: zoomInOut 5s infinite ease-in-out;
    z-index: 99;
}

.animation12{
    position: absolute;
    right: 50px;
    top: 200px;
    animation: zoomInOut 5s infinite ease-in-out;
    z-index: 99;
}

.animation13{
    position: absolute;
    right: 150px;
    bottom: 50px;
    animation: rotate 5s infinite ease-in-out;
    z-index: 99;
}

.animation14{
    position: absolute;
    left: 50px;
    bottom: 150px;
    animation: upDown 5s infinite ease-in-out;
    z-index: 99;
}
.animation14 img{
    width: 125px;
    transform: rotate(73deg);
}

.ani_img img{
    width: 70px;
    
}

.animation15 {
    position: absolute;
    top: -70px;
    right: 44px;
    z-index: 99;
    animation: zoomInOut 3s infinite ease-in-out;
}

.animation15 svg {
    width: 230px;
    height: 250px;
}

.animation_hands {
    position: absolute;
    top: -205px;
    right: -27px;
}

.animation_hands img {
    width: 150px;
}

.form_banner h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.circle_box {
    text-align: center;
}

.circle_box h4 {
    margin-top: 15px;
    color: #3b3b3b;
}

.circle {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    background: #85e8ff;
    border-radius: 50%;
    box-shadow: 0 -50px 30px rgba(0, 0, 0, 0.3) inset;
    transition: ease-in-out .4s;
}

.circle svg path {
    fill: #000000;
}


.circle:hover {
    animation: steady 0.5s infinite;
}

@keyframes steady {
    0% {
        transform: scale (1, 1);
    }

    75% {
        transform: scale(0.95, 1.05);
    }
}





@keyframes zoomInOut {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes upDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(0px) rotate(360deg);
    }
}



.pp-client-box {
    background-color: var(--pp-white-color);
    padding: 30px 30px 35px 30px;
    border-radius: 10px;
    margin-top: 75px;
    transition: all 0.3s ease-in-out;
    position: relative;
    background-color: #ffffff;
    border-radius: 30px;
    max-width: 1200px;
    margin: 10px auto;
    content: "";
    border: 2px dashed #76b1e5;
}

.pp-client-box:after {
    background-color: #ffffff;
    border-radius: 30px;
    content: "";
    position: absolute;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    left: -15px;
    z-index: -2;
    top: -15px;
}

.pp-client-heading {
    align-items: center;
    text-align: center;
    width: 280px;
}

.pp-client-name {
    margin-top: 15px;
}

.pp-client-name h6 {
    font-size: 18px;
    font-weight: 500;
    color: var(--pp-black-color);
    transition: all 0.3s ease-in-out;
}

.pp-client-name p {
    font-size: 14px;
    font-weight: 500;
    color: var(--pp-theme-color);
}

.pp-client-text {
    margin-top: 30px;
    position: relative;
}

.pp-client-text p {
    font-size: 18px;
    border-radius: 10px;
    color: var(--pp-grey-color);
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}

.pp-client-box-inner {
    display: flex;
    gap: 20px;
}

.pp-qoute-img {
    position: absolute;
    bottom: -25px;
    right: -6px;
}

.pp-qoute-img span img {
    max-width: 59px;
    height: 51px;
    object-fit: contain;
}

.pp-client-img img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: contain;
}

.pp-client-wrapper .swiper-container {
    padding-bottom: 100px;
}

.pp-client-wrapper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--pp-grey-color);
}

.pp-client-wrapper .swiper-pagination-bullet-active {
    background-color: #a5a9ab;
}

.pp-client-wrapper .swiper-slide {
    transition: all 0.3s ease-in-out;
}

.pp-client-wrapper .swiper-slide:hover .pp-client-box {
    box-shadow: 1.5px 3.99px 27px 0px rgb(0 0 0 / 10%);
}

/* client section css end */
/* partner section css start */
.pp-partner-wrapper {
    padding: 80px 0;
    background-color: var(--pp-white-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.pp-partner-heading span {
    display: block;
    color: var(--pp-theme-color);
    font-weight: 800;
}

.pp-partner-wrapper .swiper-slide {
    text-align: center;
    margin-top: 65px;
    transition: all 0.3s ease-in-out;
    transform: scale(1);
}

.pp-partner-wrapper .swiper-slide span img {
    max-width: 103px;
    height: 50px;
    object-fit: contain;
}

.pp-partner-wrapper .swiper-slide:hover {
    transform: translateY(-10px)scale(1.1);
}

.pp-partner-wrapper .swiper-slide:hover {
    opacity: 1;
}

/* partner section css end */
/* footer section css start */
.pp-footer-wrapper {
    padding: 80px 0 150px;
    background-color: #dbeaf7;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
    z-index: -1;
}

.pp-footer-wrapper .container {
    max-width: 1170px;
}

.footer-illustration {
    background-image: url(../images/footer.png);
    background-repeat: no-repeat;
    background-position: center 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.pp-footer-logo {
    margin-top: 6px;
}

.pp-footer-logo img {
    max-width: 191px;
    height: 35px;
    object-fit: contain;
}

.pp-footer-text .pp-paragraph {
    color: #2d2d2d;
    font-weight: 500;
    margin: 28px 0 10px 0;
}

.pp-footer-text a {
    font-size: 16px;
    font-weight: 400;
    color: var(--pp-theme-color);
    transition: all 0.3s ease-in-out;
}

.pp-footer-text a:hover {
    letter-spacing: 2px;
}

.pp-footer-text img {
    margin-left: 5px;
    max-width: 17px;
    height: 10px;
    object-fit: contain;
}

.pp-footer-linpp-heading .pp-heading {
    text-align: left;
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 36px;
    position: relative;
}

.pp-footer-link ul li {
    margin-bottom: 10px;
}

.pp-footer-link ul li a {
    color: #232323;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}

.pp-footer-link ul li a:hover {
    color: var(--pp-theme-color);
}

.pp-footer-link ul li img {
    margin-right: 10px;
    max-width: 8px;
    height: 8px;
    object-fit: contain;
}

.pp-footer-form {
    margin-top: 10px;
}

.pp-footer-form input {
    height: 50px;
    width: 100%;
    background-color: #fff;
    color: #6b6d80;
    border-radius: 6px;
    border: none;
    padding: 0 20px;
    margin-bottom: 15px;
}

.pp-footer-form input::placeholder {
    font-size: 14px;
    color: #6b6d80;
    font-weight: 400;
}

.pp-footer-form .pp-dark-btn {
    font-size: 14px;
    font-weight: 600;
    min-width: 100%;
    border-radius: 6px;
    margin-top: 5px;
    padding: 15px 40px;
}

/* footer section css end */
/* copyright section css start */
.pp-copyright-wrapper {
    background-color: #acc943;
}

.pp-copyright-wrapper p {
    font-size: 16px;
    color: var(--pp-white-color);
    font-weight: 400;
    text-align: center;
    padding: 15px 0 10px 0;
}

.sec-title span{
    color: #39b7dd;
}

.pp-copyright-wrapper a {
    color: rgb(237 90 176);
    font-weight: 500;
}

/* copyright section css end */
/* swiper slider */
.pp-client-wrapper .swiper-pointer-events,
.pp-partner-wrapper .swiper-pointer-events {
    touch-action: pan-y;
    overflow: hidden;
    position: relative;
}

/* swiper slider */


.container_animat {
    position: relative;
    height: 450px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.3sease-out;
    border: 2px dashed #76b1e5;
}

.container_animat:hover {
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.5);
}

.user-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
}

.user-info h2 {
    font-size: 20px;
    font-weight: 600;
}

.user-info span {
    color: #ed5ab0;
}

.img-container {
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transition: transform 0.3s ease-out;
    z-index: 2;
    padding: 5px;
}

.img-container:hover {
    cursor: pointer;
}

.container_animat:hover .img-container {
    transform: translateY(-80px);
}

.img-container>img {
    height: 100%;
    width: 100%;
    transition: opacity 0.3s ease-out;
    border-radius: 15px;
}

.container_animat:hover>.img-container>img {
    opacity: 0.5;
}

.social-media {
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    margin: 0;
    padding: 0;
}

.social-media>li {
    list-style: none;
}

.social-media>li>a {
    display: block;
    height: 50px;
    width: 50px;
    background-color: #FFF;
    text-align: center;
    color: #262626;
    margin: 0 5px;
    border-radius: 50%;
    opacity: 0;
    transform: translateY(200px);
    transition: all 0.3s ease-out;
}

.container_animat:hover>.social-media>li>a {
    transform: translateY(0);
    opacity: 1;
}


/* about  */


.it-section-subtitle {
    color: #ed5ab0;
    font-family: 'Schoolbell', cursive;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    display: block;
    margin-bottom: 20px;
    text-transform: capitalize;
    text-align: center;
}

.it-section-title {
    font-size: 45px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 0;
}

.it-section-title span {
    color: #39b7dd;
}

.it-about-area {
    padding: 100px 0px;
    position: relative;
}

.it-about-mission-icon {
    flex: 0 0 auto;
    margin-right: 16px;
}

.it-about-mission-text h6 {
    font-size: 22px;
    padding-bottom: 5px;
}

.it-about-mission-icon span {
    height: 58px;
    width: 58px;
    line-height: 58px;
    text-align: center;
    border-radius: 50%;
    background: #76dfff;
    display: inline-block;
    color: var(--it-theme-2);
}

.it-about-info-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 50%;
}

.it-about-mission-item {
    width: 50%;
}

.it-about-info-icon span {
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    color: #898989;
    background: rgb(237 90 176);
}

.it-about-thumb-box {
    margin-left: 75px;
}

.it-about-thumb {
    mask-image: url(../images/about.png);
    -webkit-mask-image: url(../images/about.png);
    height: 100%;
    width: 100%;
    mask-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
}

.it-about-award {
    position: absolute;
    bottom: 2%;
    left: 0;
    background-color: #ed5ab0;
    padding: 24px 24px;
    border-radius: 10px;
    color: #ffffff;
}

.it-about-award span {
    margin-right: 15px;
}

.it-about-award h6 {
    font-family: "DynaPuff", system-ui;
    font-size: 22px;
}

.it-about-award h6 i {
    font-size: 42px;
}

.it-about-mission-text p {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 0;
}

.mb-65 {
    margin-bottom: 65px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-25 {
    padding-bottom: 25px;
}

.p-relative {
    position: relative;
}


/* banner 2 */

/* .theme-bg {
    background: var(--pp-theme-color);
} */



.it-service-area {
    padding: 100px 0px;
}

.it-service-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
}

.it-service-icon {
    width: 150px;
    height: 145px;
    line-height: 146px;
    text-align: center;
    position: relative;
    margin: 0 auto;
    margin-bottom: 20px;
}

.it-service-icon span {
    color: #fff;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.it-service-icon::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 150px;
    height: 145px;
    background-color: #d64b4b;
    border-radius: 64% 36% 52% 48% / 48% 39% 61% 52%;
    will-change: border-radius, transform, opacity;
    display: block;
    z-index: -1;
}

.it-service-title {
    font-size: 22px;
    color: red;
}