/* slide show */
.swiper {
    height: 400px;
    position: relative;
   margin: auto;
   direction: ltr;
  }

  
  /* end slide show */
.small-banner {
    height: 400px;
    background-image: url(../images/services/small-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -90px;
    position: relative;
}

.crumb-box {
    background-color: whitesmoke;
    height: 50px;
}

.breadcrumb {
    padding: 13px !important;
}

.crumb-box .breadcrumb-item a {
    color: #16aa9d;
    font-weight: 600;
}

.commercial-support,
.technologies,
.dashboard,
.training,
.data,
.apps {
    margin: 50px 0;
}

.commercial-support i {
    /* font-weight: 800; */
    color: var(--mustard);
    padding: 3px;
    font-size: 1.5rem;
}
:is(.commercial-support, .technologies, .dashboard, .training,.data, .apps) h2 {
    color: #004d5c;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 45px;
    letter-spacing: -1.5px;
    margin: 16px 0;
    display: block;
}

:is(.dashboard,.training, .data, .apps) h4 {
    color: #004d5c;
    font-size: 25px;
    font-weight: 600;
    padding-left: 25px;
    margin-bottom: 25px;
    margin-top: 60px;
}

:is(.dashboard, .data, .training, .apps) ul li {
    padding: 4px 0;
    color: #004d5c;
    font-size: 1.5rem;
}

.commercial-text-wrapper {
    margin: 30px 0;
}

.commercial-text {
    margin: 10px 0;
}

.commercial-text img {
    filter: invert(22%) sepia(31%) saturate(2350%) hue-rotate(154deg) brightness(93%) contrast(102%);
    width: 20px;
    margin-right: 5px;
}

.commercial-text span {
    color: var(--petrol) ;
    font-size: 18px;
}

.commercial-body {
    display: flex;
    align-items: baseline;
    margin: 40px 0;
    flex-direction: column;
    font-weight: 300;
}
.commercial-body span {
    color: var(--petrol);
    font-weight: 300;
}
.commercial-support p {
    color: #004d5c;
    font-weight: 100;
    padding: 10px 0;
    font-size: 18px;
    line-height: 1.8;
}

.commercial-body img {
    filter: invert(22%) sepia(31%) saturate(2350%) hue-rotate(154deg) brightness(93%) contrast(102%);
    width: 30px;
    margin-right: 5px;
}

@media (min-width: 991px) {
    .align-items-center {
        align-items: center;
        display: flex;
    }
}

@media (min-width: 1440px) {
    .img-contain {
        position: relative;
    }

    .img-contain::before {
        position: absolute;
        top: 0;
        left: -75%;
        z-index: 2;
        display: block;
        content: '';
        width: 50%;
        height: 100%;
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
        -webkit-transform: skewX(-25deg);
        transform: skewX(-25deg);
    }

    .img-contain:hover::before {
        -webkit-animation: shine .75s;
        animation: shine .75s;
    }
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.img-contain {
    width: 265px;
    margin: 30px auto;
}

.img-contain img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-us {
    background-color: #16aa9d;
    color: #fff;
    border-radius: 4px;
    padding: 16px 40px;
    font-size: 22px;
    text-transform: capitalize;
}

.contact-us:hover {
    border: 1px solid #16aa9d;
    background-color: transparent;
    color: #16aa9d;
    text-decoration: none;
}

.tech-icons {
    border: 1px solid #c7c7c7;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-around;
    padding: 20px 150px;
    border-radius: 4px;
    box-shadow: 0 7px 10px #d7d5dc;
}

@-webkit-keyframes animation_block {
    0% {
        -webkit-transform: translateY(30px) translateZ(0) scaleY(1.1) skewY(2deg);
        transform: translateY(30px) translateZ(0) scaleY(1.1) skewY(2deg);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        opacity: 0;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d
    }
    100% {
        -webkit-transform: translateY(0) translateZ(0) scaleY(1) skewY(0);
        transform: translateY(0) translateZ(0) scaleY(1) skewY(0);
        opacity: 1;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d
    }
}

.animated-block.animated {
    -webkit-animation-name: animation_block;
    animation-name: animation_block;
    -webkit-animation-timing-function: cubic-bezier(.46, .03, .52, .96);
    animation-timing-function: cubic-bezier(.46, .03, .52, .96);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.tech-icons .techIcon {
    border-left: 1px solid #c7c7c799;
    padding-left: 12px;
}

.tech-icons .techIcon:first-of-type {
    border: none;
}

.techIcon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.techIcon a,
.techIcon img {
    display: block;
    width: auto;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.techIcon img {
    -webkit-transition: opacity .3s cubic-bezier(.46, .03, .52, .96);
    transition: opacity .3s cubic-bezier(.46, .03, .52, .96);
    opacity: .5
}

.techIcon:hover img {
    opacity: 1
}

/* Featured Apps style */
.featured-apps {
    margin: 50px 0;
}

.featured-apps h2 {
    text-transform: capitalize;
    color: #004d5c;
    font-weight: bold;
    font-size: 45px;
}

.featured-apps p {
    color: #16aa9d;
    text-transform: capitalize;
}

.featured-apps .app {
    margin: 60px 12px;
    position: relative;
    text-align: center;
}

.featured-apps .app h5 {
    color: #16aa9d;
    text-align: center;
    margin: 16px auto;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    height: 45px;
}

.featured-apps .app .icon {
    position: absolute;
    bottom: -19px;
    right: 40px;
    width: 40px;
    height: 40px;
    background-color: #314d5c;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 19px;
    color: #fff;
    cursor: pointer;
}

.featured-apps .app .icon:hover {
    background-color: #fff;
    color: #004d5c;
    border: 2px solid #004d5c;
    border-right-style: dashed;
    border-left-style: dashed;;

}

.featured-apps img {
    background-color: #16aa9d;
    border-radius: 11px;
    width: 100%;
}

.custom-app-image {
    max-width: 306px;
    max-height: 180px;
    object-fit: fill;
}

@media (min-width: 960px) and (max-width: 1199px) {
    .custom-app-image {
        max-height: 141px;
    }
}

.more-app {
    background-color: #16aa9d;
    color: #fff;
    padding: 8px 30px;
    border-width: 2px;
}

.more-app:hover, .more-app:focus {
    background-color: #fff;
    color: #16aa9d;
    border: 2px solid #16aa9d;
}

/**********Slider apps style ************/
.carousel-control.left, .carousel-control.right {
    background-color: transparent !important;
    background-image: none !important;
}

.glyphicon-chevron-left, .glyphicon-chevron-right {
    color: #004d5c;
    background-color: transparent !important;
}

.carousel-inner {
    margin: auto;
    width: 90%;
}

.carousel-control {
    width: 50px;
    height: 50px;
    top: 50%;
}

.glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right {
    margin-top: -10px;
    margin-left: -10px;
    color: #444;
}

.multi-item-carousel .carousel-inner > .item {
    transition: 500ms ease-in-out left;
}

.multi-item-carousel .carousel-inner .active.left {
    left: -33%;
}

.multi-item-carousel .carousel-inner .active.right {
    left: 33%;
}

.multi-item-carousel .carousel-inner .next {
    left: 33%;
}

.multi-item-carousel .carousel-inner .prev {
    left: -33%;
}

@media all and (transform-3d), (-webkit-transform-3d) {
    .multi-item-carousel .carousel-inner > .item {
        transition: 500ms ease-in-out all;
        -webkit-backface-visibility: visible;
        backface-visibility: visible;
        transform: none !important;
    }
}

.multi-item-carousel .carouse-control.left,
.multi-item-carousel .carouse-control.right {
    background-image: none;
}

@media (max-width: 768px) {
    .multi-item-carousel .carousel-inner .active.left {
        left: -100%;
    }

    .multi-item-carousel .carousel-inner .active.right {
        left: 100%;
    }

    .multi-item-carousel .carousel-inner .next {
        left: 100%;
    }

    .multi-item-carousel .carousel-inner .prev {
        left: -100%;
    }
}

.ask-box {
    margin: 45px 0;
    background-color: #16aa9d;
    color: #fff;
    padding: 20px 40px;
    text-transform: capitalize;
    border-radius: 10px;
}

.ask-box h4 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.6;
}

.ask-box p {
    color: #004d5c;
    font-size: 30px;
    font-weight: bold;
    margin-top: 32px;
}

@media (max-width: 1023px) {
    .tech-icons {
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .align-items-center {
        display: unset;
    }

    .tech-icons {
        justify-content: unset;
    }

    .tech-icons .techIcon {
        margin: 16px 0;
    }
}
