@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}


body {
    font-family: "Plus Jakarta Sans", sans-serif;
}



.bg-color {
    background-image: url(../images/header-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-color: #f6f5fd;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.logo-title {
    font-size: 30px;
    font-weight: 600;
    color: #000000;
}

.menu-title {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin: 0 10px;
    text-transform: uppercase;

}

.menu-inner {
    padding: 15px 100px;
}

.p-100 {
    padding: 100px 0;
}

.banner-title h6 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #219BE4;
    margin-bottom: 5px;
}

.banner-title h1 {
    font-size: 50px;
    line-height: 1.5;
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 43px;
    color: #3b3d3f;
    margin-top: 20px;
}

.banner-title {
    position: relative;
    z-index: 1;
    padding-left: 145px;
}

.sub-btn {
    background-color: #3b3d3f;
    padding: 20px 60px;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    display: inline-block;
    border-radius: 50px;
}
.sub-btn:hover{
    color: #fff;
}
.banner-images {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-left: -50px;
}

.main-banner-one-image {
    position: absolute;
    left: 208px;
    bottom: 0;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: auto;
    z-index: -1;
}


.main-banner-2 {
    position: absolute;
    left: -7%;
    top: 2%;
}

.main-banner-3 {
    position: absolute;
    right: -21%;
    top: 4%;
    border-radius: 10px;
}

.shap-1 {
    position: absolute;
    left: 0;
    top: 185px;
    width: 38px;
    height: 22px;
    animation: movebounce3 4s linear infinite;
}

@keyframes movebounce3 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.shap-2 {
    position: absolute;
    left: 0;
    bottom: 115px;
    width: 122px;
    height: 34px;
    animation: movebounce3 4s linear infinite;
}

.shap-3 {
    position: absolute;
    left: 37%;
    top: 170px;
    width: 93px;
    height: 93px;
    animation: rotated 10s linear infinite;
}

@keyframes rotated {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.shap-4 {
    position: absolute;
    left: 38%;
    bottom: 120px;
    width: 55px;
    height: 61px;
    animation: startIconOne 1.8s infinite alternate;
}

.shap-5 {
    position: absolute;
    left: 63%;
    top: 183px;
    width: 101px;
    height: 94px;
    animation: treeMove2 7s linear infinite;
}

@keyframes startIconOne {
    100% {
        transform: scale(0.5) rotate(45deg);
    }

    100% {
        transform: scale(0.5) rotate(45deg);
    }
}

@keyframes treeMove2 {

    0%,
    100% {
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        transform: rotate(-10deg) translateX(0);
    }

    50% {
        transform: rotate(10deg) translateX(0);
    }
}

.shap-6 {
    position: absolute;
    left: 53%;
    bottom: 172px;
    width: 28px;
    height: 28px;
    animation: startIconOne 1.8s infinite alternate;
}

@keyframes startIconOne {
    0% {
        transform: scale(1) rotate(0);
    }

    100% {
        transform: scale(0.5) rotate(45deg);
    }
}

.shap-7 {
    position: absolute;
    left: 52%;
    bottom: 68px;
    width: 55px;
    height: 28px;
    animation: treeMove2 6s linear 0s infinite;
}

.shap-8 {
    position: absolute;
    right: 13.4%;
    top: 167px;
    width: 18px;
    height: 18px;
    animation: rotated 10s linear infinite;
}

.shap-9 {
    position: absolute;
    right: 0;
    bottom: 82px;
    width: 69px;
    height: 197px;
    animation: movebounce3 5s linear infinite;
}

.angle-img {
    position: absolute;
    top: 13%;
    left: 85px;
    animation: movebounce2 4s linear infinite;
}

@keyframes movebounce2 {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-15px);
    }

    100% {
        transform: translateX(0px);
    }
}

.p-80 {
    padding: 80px 0;
}

.service-three
{
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    counter-reset: count;
}

