@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&display=swap');

/********** Template CSS **********/
:root {
    --primary: #4aade2;
    --secondary: #000000;
    --light: #F6F7FC;
    --dark: #15233C;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 30px;
    bottom: 30px;
    z-index: 99;
}
.fs-5 {
    font-size: 1rem !important;
}
.text-bold {
    font-weight: 700;
}
.text-regular{
    color: #15233C;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

body{
    font-family: 'Open Sans', sans-serif;
    line-height: 170%;
    color: #5a5b5c !important;
}
.text-body {
    color: #5a5b5c !important;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
    font-family: 'Open Sans', sans-serif;
}
/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}
.btn-primary {
    color: #fff;
    background-color: #4aade2;
    border-color: #4aade2;
}
.bg-primary {
    background-color: #4aade2 !important;
}
.bg-dark {
    background-color: #000 !important;
}
.text-primary {
    color: #4aade2 !important;
}
.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}
.btn-secondary {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
}
.clossLink-box .btn-secondary:hover {
    color: #000000;
    background-color: #f7f7f7;
    border-color: #f7f7f7;
}
.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
    border-bottom: 1px solid rgb(223 223 223 / 53%);
}
a {
    color: #4aade2;
    text-decoration: none;
}
a:hover {
    color: #000;
}
.tagline {
    color: #4aade2;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.navbar .navbar-brand img {
    max-height: 40px;
}
.navbar-light .navbar-brand {
    margin-right: 0px;
}
.bg-light {
    background-color: #f7f7f7 !important;
}
.f-light{
    font-weight: 300;
}
.navbar .navbar-nav .nav-link {
    padding: 10px 0;
    color: #000;
    font-weight: 400;
    outline: none;
    font-size: 17px;
    margin-left: 40px;
    text-transform: uppercase;
}
.btn{
    border-radius: 50px;
}
.wa-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}
.footer .copyright a {
    color: #ffffff;
}
.footer a{
    color: #A7A8B4;
}
.footer a:hover{
    color: #52aee0;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

#header-carousel .carousel-item{
    max-height: 80vh;
}
.connect-footer a:first-child{
    margin-right: 30px;
}
.links-footer{
 text-align: right;
}
@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}
.carousel-caption .btn-primary:hover{
    color: #4aade2;
    background-color: #fff;
    border-color: #fff;
    font-weight: 500;
}
.carousel-caption .text-dark{
    color: #fff !important;
}
.carousel-caption .text-body {
    color: #ffffff !important;
    font-weight: 200;
}
.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 50px;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 650px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .display-3 {
        font-size: calc(1.375rem + 1.5vw);
    }
    .carousel-caption .text-body {
        margin-bottom: 20px !important;
    }
}

