﻿body,
html {
    scroll-behavior: smooth;
}

.banner-container {       
    min-height: 100vh;
    width: 100%;
}

.banner-cards .card {
    max-width: 18rem;
    margin: auto;
    color: #007bb6;
    background-color: #ffffff8c;
}

    .banner-cards .card:hover {
        color: white;
        background-color: #007bb6;
    }

.scale-in-center1 {  
    -webkit-animation: scale-in-center 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.4s both;
    animation: scale-in-center 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.4s both;
}
   
.scale-in-center2 {
    -webkit-animation: scale-in-center 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.8s both;
    animation: scale-in-center 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.8s both;
}

.scale-in-center3 {
    -webkit-animation: scale-in-center 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.2s both;
    animation: scale-in-center 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.2s both;
}

.scale-in-center4 {
    -webkit-animation: scale-in-center 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s both;
    animation: scale-in-center 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s both;
}

.scale-in-center5 {
    -webkit-animation: scale-in-center 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2.4s both;
    animation: scale-in-center 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2.4s both;
}

@-webkit-keyframes scale-in-center {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scale-in-center {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 14%;
}

.client-images {
    padding-top: 20px;
}

    .client-images img {
        max-height: 100px;
        width: auto !important;
        margin: 10px auto;
        opacity: 0.8;
    }

.testimonial-image {
    border-radius: 50%;
    box-shadow: 0px 14px 16px -6px #777777;
    height: 100px;
    margin: auto;
}

.service-card {
    transition: 0.3s all ease-in-out;
    padding: 20px;
    border-bottom: 5px solid #ffffff7a;
}

    .service-card:hover {
        /* border: 1px solid #85c1d97a; */
        box-shadow: 0px 1px 6px 0px #85c1d97a;
        transition: 0.3s all ease-in-out;
        border-bottom: 5px solid #2f92e47a;
    }

    .service-card img {
        height: 150px;
        padding: 15px;
    }

.fade-in-bottom {
    -webkit-animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.slide-in-left {
    -webkit-animation: slide-in-left 1s cubic-bezier(0.0, 0.46, 0.45, 0.94) 0.7s both;
    animation: slide-in-left 1s cubic-bezier(0.0, 0.46, 0.45, 1.94) 0.7s both;
}

.vibrate-1 {
    -webkit-animation: vibrate-1 1.4s linear infinite both;
    animation: vibrate-1 1.4s linear infinite both;
}

.vibrate-2 {
    -webkit-animation: vibrate-1 1.2s linear infinite both;
    animation: vibrate-1 1.2s linear infinite both;
}

.vibrate-3 {
    -webkit-animation: vibrate-1 1s linear infinite both;
    animation: vibrate-1 1s linear infinite both;
}

@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@-webkit-keyframes vibrate-1 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    20% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    40% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    60% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    80% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes vibrate-1 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    20% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    40% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    60% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    80% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

.team-section {
    background: url("../images/bg.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .team-section .card {
        max-width: 250px;
        margin: 10px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 50px;
        border: none;
        box-shadow: 0px 0px 3px 0px #a7a7a7;
        transition: 0.2s all ease-in-out;
    }

    .team-section .card-title {
        text-transform: uppercase;
    }

    .team-section img {
        height: 140px;
        width: 140px;
        border-radius: 10px;
        border: none;
        margin-left: auto;
        margin-top: -20px;
        margin-right: auto;
        transition: 0.2s all ease-in-out;
    }

    .team-section picture {
        text-align: center;
    }

    .team-section .card-body {
        max-height: 125px;
        height: 125px;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .team-section h5 {
        margin-bottom: 0;
    }

    .team-section a {
        cursor: pointer;
    }

        .team-section a:hover {
            color: #34b6a4;
        }

    .team-section .card:hover {
        box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
    }

        .team-section .card:hover img {
            transform: translateZ(50px);
            transform: translateY(-8px);
            transform: scale(1.1);
            box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.35);
            transition: 0.2s all ease-in-out;
        }

    .team-section .card-body {
        cursor: pointer;
    }


/* contact us page */

.contact-us-section .news-title {
    margin: auto;
    padding-top: 15%;
    text-align: center;
    text-transform: uppercase;
    color: white;
    font-size: 48px;
}

@media (max-width: 575.999px) {
    .contact-us-section .news-title {
        padding-top: 35%;
    }
}

.contact-us-section .contactus-info {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.contact-us-section .motto-row {
    padding: 10px;
    font-size: 18px;
    color: #607d8b;
    text-align: center;
    font-family: cursive;
    /* border-bottom: 1px solid #1b93d0;
        border-top: 1px solid #1b93d0; */
}

.contact-us-section .address {
    text-align: center;
    /* margin-top: 50px; */
    font-weight: bold;
}

a {
    color: black;
}

    a:hover {
        color: #1b93d0;
    }

.contact-us-section .form-container {
    margin-bottom: 50px;
    margin-top: 50px;
}

@media (max-width: 991.98px) {
    .contact-us-section .address {
        margin-top: 20px;
    }
}


/* footer section */

.footer-background {
    background-color: #0a76ad !important;
    color: white;
    padding: 50px;
    padding-bottom: 10px;
    text-align: center;
    position: relative;
}

    .footer-background .footer-copyright {
        padding: 10px;
        font-weight: bold;
        border-top: 1px solid white;
        margin-top: 10px;
        z-index: 2;
    }

    .footer-background .info {
        text-align: justify;
        margin-bottom: 10px;
    }

    .footer-background a {
        color: white;
    }

    .footer-background .contactus {
        z-index: 100;
    }

    .footer-background h4 {
        font-weight: bold;
        margin: 10px;
        margin-top: 0;
    }

    .footer-background ul {
        z-index: 100;
    }

    .footer-background .map {
        z-index: 2;
    }

    .footer-background li {
        list-style: none;
    }

    .footer-background .ti-angle-right {
        font-size: 10px;
        font-weight: bold;
    }

.social li a {
    display: block;
    height: 36px;
    width: 36px;
    color: #ffffff !important;
    line-height: 36px;
    text-align: center;
    text-decoration: none !important;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

    .social li a:hover {
        color: #ffffff !important;
        border-color: #ffffff96;
    }

.btn-custom {
    background-color: #f56363;
}

    .btn-custom:hover {
        background-color: #222328;
    }

.btn-link {
    color: #f56363 !important;
    box-shadow: none !important;
    padding: 0;
}

.bg-facebook:hover {
    background-color: #3b5998 !important;
}

.bg-twitter:hover {
    background-color: #00aced !important;
}

.bg-linkedin:hover {
    background-color: #007bb6 !important;
}

.bg-dribbble:hover {
    background-color: #ea4c89 !important;
}

.bg-googleplus:hover {
    background-color: #dd4b39 !important;
}


/* service section */

.services-row img {
    max-width: 100%;
    height: 200px;
}


/* our process section */

.top-style {
    border-top: 2px solid #0a76ad;
}

    .top-style:hover::before {
        box-shadow: 0px 0px 6px 1px #1b93d0;
        transition: all 0.2s ease-in-out;
    }

    .top-style:hover h4 {
        color: #1b93d0;
        transition: all 0.2s ease-in-out;
    }

.process-1::before {
    content: "1";
}

.process-2::before {
    content: "2";
}

.process-3::before {
    content: "3";
}

.process-4::before {
    content: "4";
}

.process-5::before {
    content: "5";
}

.top-style::before {
    height: 45px;
    width: 45px;
    border: 2px solid red;
    left: 0;
    position: absolute;
    z-index: 2;
    top: -24px;
    border-radius: 50%;
    text-align: center;
    padding: 5px;
    font-weight: bold;
    font-size: large;
    background: white;
}

.process-section .card {
    min-height: 270px;
}


/* nav bar styles */

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #1b93d0;
}

.current {
    color: #1b93d0 !important;
}

.portfolio-section .card-body {
    /* opacity: 0; */
    position: absolute;
    width: 100%;
    height: 40%;
    vertical-align: middle;
    bottom: 0;
    background: rgba(255, 255, 255, 0.918);
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    padding-top: 10px;
}

.portfolio-section .card-text {
    font-size: 14px;
}

.portfolio-section img {
    height: 240px;
}

.portfolio-section .card:hover .card-body {
    box-shadow: 0px 2px 14px 0px grey;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.pad-0 {
    padding: 0;
}

.box {
    position: absolute;
    width: 385px;
    height: 290px;
    border-bottom: 2px solid #8080806b;
    border-radius: 10px;
    left: -1px;
    transform: skew(10deg, -10deg);
    max-width: 100%;
    z-index: -1;
    /* background: #cbcbd22e; */
}

.slide-in-right {
    -webkit-animation: slide-in-right 1s 1s both;
    animation: slide-in-right 1s 1s both;
}

@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(200px);
        transform: translateX(200px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(200px);
        transform: translateX(200px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.icons .icon {
    height: 80px;
    margin: 9px;
    /* margin-left: auto;
      margin-right: auto; */
}

    .icons .icon:hover {
        transform: translateY(-20px);
    }

.scale-in-center1 {
    -webkit-animation: scale-in-center 0.5s 0.8s both;
    animation: scale-in-center 0.5s 0.8s both;
}

.scale-in-center2 {
    -webkit-animation: scale-in-center 0.5s 1.2s both;
    animation: scale-in-center 0.5s 1.2s both;
}

.scale-in-center3 {
    -webkit-animation: scale-in-center 0.5s 1.6s both;
    animation: scale-in-center 0.5s 1.6s both;
}

@-webkit-keyframes scale-in-center {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scale-in-center {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-contact-section {
    background-color: #71bff3;
}


/* css for loader */

.loader {
    color: #8c55a4;
    font-size: 5px;
    margin: 23px auto;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    -webkit-animation: load4 1.3s infinite linear;
    animation: load4 1.3s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

@-webkit-keyframes load4 {
    0%, 100% {
        box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
    }

    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }

    25% {
        box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }

    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }

    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }

    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }

    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
    }

    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
}

@keyframes load4 {
    0%, 100% {
        box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
    }

    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }

    25% {
        box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }

    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }

    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }

    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }

    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
    }

    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
}

.accordion .card-header {
    cursor: pointer;
}

.slide-in-bottom {
    -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-in-top {
    -webkit-animation: slide-in-top 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.6s both;
    animation: slide-in-top 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.6s both;
}

@-webkit-keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

table {
    text-transform: capitalize;
}