.service-sub-title span{
    font-size: 18px;
    font-weight: 500;
    color: #219BE4;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    text-align: center;
  
}
.service-sub-title h1{
    font-size: 50px;
    line-height: 64px;
    color: #000000;
    font-weight: 800;
    text-align: center;
}

.service-sub-title{
    margin-bottom: 60px;
}

.service-three-item {
    text-align: center;
    position: relative;
    min-height: 390px;
    padding: 50px;
    z-index: 2;
    counter-increment: count;
    overflow: hidden;
    transition: all 500ms ease;
    border: 1px solid #ddd
}

.service-three-item img{
    display: inline-block;
    max-width: 90%;
}

.service-three-item h3{
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-top: 30px;
}
.service-three-item  p{
    font-size: 16px;
    color: #504e4e;
    margin-bottom: 0;
    margin-top: 20px;
}

.about-shape-1{
    position: absolute;
    left: 0;
    top: 0;
    
}
.about-shape-2{
    position: absolute;
    left: 38px;
    top: 22%;
    width: 93px;
    height: 93px;
    animation: startIconOne 1.8s infinite alternate;
}

@keyframes startIconOne  {
    0% {
        transform: scale(1) rotate(0);
    }
    100% {
        transform: scale(0.5) rotate(45deg);
    }
}

.p8-{
    padding: 80px 0;
}

.about-images{
    position: relative;
    text-align: center;
}

.about-bg-color
{
    background-color: #fbfbfb;
    padding: 100px 0;
}

.about-item{
    position: relative;
    z-index: 0;
}

.about-item::before {
    position: absolute;
    left: 95px;
    right: 0;
    margin: 0;
    bottom: 0;
    width: 70%;
    height: 64.6%;
    content: "";
    transition: all 500ms ease;
    background-color: #e8e8e8;
    border-radius: 0 0 50px 50px;
    z-index: -1;
}


.about-shape-3 {
    position: absolute;
    z-index: 2;
    left: 81px;
    top: 23%;
    animation: movebounce3 5s linear infinite;
}


.about-shape-4 {
    position: absolute;
    left: 0;
    bottom: -55px;
    border-radius: 14px;
}
.about-title span{
    font-size: 18px;
    font-weight: 500;
    color: #219BE4;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.about-title h1{
    font-size: 32px;
    line-height: 64px;
    font-weight: 800;
    margin: 0;
}
.about-title p{
    font-size: 18px;
    font-weight: 500;
    color: #504e4e;
    margin-top: 20px;
    line-height: 1.7em;
}


.meet-card{
    position: relative;
    text-align: center;
}


.team-card-bg{
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    bottom: 0;
    width: 100%;
    height: 70%;
    transition: all 500ms ease;
    background-color: #EAF3F8;
    border-radius: 20px;
    z-index: -1;
}


.meet-title h3{
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 0;
    margin-top: 20px;
}
.meet-title p{
    font-size: 18px;
    font-weight: 500;
    color: #504e4e;
    margin-bottom: 0;
    margin-top: 10px;
    text-align: center;
}

.video-bg-color{

    background-size: cover;
    background-position: center center;
    padding: 50px 0;
}

.video-sub-title span{
    font-size: 18px;
    font-weight: 500;
    color: #3b3d3f;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}
.video-sub-title{
    margin-bottom: 50px;
}

.video-sub-title h1{
    font-size: 45px;
    font-weight: 700;
    color: #3b3d3f;
    text-align: center;
    margin-top: 20px;
}

.video-inner{
    position: relative;
}

.video-inner img{
    border-radius: 20px;
}

.video-btn{
    width: 80px;
    height: 80px;
    background-color:  #219BE4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 24px;
    color:  #fff;
    transition: all 500ms ease;
    transform: scale(1);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
}
.video-btn::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 #ffffff65;
    animation: ripple 3s infinite;
    border-radius: 50%;
    content: '';
}
@keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}
.count-box h1{
    font-size: 58px;
    font-weight: 700;
    color: #000000;
    text-align: center;
}