.underline{
    position: relative;
}
.underline:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 12px;
    background: url(../img/underline.png) center bottom -3px no-repeat;
}
.page-header {
    background: url(../img/inner-bg.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #5a5b5c;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}


/*** Facts ***/
@media (min-width: 992px) {
    .container.facts {
        max-width: 100% !important;
    }

    .container.facts .facts-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
        margin: 60px 0px;
    }
    h4, .h4 {
        font-size: 24px;
    }
    .display-4{
        font-size: 45px;
    }
    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
    .display-3 {
        font-size: 45px;
    }
    .display-6 {
        font-size: 35px;
        font-weight: 800;
    }
    h2{
        font-size: 24px;
        font-weight: 400;
        line-height: 160%;
    }
}

@media (min-width: 1400px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.facts .facts-text {
    background: linear-gradient(rgba(74, 173, 226, .9), rgba(74, 173, 226, .9)), url(../img/carousel-1.jpg) center right no-repeat;
    background-size: cover;
    background: #fff;
    
}

.operating-item{
    margin: 0px;
    border-bottom: 1px solid #4aade2;
    padding-top: 15px;
    padding-bottom: 15px;
}
.operating-item:last-child{
    border: 0px;
}
.operating-item .col-3 {
    padding-left: 0px;
    text-transform: uppercase;
}
.operating-item p{
    margin-bottom: 0px;
}

.container.facts .facts-counter {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(../img/carousel-2.jpg) center right -60px no-repeat;
    background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item a.btn {
    color: var(--primary);
}

.service-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}
.solutions .service-item{
    box-shadow: none;
    padding-right: 30px;
    border-right: 1px solid rgb(223 223 223 / 53%);
    border-radius: 0px !important;
}
.solutions .service-item .icon{
    background: #f3f3f3;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    text-align: center;
    padding: 13px;
    margin-bottom: 15px;
}
.solutions .service-item .icon i{
    font-size: 35px;
    color: #4aade2;
}
.clossLink-box h4{
    line-height: 150%;
}
.solutions .wow{
    padding-top: 60px;
    margin-top: 0px;
}
.solutions .wow:nth-child(4) .service-item, .solutions .wow:nth-child(6) .service-item, .solutions .wow:nth-child(7) .service-item{
    border: 0px;
}
.listing li{
    list-style: none;
    position: relative;
}
.listing li:before{
    content: "";
    width: 6px;
    height: 6px;
    background: #4aade2;
    position: absolute;
    left: -20px;
    top: 10px;;
}
.cloudManagementData .box {
    background-color: #fff;
    padding: 30px 40px;
    height: 100%;
    text-align: center;
    border-radius: 5px;
    border: 1px solid rgb(223 223 223 / 53%);
    box-shadow: 0 2px 17px rgb(0 0 0 / 6%);
    transition: all .3s ease-in-out;
    text-align: left;
}
.cloudManagementData .box .img {
    height: 275px;
    overflow: hidden;
    border-radius: 5px;
}
.cloudManagementData .box.last .img {
    height: 400px;
}
.cloudManagementData .box .title h5 {
    font-size: 17px !important;
    font-weight: 700;
}
.cloudManagementData .box .subtitle{
    font-size: 15px;
    text-transform: uppercase;
    color: #4aade2;
    padding: 0px;
    border: 0px;
    font-weight: 600;
}

.subtitle{
    font-size: 35px;
    font-weight: 800;
    padding-left: 20px;
    border-left: 5px solid #4aade2;
}
.certificates {
    padding: 0px 0px 0px 7px;
}
.certificates .col-6{
    padding: 0px;
}

/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(74, 173, 226, .9), rgba(74, 173, 226, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}
.appointment .rounded .bg-primary.rounded{
    font-size: 20px;
    font-weight: 300;
}
.appointment .rounded .bg-primary.rounded a{
    color: #fff;
}
.appointment .rounded .bg-primary.rounded a:hover{
    text-decoration: underline;
}

/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    bottom: 0;
    opacity: 1;
}

.team-item a.btn {
    color: var(--primary);
}

.team-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px dashed var(--primary);
    border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next{
    margin: 0 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #696E77;
    background: #f7f7f7;
    border-radius: 10px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.casestudy .testimonial-item{
    margin: 0px 10px;
    min-height: 417px;
}
.casestudy .testimonial-item .bg-white{
    min-height: 385px;
}
/*** Footer ***/
.footer {
    color: #A7A8B4;
}

.ico {
    padding-bottom: 5px;
    height: 50px;
}
.ico i {
    font-size: 30px;
    color: #4aade2;
}

.footer .btn.btn-link {
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #A7A8B4;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    /* position: relative;
    content: "\f105"; */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #A7A8B4;
    margin-right: 10px;
}
.links-footer .btn-link {
    margin: 0px 20px !important;
}

.footer .btn.btn-link:hover {
    color: #4aade2;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #A7A8B4;
    border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #fff !important;
}

.footer .copyright a:hover {
    color: #FFFFFF !important;
}

.form-messages {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: #fff;
}
.alert-success {
    background: #fff;
    border: 0px;
    padding: 30px 0px;
    font-size: 25px;
    color: #2fbb35;
}
h2, .h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 160%;
}
.form-horizontal .text-danger{
    font-size: 13px;
}

@media (max-width: 1400px){
    #header-carousel .carousel-item {
        max-height: 100vh;
    }
    .display-3 {
        font-size: 40px;
    }
}

@media (max-width: 1200px){
    .display-3 {
        font-size: 30px;
    }
    .cloudManagementData .box.last .img {
        padding-right: 20px;
    }
}

@media (max-width: 1025px){
    h2, .h2 {
        font-size: 23px;
        line-height: 150%;
    }    
}

@media (max-width: 992px){
    .carousel-caption{
        background: rgb(0 0 0 / 67%);
    }
}

@media (max-width: 768px){
    .carousel-caption{
        background: rgb(0 0 0 / 67%);
    }
    .cloudManagementData .box.last .img {
        margin-bottom: 20px;
    }
    .subtitle {
        font-size: 20px;
    }
    .solutions .service-item {
        border-right: 0px ;
        padding-right: 0px;
    }
    .connect-footer{
        margin-top: 15px;        
        text-align: center;
        padding-top: 20px;
    }
    .links-footer {
        text-align: center;
        padding: 0px 10px 30px;
        margin-top: 0px;
    }
    .pt-5 {
        padding-top: 1rem !important;
    }
    .container.facts .facts-text .h-100{
        padding: 0px !important;
        font-size: 15px;
    }
    .appointment{
        margin-top: 0px !important;
        padding: 0px !important;
    }
    .navbar .navbar-nav .nav-link{
        margin-left: 25px;
    }
}