:root{
    --color-theme : #1e3148;
    --color-theme-light : #2E677E;
    --color-green-light : #5DAAAD;
}

.bg-white{background: #fff}
.bg-light{background: #f1f1f1}
.bg-grey{background: #C7C5CC;}
.bg-cyan{background: #A9DDEA;}
.bg-light-cyan{background: #E6FEFB}
.bg-light-green{background: #5DAAAD}
.bg-dark-blue{background: #0C1E5C}
.bg-blue{background: #4993EC}
.bg-dark-green{background: #4090B3;}
.bg-purple{background: #5A5294;}

.name-tag span{
    background: var(--color-theme);
    color: #FFFFFF;
    padding: 5px 20px;
    border-radius: 5px 10px;
    font-size: 12px;
}



.name-tag img {
    width: 100%;
}
.name-tag:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 70px;
    height: 100%;
    background: rgba(255,255,255, 0.3);
    transform: skewX(-30deg);
    animation-name: nameTag;
    animation-duration: 7s;
    animation-timing-function: ease-in-out;
    animation-delay: .3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.13) 77%,
        rgba(255, 255, 255, 0.5) 92%,
        rgba(255, 255, 255, 0.0) 100%
    );
}
@keyframes nameTag {
    0% {
        left: -100px;
        top: 0;
    }
    50% {
        left: 120px;
        top: 0px;
    }
    100% {
        left: 290px;
        top: 0;
    }
}

.box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background: #A9DDEA;
    padding: 30px;
    border-radius: 25px;
    width: 100%;

    -webkit-box-shadow: 10px 10px 5px 0 rgb(0 0 0 / 15%);
    -moz-box-shadow: 10px 10px 5px 0 rgba(0,0,0,.15);
    box-shadow: 10px 10px 5px 0 rgb(0 0 0 / 15%);
}

.box-img{
    width: 100%;
    padding: 30px;
    text-align: center;
}

.box-text{
    width: 100%;
}

.box-img img{
    width: 50%;
}


.footer-logo{
    width: 100%;
}

.footer-logo img{
    max-width: 50%;
    float: left;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.service-img{
    width: 50%!important;
}

.choose-card:hover p{
    color: #fff;
}

.choose-card img{
    width: 50%;
}

.text-theme{
    color: var(--color-theme);
}

.text-theme-light{
    color: var(--color-theme-light);
}

.about-wrapper{
    display: block;
}

.about-images{
    width: 20%;
    margin: 0 auto;
}

.about-images img{
    width: 100%;
}

.border-last{
    border-right: unset;
}

@media only screen and (min-width: 576px) {

}

@media only screen and (min-width: 768px) {
    .border-last{
        border-right: 1px solid #dee2e6 !important;
    }
}

@media only screen and (min-width: 996px) {
    .about-wrapper{
        display: flex;
    }

    .about-images{
        width: 20%;
        margin: unset;
    }

    .about-images img{
        width: 100%;
    }
}

@media only screen and (min-width: 1024px) {
    .main-logo{
        max-width: 200px;
    }

    .main-logo img{
        width: 100%;
    }

    .footer-logo img{
        max-width: 50%;

    }

    .service-img{
        width: 40%!important;
    }

    .choose-card{
        min-height: 435px;
    }

    .box{
        display: block;
        height: 600px;
    }
}

@media only screen and (min-width: 1200px) {
    .box{
        display: flex;
        height: 100%;
    }

    .box-img{
        width: 30%;
        padding: 30px;
        text-align: center;
    }

    .box-text{
        width: 70%;
    }

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

@media only screen and (min-width: 1400px) {
    .service-img{
        width: 25%!important;
    }


}

.blog-dtls-content .blog-text p{
    color: #000;
}