.count-box p{
    font-size: 20px;
    font-weight: 500;
    color: #504e4e;
    margin-bottom: 0;
    text-align: center;
}
.count-border{
    border-right: 1px solid #ddd;
}
.footer-logo {
    font-size: 40px;
    font-weight: 600;
    color: #0d141a;
}
.footer-item {
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}
.footer-item a {
    display: inline-block;
    font-size: 16px;
    background-color: #0d141a;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 39px;
    margin-right: 10px;
    border-radius: 100%;
    transition: 0.4s;
}
.footer-item a:hover{
    color: #fff;
}

.footer-title p {
    font-size: 17px;
    font-weight: 500;
    color: #4c4c4c;
    margin-bottom: 0;
    margin-top: 20px;
}
.footer-bg-color {
    border-top: 1px solid #ddd;
    padding: 50px 0;
}
.contact-box{
    padding: 40px 15px;
}
.contact-box label{
    display: block;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 4px;
}
.input-box-contact, .input-box-contact:focus{
    display: block;
    width: 100%;
    margin-bottom: 30px;
    padding: 10px 0px;
    border-radius: 0 !important;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid #999;
    outline: none;
}
.form-button{
    display: inline-block;
    background: #219BE4;
    border: none;
    color: #fff;
    padding: 15px 30px;
    transition: 0.4s;
    border-radius: 100px;
}
.form-button:hover{
    border-radius: 100px;
    transition: 0.4s;
}
.contact h3{
    text-align: center;
    font-size: 24px;
    color: #222;
}
.contact h3 a{
    display: inline-block;
    text-decoration: none;
    background: #219BE4;
    color: #fff;
    line-height: 1;
    padding: 5px 15px 9px 15px;
    border-radius: 100px;
}
.sub-pages-section{
    min-height: auto;
}
.sub-pages-header{
    text-align: center;
    padding: 30px 0px;
}
.sub-pages-header h2{
    font-size: 50px;
    line-height: 1.5;
    font-weight: 800;
    text-transform: capitalize;
    color: #3b3d3f;
    margin-top: 20px;
}
.sub-pages-header p{
    font-size: 22px;
    line-height: 2;
}
@media only screen and (max-width: 600px) {
    .menu-inner{
        padding: 15px;
        background: #fff;
    }
    .logo-title{
        width: 70%;
        display: inline-block;
    }
    .logo-title img{
        width: 100%;
    }
    .navbar-toggler{
        background: #fff;
    }
    .banner-title{
        padding-left: 30px;
    }
    .banner-title h6{
        font-size: 17px;
    }
    .banner-title h1{
        font-size: 45px;
    }
    .service-three{
        padding: 50px 15px;
    }
    .service-sub-title {
        margin-bottom: 30px;
    }
    .service-sub-title h1 {
        font-size: 40px;
        line-height: 50px;
    }
    .service-three-item{
        margin-bottom: 30px;
    }
    .about-bg-color{
        padding: 50px 15px;
    }
    .about-title span{
        margin-top: 30px;
    }
    .about-title h1 {
        font-size: 22px;
        line-height: 1.9;
    }
    .counter-section{
        padding: 40px 30px !important;
    }
    .count-border, .count-border-m {
        border: 1px solid #ddd;
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 10px;
    }
    .count-box h1{
        font-size: 40px;
    }
    .video-sub-title h1{
        font-size: 26px;
        line-height: 1.7;
    }
    .video-bg-color{
        padding: 0px 15px;
    }
    .contact h3{
        font-size: 20px;
        line-height: 2;
    }
    .footer-logo{
        font-size: 26px;
    }
    .footer-bg-color{
        padding: 50px 0 14px 0;
    }
    .footer-title p{
        font-size: 13px;
    }
    .contact{
        padding: 0px 15px;
    }
}