:root{
    --primary-color: #000;
}

 
        .d-flex {
            display: flex;
            flex-wrap: wrap;
        }
        .flex-fill {
            flex: 1;
            padding: 0.5rem;
            color: whitesmoke;
        }
        .fa-angle-right {
            margin-left: 0.5rem;
        }

        @media (max-width: 768px) {
            .d-flex {
                flex-direction: column;
            }
        }
    
 ::-webkit-scrollbar {
    width: 8px;
    height: 2px;
}
::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background-color: #00abc5;
}
::-webkit-scrollbar-track {
    background-color: #e8e8e8;
} 

::selection {
    background-color: #00abc5;
    color: #fff;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
    background-attachment: fixed;
    background-color: #000;
}

a,button,ul,ol,li,p,h1,h2,h3,h4,h5,h6{
    padding: 0;
    margin: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button{
    appearance: none;
}
input[type="number"]{
    -moz-appearance: textfield;
}


/* ===================== Globle Items ===================== */
   #g-recaptcha-error {
        display: none;
        color: orangered;
        font-size: 14px;
        float:right;
    }
    #phone-number-error{
        color: orangered;
        font-size: 14px;
        float:right;
    }
.btn-1{
    display: inline-block;
    border-radius: 0;
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    text-decoration: none;
    color: var(--primary-color);
    background-color: #fff;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 18px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;
    transition: .3s;
}
.btn-1:hover{
    color: #fff;
    background-color: var(--primary-color);
}
.round-btn{
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    text-decoration: none;
    color: var(--primary-color);
    background-color: #fff;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 600;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;
    transition: .3s;
}
.round-btn:hover{
    color: #fff;
    background-color: var(--primary-color);
}
.btns-box .flag-dropdown .btn:hover{color: #ffffff;}

/* ===================== End Globle Items ===================== */


/* ======================== Header Area ======================== */
header{
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--primary-color);
    transition: .5s ease;
    z-index: 997;
}
header.active {
    background-color: #000;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-bottom: 1px solid;
}
header .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
header .header .logo img{
    width: 150px;
}
header .header .logo img.logo-img-1{
    display: block;
}
header .header .logo img.logo-img-2{
    display: none;
}
header.active .header .logo img.logo-img-1{
    display: none;
}
header.active .header .logo img.logo-img-2{
    display: block;
}
header .header .navs > ul > li{
    position: relative;
    display: inline-block;
}
header .header .navs > ul > li > a{
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #fff;
    padding: 25px 5px;
    margin: 0 10px;
    cursor: pointer;
}
header .header .navs > ul > li:hover > a{
    color: #fff;
}
header .header .navs > ul > li > a.down-arrow::after{
    content: '\f107';
    font-family: "Font Awesome 5 Pro";
    line-height: 1.0;
    display: inline-block;
    margin-left: 5px;
    transition: .3s;
}
header .header .navs > ul > li:hover > a.down-arrow::after{
    transform: rotate(180deg);
}
header.active .header .navs > ul > li > a,
header.active .header .navs > ul > li > a:hover{
    color: #fff;
}
header .header .navs .sub-menu{
    position: absolute;
    top: 100%;
    width: 1200px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .5s ease-in-out;
    background-color: #010101;
    padding: 20px;
    left: -350px;
}
header .header .navs > ul > li:hover > .sub-menu{
    pointer-events: all;
    opacity: 1;
}
header .header .navs .sub-menu > ul{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 8px;
    padding: 18px 15px;
}
header .header .navs .sub-menu .header-box h5{
    color: #fff;
    font-size: 18px;
    padding-bottom: 10px;
    font-weight: 600;
}
header .header .navs .sub-menu .header-box h6{
    color: #00c1de;
    font-size: 18px;
    padding: 10px 0;
}
header .header .navs .sub-menu .header-box p{
    color: #a3a8ae;
    font-size: 14px;
}
header .header .navs .sub-menu  ul  li{
    display: block;
}
header .header .navs .sub-menu  ul  li  a{
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .005em;
    color: #fff;
    padding: 5px 0;
    transition: .1s;
}
header .header .navs .sub-menu > ul > li > a:hover{
    color: var(--primary-color);
}
header .header .btns-box{
    display: flex;
    align-items: center;
}
header .header .btns-box .request-btn{
    padding: 0 15px 0 20px;
}
header .header .btns-box .contact-btn{
    position: relative;
    display: flex;
}
header .header .btns-box .contact-btn i{
    font-size: 30px;
    color: #fff;
    margin-left: 50px;
    color: #25D366;
}
header .header .btns-box .contact-btn .header-icons i{
    padding-left: 20px;
    color: #fff;
    font-size: 18px;
}
header .header .btns-box .contact-btn:hover .btn-icon{
    background-color: var(--primary-color);
    color: #fff;
}
header .header .btns-box .contact-btn .contact-box{
    position: absolute;
    right: 0;
    padding-top: 16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .5s ease-in-out;
}
header .header .btns-box .contact-btn:hover .contact-box{
    pointer-events: all;
    opacity: 1;
}
header .header .btns-box .contact-btn .contact-info{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 8px;
    overflow: hidden;
}
header .header .btns-box .contact-btn .contact-info .contact-heading{
    font-size: 18px;
    font-weight: 600;
    color: #555;
    padding: 6px 15px;
}
header .header .btns-box .contact-btn .contact-info .info{
    padding: 10px 15px;
    background-color: rgba(204, 204, 204, 0.3);
}
header .header .btns-box .contact-btn .contact-info .info p{
    font-size: 14px;
    font-weight: 600;
    color: #555;
    padding-bottom: 8px;
}
header .header .btns-box .contact-btn .contact-info .info a img,
header .header .btns-box .contact-btn .contact-info .info a i{
    width: 25px;
    font-size: 20px;
    margin-right: 8px;
}
header .header .btns-box .contact-btn .contact-info .info a{
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}
header .header .btns-box .contact-btn .contact-info .info a:hover{
    opacity: .7;
}


@media screen and (max-width: 1199px) {
    header{
        padding: 20px 0;
    }
    header .header .navs{
        display: none;
    }
    header .header .btns-box .contact-btn{
        display: none;
    }
    header .header .btns-box{
        margin-left: auto;
        display: none;
    }
    header .header .logo img{
        width: 110px!important;
    }
    .side-menu .header .logo img {
        width: 120px!important;
        background: #000;
        padding: 10px;
        margin-left: 10px;
    }
    header .header{
        padding: 0px 5px;
    }
}

@media screen and (max-width: 575px) {
    header{
        padding: 15px 0;
    }
    header .header .logo img{
        width: 180px;
    }
    header .header .btns-box{
        display: block;
        margin-right: 15px;
    }
    header .header .round-btn{
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    header .header .btns-box .request-btn .btn-1{
        display: none;
    }
}
/* ======================== End Header Area ======================== */


/* ======================== Side-Menu Area ======================== */
.side-menu-area::-webkit-scrollbar{
    display: none;
}
.side-menu-area{
    scrollbar-width: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
}
.side-menu-area.active{
    pointer-events: all;
}
.side-menu-area .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: .5s ease;
}
.side-menu-area.active .overlay{
    opacity: 1; 
}
.side-menu-area .side-menu-box{
    scrollbar-width: none;
    width: 280px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    /* border-top-right-radius: 50px; */
    /* border-bottom-right-radius: 50px; */
    background-color: #fff;
    overflow: auto;
    transform: translateX(-150%);
    transition: .8s;
}
.side-menu-area.active .side-menu-box{
    transform: translateX(0%);
}
.side-menu-area .side-menu-box::-webkit-scrollbar{
    display: none;
}
.side-menu-area .side-menu-box .side-menu{
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.side-menu .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #eee;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    padding: 12px 0 6px;
}
.side-menu .header .logo img{
    width: 180px;
}
.side-menu .header .close-btn button{
    border: none;
    outline: none;
    background-color: transparent;
    padding: 10px 20px;
}
.side-menu .navs{
    padding: 25px 25px;
}
.side-menu .navs ul{
    list-style: none;
}
.side-menu .navs > ul > li:not(:last-child){
    border-bottom: 1px solid #eee;
}
.side-menu .navs > ul > li > a{
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* font-weight: 600; */
    color: var(--neutra-color);
    padding: 8px 0;
    cursor: pointer;
}
/* .side-menu .navs > ul > li > a.active, */
.side-menu .navs > ul > li > a:hover{
    color: var(--primary-color);
}
.side-menu .navs > ul > li > a.down-arrow::after{
    content: '\f107';
    font-family: "Font Awesome 5 Pro";
    line-height: 1.0;
    display: inline-block;
    margin-left: 5px;
    transition: .3s;
}
.side-menu .navs > ul > li > a.active.down-arrow::after{
    transform: rotate(180deg);
}
.side-menu .navs > ul > li > .sub-menu{
    display: none;
    padding-left: 10px;
    padding-bottom: 10px;
}
.side-menu .navs > ul > li > .sub-menu h5{
    padding-bottom: 10px;
    font-size: 18px;
}
.side-menu .navs .sub-menu > ul > li a{
    text-decoration: none;
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--neutra-color);
    padding: 4px 0;
}
.side-menu .navs .sub-menu > ul > li a:hover{
    color: var(--primary-color);
}
.side-menu .request-btn{
    text-align: center;
    margin-left: -15px;
    margin-bottom: 40px;
    margin-top: auto;
}
/* ======================== End Side-Menu Area ======================== */


/* ======================== Request-Form Area ======================== */
.request-form-popup::-webkit-scrollbar{
    display: none;
}
.request-form-popup{
    scrollbar-width: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    padding: 0 12px;
    display: flex;
    overflow: hidden;
    pointer-events: none;
}
.request-form-popup.active{
    pointer-events: all;
}
.request-form-popup .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: .5s ease;
}
.request-form-popup.active .overlay{
    opacity: 1; 
}
.request-form-popup .request-form-box{
    scrollbar-width: none;
    width: 100%;
    max-width: 380px;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    overflow: auto;
    padding: 25px 0;
    margin: auto;
    opacity: 0;
    transform: translateY(-50%);
    transition: .5s;
}
.request-form-popup.active .request-form-box{
    opacity: 1;
    transform: translateY(0%);
}
.request-form-popup .request-form-box::-webkit-scrollbar{
    display: none;
}
.request-form-popup .request-form-box .request-form{
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: auto;
}
.request-form .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.request-form .header .title{
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0 15px;
}
.request-form .header .close-btn button{
    border: none;
    outline: none;
    background-color: transparent;
    padding: 10px 20px;
}
.request-form .form{
    padding: 30px 20px;
}
.request-form .form .input-field{
    margin-bottom: 15px;
}
.request-form .form .input-field input,
.request-form .form .input-field textarea{
    border: none;
    outline: none;
    width: 100%;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
    padding: 10px 18px;
}
.request-form .form .input-btn input[type="submit"]{
    font-weight: 600;
    background-color: var(--primary-color);
    color: #fff;
    transition: .5s;
}
.request-form .form .input-btn input[type="submit"]:hover{
    background-color: #fff;
    color: var(--primary-color);
}
/* ======================== End Request-Form Area ======================== */




#services{
    background-color: #000;
    padding: 40px 20px;
}
#services .heading{
    margin-bottom: 40px
}
#services .heading h2{
    color: #fff;
    font-size: 44px;
   font-weight: 500;
   width: 80%;
   margin: 0 auto;
   text-align: center;
}
#services .heading h2 b{
    color: #00c1de;
    font-weight: 600;
}
#services .h-100{
    height: 100%;
    padding: 10px 0;
}
#services .box{
    border:1px solid #333e48;
    padding: 50px 25px;
    text-align: center;
    border-radius: 6px;
    transition: .5s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 10px;
}
#services .box::before {
    content: '';
    position: absolute;
    background: #f8923c;
    right: -60px;
    top: -40px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    transition: all 0.3s;
    z-index: -1;
    opacity: 0
}
#services .box:hover::before {
    /*background: #333e48;*/
    background-image: linear-gradient(120deg, #057eb9 0%, #5aa2cc 100%);
    background-size: 300% 100%;
    right: 0;
    top: 0;
    color: white;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    opacity: 1;
}
#services .box:hover{
    transform: translateY(-3px);
    border:2px solid #94d600;
}
#services .box img{
    width: 150px;
    margin: 0 auto 20px;
    display: block;
}
#services .box .des h3{
    color: #fff;
    font-weight: 300;
    font-size: 26px;
    line-height: 35px
}
#services .box .des p{
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    padding: 10px 0;
    letter-spacing: 1px;
}
#services a{
    text-decoration: none;
}
#services .box{
    /*background: url('https://www.arm.com/-/media/global/homepage/carousel/carousel-cards-bg1-550h.png?rev=f3e3a312858d4d66a2811ed72f0b3e2e&revision=f3e3a312-858d-4d66-a281-1ed72f0b3e2e');*/
}
#services .box .ser-btn{
    margin-top: 20px;
}
#services .box .ser-btn button{
    color: #00c1de;
    border:2px solid #00c1de;
    padding: 5px 25px;
    border-radius: 50px;
    background:#333e48;
    font-size: 18px;
}

.section-services {
    font-family: "Poppins", sans-serif;
    background-color: #e6edf7;
    color: #202020;
    padding-top: 115px;
    padding-bottom: 120px;
}

.section-services .header-section {
    margin-bottom: 34px;
}

.section-services .header-section .title {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 32px;
}

.section-services .header-section .title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #ff4500;
    border-radius: 3px;
}

.section-services .header-section .title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(30px);
    width: 10px;
    height: 3px;
    background-color: #504f93;
    border-radius: 3px;
}

.section-services .header-section .description {
    font-size: 14px;
    color: #282828;
}

.section-services .single-service {
    position: relative;
    margin-top: 30px;
    background-color: #000;
    border-radius: 10px;
    padding: 40px 30px;
    overflow: hidden;
    /*border: 1px solid #333e48;*/
    /*box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 10px;*/
        /*height: 244px;*/
}

.owl-nav, .owl-dots{
    display: none;
}
.section-services .single-service .content {
    position: relative;
    z-index: 20;
}

.section-services .single-service .circle-before {
    position: absolute;
    top: 0;
    right: 0px;
    transform: translate(40%, -40%);
    width: 150px;
    height: 150px;
    background-image: linear-gradient(120deg, #057eb9 0%, #5aa2cc 100%);
    border: 6px solid #504f93;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 10;
    transition: all .6s;
}

.section-services .single-service:hover .circle-before {
    width: 100%;
    height: 100%;
    transform: none;
    border: 0;
    border-radius: 0;
    opacity: 1;
}

.section-services .single-service .icon {
    display: inline-block;
    margin-bottom: 26px;
    width: 70px;
    height: 70px;
    background-color: #057eb9;
    border-radius: 5px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    transition: all .3s;
}

.section-services .single-service:hover .icon {
    background-color: #fff;
    color: #ff4500;
}

.section-services .single-service .title {
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 23px;
    transition: color .3s;
    color: #999;
}

.section-services .single-service:hover .title {
    color: #fff;
}

.section-services .single-service .description {
    margin-bottom: 20px;
    font-size: 15px;
    transition: color .3s;
    color: white;
}

.section-services .single-service:hover .description {
    color: #fff;
}

.section-services .single-service a {
    position: relative;
    font-size: 18px;
    color: #999;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s;
}

.section-services .single-service:hover a {
    color: #fff;
}

.section-services .single-service a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #057eb9;
    transition: background-color .3s;
}

.section-services .single-service:hover a:after {
    background-color: #fff;
}

#features{
    background-color: #000;
    padding: 40px 20px;
}
#features .h-100{
    height: 100%!important;
    padding: 10px 0;
}
#features a{
    text-decoration: none;
}
#features .heading{
    margin-bottom: 40px
}
#features .heading h2{
    color: #fff;
    font-size: 44px;
   font-weight: 500;
   width: 80%;
   margin: 0 auto;
   text-align: center;
}
#features .heading h2 b{
    color: #00c1de;
    font-weight: 600;
}
#features .cards{
    border:1px solid #fff;
    position: relative;
    border-radius: 10px;
    transition: .5s ease;
    margin-bottom: 30px;
    height: 100%;
    background-color: black;
}
#features .cards1:hover{
    background: url('../img/galaxy-3468_256.gif');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}
#features .cards2:hover{
    background: url('../img/space-6664_128.gif');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}
#features .cards3:hover{
    background: url('../img/cybergif.gif');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}
#features .cards4:hover{
    background: url('../img/video/video5.gif');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}
#features .cards5:hover{
    background: url('../img/nebula-1183_128.gif');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}
#features .cards6:hover{
    background: url('../img/galaxy-1998.gif');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}
#features .cards7:hover{
    background: url('../img/space-1182_128.gif');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}
#features .cards img{
    width: 100%;
    height: 100%;
    position:relative;
    border-radius:10px;
    opacity: 0.6;
}
#features .cards .des{
    padding: 0 20px;
    position: absolute;
    bottom: 0px;
    z-index: 9;
    transition: .5s ease;
}
#features .cards:hover .des{
    bottom: 0;
    transform: translateY(-20px);
}
#features .cards .des .tags{
    color: white;
    background-color: #000;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight:400;
    margin-bottom: 20px;
    z-index: 9;
    font-size: 14px;
    border: 1px solid whitesmoke;
}
#features .cards .des h3{
    color: #fff;
    font-weight: 300;
    margin: 10px 0;
    font-size: 16px;
}
#features .cards .des .feat-btn{
    opacity: 0;
    display: none;
    /*transform: translateY(-3px);
    transition: .8s ease;*/
}
#features .cards:hover .feat-btn{
    opacity: 1;
    display: block;
}
#features .cards .des .feat-btn button{
    background-color: #000;
    border:1px solid #fff;
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    color: #00c1de;
}

#features .cards::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: all 0.3s;
    z-index: 9;
    opacity: 0;
}
#features .cards:hover::before {
    /*background: #00c1de7a;*/
    /*background-image: linear-gradient(120deg, #057eb9 0%, #5aa2cc 100%);*/
        background-image: linear-gradient(120deg, #242d31 0%, #000000 100%);
    color: white;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 0.5;
}

#features .cards1:hover img{
    display: none;
}
#features .cards2:hover img{
    display: none;
}
#features .cards3:hover img{
    display: none;
}
#features .cards4:hover img{
    display: none;
}
#features .cards5:hover img{
    display: none;
}
#features .cards6:hover img{
    display: none;
}
#features .cards7:hover img{
    display: none;
}
/*#features .cards.second-color:hover::before{
    background-color: red;
}*/


#tabs{
    padding: 86px 20px 86px;
}
#tabs a{
    text-decoration: none;
}
#tabs .heading{
    margin-bottom: 40px
}
#tabs .heading h2{
    color: #fff;
    font-size: 44px;
   font-weight: 500;
   width: 80%;
   margin: 0 auto;
   text-align: center;
}
#tabs .heading h2 b{
    color: #00c1de;
    font-weight: 600;
}

#tabs .des h3{
    color: #fff;
    font-weight: 300;
}
#tabs .des p{
    color: #fff;
    font-weight: 200;
    padding: 20px 0;
}
#tabs .img img{
    width: 100%;
}
#tabs .nav li{
        margin: 0 3px;
}
#tabs .nav li button{
    color: #fff;
}
#tabs .btn-flex{
    display: flex;
    align-items: center;
}
#tabs .btn-flex a.btn1{
    background-color: #00c1de;
    color: #000;
    border-radius: 50px;
    padding: 8px 20px 7px;
    font-weight: 400;
    margin-right: 20px;
}
#tabs .btn-flex a.btn2{
    color: #00c1de;
    font-weight: 400;
    font-size: 20px;
}
#tabs .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-image: linear-gradient(120deg, #057eb9 0%, #5aa2cc 100%);
}

#counter-stats{
    background:linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgb(0 0 0 / 50%)), url('../img/bg/counter-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 150px 20px;
}

#counter-stats .stats {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
}
#counter-stats .stats img{
    max-height: 150px;
    margin-bottom: 30px;
}
#counter-stats .stats .counting{
    color: #fff;
    height: 60px;
}
#counter-stats .stats p{
    color: #fff;
    font-weight: 300;
    font-size: 20px;
}
#counter-stats .stats .counting#plus:after{
    content: '+';
    display: inline-block;
}
#counter-stats .stats .counting#b-plus:after{
    content: 'B+';
    display: inline-block;
}
#counter-stats .stats .counting#percent:after{
    content: '%';
    display: inline-block;
}
/*/ end count stats /*/


#logos{
    background-color: #fff;
    padding: 60px 20px;
}
#logos .heading{
    margin-bottom: 40px;
    text-align: center;
}
#logos .heading h2{
    color: #000;
    font-size: 44px;
   font-weight: 500;
   width: 100%;
   margin: 0 auto 20px;
   text-align: center;
}
#logos .heading h2 b{
    color: #00c1de;
    font-weight: 600;
}
#logos .heading p{
    font-size: 16px;
    width: 60%;
    margin:0 auto;
}
#logos .img img{
    /*width: 150px;*/
    margin: 0 auto;
    display: block;
    height:83px;
}
.form-box{
    background-color: black;
    padding: 20px;
    /*border-radius: 16px;*/
    padding-top: 48px;
    padding-bottom: 48px;
}
#logos .owl-carousel .owl-nav {
    position: absolute;
    left: -35px;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#logos .owl-carousel .owl-nav button i{
    color: #000;
    font-size: 50px;
}
#logos .owl-carousel .owl-dots{
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
#logos .owl-carousel .owl-dots .owl-dot{
    background-color: #e5eceb;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 6px;
}
#logos .owl-carousel .owl-dots .owl-dot.active{
    background-image: linear-gradient(120deg, #057eb9 0%, #5aa2cc 100%);
}
#logos .logo-btn{
    text-align: center;
    margin: 50px auto 0;
}
#logos .logo-btn a {
    border-radius: 0px;
    background-color: #046798;
    border-color: #046798;
    border-style: solid;
    border-width: 1px;
    color: white;
    text-decoration: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 400;
}

#blogs{
    background-color: #002b49;
    padding:60px 20px;
}
#blogs .heading{
    text-align: center;
    margin-bottom: 40px;
}
#blogs .heading h2{
    text-align: center;
    color: #fff;
    font-size: 36px;
    padding-bottom: 20px;
}
#blogs a{
    text-decoration: none
}
#blogs .heading p{
    color: #fff;
    font-weight: 300;
}
#blogs .cards{
    position: relative;
    border:1px solid #333e48;
    border-radius: 10px;
    transition: .5s ease;
    margin-top: 21px;
}
#blogs .cards img{
    width: 100%;
    border-radius: 10px;
    opacity: 0.4;
    transition: .5s ease;
}
#blogs .cards:hover{
    border: 1px solid #fff;
    transform: translateY(-3px);
}
#blogs .cards:hover img{
    opacity: 1;
}
#blogs .cards .des .logo-flex{
    display: flex;
}
#blogs .cards .des .logo-flex img{
    width: 50px!important;
    margin-right: 15px;
}
#blogs .cards .des{
    /*position: absolute;*/
    /*top: 80px;*/
   padding: 26px 20px;
}
#blogs .cards .des .logo-flex{
    margin-bottom: 20px;
}
#blogs .cards .des .logo-flex h6{
    color: #fff;
}
#blogs .cards .des .logo-flex p{
    color: #fff;
    font-size: 15px;
}
#blogs .cards .des h4{
    color: #fff;
    font-size: 28px;
    line-height: 40px;
    padding-bottom: 20px;
}
#blogs .cards .des a{
    color: #00c1de;
    font-size: 14px;
}
#blogs .cards .des a i{
    color: #ffc700;
    margin-left: 10px;
    font-size: 20px;
    vertical-align: middle;
}
#blogs .blog-btn{
    text-align: center;
    margin: 50px auto 0;
}
#blogs .blog-btn a {
    background-color: #046798;
    border: 1px solid #046798;
    color: white;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 400;
}
#technology {
    padding: 60px 0;
    background-color: #fff;
}
#technology .heading{
    margin-bottom: 20px;
}
#technology .heading h2{
    color: #333e48;
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}
#technology a{
    text-decoration: none;
}
.card-cont{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
#technology .cards{
    border:1px solid #e5eceb;
    border-radius: 10px;
    text-align: center;
    margin: 0 10px;
    height: 250px;
    transition: all .25s ease-in-out;
    position: relative;
    width: 14%;
}
#technology .cards:hover{
    border:1px solid #333e48;
}
#technology .cards .des{
    padding: 5px;
    display: block;
    height: 185px;
    overflow: hidden;
    padding-top: 50px;
    transition: all .25s ease-in-out;
}
#technology .cards .des img{
    width: 100px;
    transition: all .25s ease-in-out;
}

#technology .cards .des:hover{
    webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
}
#technology .cards .des p{
    font-size: 14px;
    color:#000;
    opacity: 0;
    transition: all .25s ease-in-out;
}
#technology .cards .des:hover p{
    opacity: 1;
}
#technology .cards .card-ftr{
    border-top: 1px solid #e5eceb;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#technology .cards .card-ftr a{
    color: #000;
    font-size: 16px;
}
#technology .cards .card-ftr a i{
    padding-left: 10px;
}
#technology .logo-btn {
    text-align: center;
    margin: 50px auto 0;
}
#technology .logo-btn a{
    border-radius: 40px;
    background-color: #ffc700;
    border-color: #ffc700;
    border-style: solid;
    border-width: 1px;
    color: #000;
    text-decoration: none;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 400;
}

#footer{
    background-color: #010101;
    padding: 40px 20px;
    border-top: 1px solid;
}
#footer .links h4{
   color: whitesmoke;
    display: block;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 10px;
}
#footer .links ul{
    margin: 0;
    padding: 0;
}
#footer .links ul li{
    list-style: none;
    line-height: 30px;
}
#footer .links ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}
#footer .social-links ul{
    margin: 0;
    padding: 0;
    text-align: end;
}
#footer .social-links ul li{
    list-style: none;
    display: inline-block;
}
#footer .social-links ul li a{
    color: #fff;
    margin-right: 20px;
    font-size: 30px;
}
#footer .footer-top{
    padding-bottom: 50px
}
#footer .footer-bottom{
    padding-top: 10px;
    /*border-top: 1px solid #fff;*/
}
#footer .footer-bottom .logo img{
    width: 150px;
    margin-right: auto;
    display: block;
}
#footer .other-links{
    padding-top: 10px;
}
#footer .other-links ul{
    margin: 0;
    padding: 0;
}
#footer .other-links ul li{
    list-style: none;
    display: inline-block;
    position: relative;
}
#footer .other-links ul li a{
    color: #a3a8ae;
    font-size: 13px;
    text-decoration: none;
    margin-right: 10px;
}
#footer .other-links ul li:not(:last-child):after{
        border-right: 1px solid #fff;
        content: '';
        display: inline;
        margin-right: 5px;
}
#footer .other-links p{
    color: #a3a8ae;
    font-size: 14px;
    padding-top: 0px;
}


#banner .banner-des{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    padding: 100px 30px 200px;
    width: 80%;
}
#banner .banner-des h2{
    font-size: 50px;
    color: #fff;
    font-weight: 300;
    line-height: 70px;
}
#banner .banner-des p{
    color: #fff;
    font-weight: 300;
    font-size: 22px;
    padding: 10px 0;
}
#banner .banner-des .btn-flex{
    margin-top: 20px;
}
#banner .banner-des .btn-flex .btn1{
    background-color: #00c1de;
    color: #000;
    border-radius: 50px;
    padding: 8px 20px 7px;
    font-weight: 400;
    margin-right: 20px;
    text-decoration: none;
    font-weight: 400;
    font-size: 20px;
}
#banner .banner-des .btn-flex .btn2{
    background-color: #000;
    border:1px solid #fff;
    color: #00c1de;
    border-radius: 50px;
    padding: 8px 20px 7px;
    font-weight: 400;
    margin-right: 20px;
    text-decoration: none;
    font-weight: 400;
    font-size: 20px;
}
#banner .owl-carousel .owl-dots{
    display: flex;
    justify-content: center;
    top: -110px;
    position: relative;
}
#banner .owl-carousel .owl-dots .owl-dot.active {
    background-image: linear-gradient(120deg, #057eb9 0%, #5aa2cc 100%);
}
#banner .owl-carousel .owl-dots .owl-dot {
    background-color: #e5eceb;
    width: 20%;
    height: 3px;
    border-radius: 0;
    margin: 0 6px;
    z-index: 999;
    position: relative;
}
#banner .down-arrow{
    top: -95px;
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: center;
}
#banner .down-arrow i{
    font-size: 38px;
    color: #fff;
    cursor: pointer;
}


.testimonials{
    margin: 40px 0;
}
.testimonials h2{
    text-align: center;
    font-size: 40px;
    font-family: 'Poppins';
    text-transform: capitalize;
    font-weight: 600;
    color: #fff;
}
.testimonials .cover-wrapper{
    margin: 2pc 0 0;
}

.testimonials .item:hover{
    box-shadow: none;
}
.testimonials .item:hover img{
    border: 4px solid #fff;
}

.testimonials .test-box img{
    width: 80px!important;
    border-radius: 50px;
    margin: 0 auto;
    border: 4px solid #113f67;
}
.testimonials .test-box h6{
    font-size: 24px;
    font-weight: bold;
    font-family: sans-serif;
}
.testimonials .test-box p i{
    color: black;
}

.testimonials .item {
    background: #fff;
    text-align: center;
    border: 1px solid darkslategrey !important;
    padding: 30px 25px;
    -webkit-box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
    box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    border:5px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
    background-color:#046798;
}
.testimonials .item:hover{
    background: #057eb9;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.testimonials .item:hover .item, .item:hover span.icon{
    background:#fff;
    border-radius:10px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.testimonials .item:hover h6, .item:hover p{
    color:#fff;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.testimonials .item .icon {
    font-size: 40px;
    margin-bottom:25px;
    color: #f91942;   
    width: 90px;
    height: 90px;
    line-height: 96px;
    border-radius: 50px;
    padding: 10px;
}
.testimonials .item .feature_box_col_one{
    background:rgba(247, 198, 5, 0.20);
    color:#113F67;
}
.testimonials .item .feature_box_col_two{
    background:rgba(255, 77, 28, 0.15);
    color:#113F67;
}
.testimonials .item .feature_box_col_three{
    background:rgba(0, 147, 38, 0.15);
    color:#113F67;
}
.testimonials .item .feature_box_col_four{
    background:rgba(0, 108, 255, 0.15);
    color:#113F67;
}
.testimonials .item .feature_box_col_five{
    background:rgba(146, 39, 255, 0.15);
    color:#113F67;
}
.testimonials .item .feature_box_col_six{
    background:rgba(23, 39, 246, 0.15);
    color:#113F67;
}
.testimonials .item p{
    font-size:15px;
    line-height:26px;
}
.testimonials .item h6 {
    margin:20px 0;
    color: whitesmoke;
    font-size: 20px;
}

.partner_wrapper .owl-carousel .owl-nav {
    position: absolute;
    left: -35px;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.partner_wrapper .owl-carousel .owl-nav button i {
    color: #fff;
    font-size: 50px;
}

.testimonials .owl-carousel .owl-nav {
    position: absolute;
    left: -35px;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.testimonials .owl-carousel .owl-nav button i {
    color: #fff;
    font-size: 50px;
}
#testimonials .description {
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
#testimonials .button {
  display: block;
  margin-top: 1rem;
  font-weight: 700;
  color: #007bff;
  cursor: pointer;
  color: white;
}
#testimonials .card{
    background-color: transparent;
    border: none;
}


.about-section{
    position:relative;
    padding:40px 0px;
    /*background-color: #000;*/
}

.about-section .content-column{
    position:relative;
    margin-bottom:40px;
}

.about-section .content-column .inner-column{
    position:relative;
    padding-top:50px;
    padding-right:100px;
}

.about-section .content-column .text{
    position:relative;
    color:#fff;
    font-size:15px;
    line-height:2em;
    margin-bottom:40px;
}

.about-section .content-column .email{
    position:relative;
    color:#fff;
    font-weight:700;
    margin-bottom:50px;
}

.about-section .image-column{
    position:relative;
    margin-bottom:50px;
}

.about-section .image-column .inner-column{
    position:relative;
    padding:40px 40px 0px 0px;
    margin-left:50px;
}

.about-section .image-column .inner-column:after{
    position:absolute;
    content:'';
    right:0px;
    top:0px;
    left:40px;
    bottom:100px;
    z-index:-1;
    border:2px solid #00c1de;
}

.about-section .image-column .inner-column .image{
    position:relative;
}

.about-section .image-column .inner-column .image:before{
    position:absolute;
    content:'';
    left:-50px;
    bottom:-50px;
    width:299px;
    height:299px;
    background:url(img/pattern-2.png) no-repeat;
}

.about-section .image-column .inner-column .image img{
    position:relative;
    width:100%;
    display:block;
}

.about-section .image-column .inner-column .image .overlay-box{
    position:absolute;
    left:40px;
    bottom:48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box{
    position:relative;
    color:#252525;
    font-size:24px;
    font-weight:700;
    line-height:1.4em;
    padding-left:125px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box .number{
    position:absolute;
    left:0px;
    top:0px;
    width:110px;
    height:110px;
    color:#00c1de;
    font-size:68px;
    font-weight:700;
    line-height:105px;
    text-align:center;
    background-color:#ffffff;
    border:1px solid #000000;
}
.about-section .btn-style-three:before {
    position: absolute;
    content: '';
    left: 10px;
    top: 10px;
    z-index: -1;
    right: -10px;
    bottom: -10px;
    /*background: url(https://i.ibb.co/DKn55Qz/pattern-1.jpg) repeat;*/
}
.about-section .btn-style-three:hover {
    color: #ffffff;
    background: #00c1de;
}
.about-section .btn-style-three {
    position: relative;
    line-height: 24px;
    color: #252525;
    font-size: 18px;
    font-weight: 700;
    background: none;
    display: inline-block;
    padding: 11px 40px;
    background-color: #00c1de;
    text-transform: capitalize;
    border: 2px solid #00c1de;
    text-decoration: none;
}
.sec-title2{
    color:#fff;
}
.sec-title {
    position: relative;
    padding-bottom: 40px;
}
.sec-title .title {
    position: relative;
    color: #00c1de;
    font-size: 18px;
    font-weight: 700;
    padding-right: 50px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: capitalize;
}
.sec-title .title:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 7px;
    width: 40px;
    height: 1px;
    background-color: #bbbbbb;
}
.sec-title h2{
    color: #fff;
}

#features2 {
            padding: 40px 0;
        }
        #features2 .section-title{
            text-align: center;
            font-size: 40px;
            font-family: 'Poppins';
            text-transform: capitalize;
            font-weight: 600;
            color: #fff;
            margin-bottom: 40px;
        }
        
        #features2 .icon {
            display: inline-block;
            width: 60px;
            height: 60px;
            border-radius: 4px;
            text-align: center;
            position: relative;
            z-index: 1
        }
        
        #features2 .content-left span {
            float: right
        }
        
        #features2 .content-left .text {
            text-align: right
        }
        
        #features2 .content-right span {
            float: left
        }
        
        #features2 .box-item {
            box-shadow: 0 0 12px #f4f4f4;
            padding: 15px;
            line-height: 22px;
            margin-top: 30px;
            border-radius: 3px;
            background-color: #fff;
            -webkit-transition: all .3s ease-in-out;
            -mox-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
            position: relative;
            top: 0
        }
        
        #features2 .box-item .icon {
            text-align: center;
            margin: 12px;
            -webkit-transition: all .2s linear;
            -moz-transition: all .2s linear;
            -o-transition: all .2s linear;
            transition: all .2s linear
        }
        
        #features2 .box-item .icon i {
            color: #008de2;
            font-size: 30px;
            -webkit-transition: all .2s linear;
            -moz-transition: all .2s linear;
            -o-transition: all .2s linear;
            transition: all .2s linear
        }
        
        #features2 .box-item .text h4 {
            cursor: pointer;
            font-size: 18px;
            font-weight: 500;
            line-height: 22px;
            -webkit-transition: all .2s linear;
            -moz-transition: all .2s linear;
            -o-transition: all .2s linear;
            transition: all .2s linear
        }
        
        #features2 .box-item .text p {
            font-size: 14px;
            line-height: 26px
        }
        
        #features2 .box-item:hover {
            box-shadow: 0 10px 22px 10px rgba(27, 38, 49, .1)
        }
        
        #features2 .box-item:hover h4 {
            color: #008de2
        }
        
        #features2 .show-box {
            margin-top: 50px
        }
        
        #features2 .show-box img {
            width: 100%
        }

#about-banner{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgb(0 0 0 / 50%)), url(../img/industries-banner.webp);
    background-size: cover;
    background-position: center;
    padding: 100px;
}
#about-banner h2{
    text-align: center;
    color: #fff;
    font-size: 42px;
}

#about-banner.products_banner{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgb(0 0 0 / 20%)), url(../img/product_banner.png);
    background-size: cover;
    background-position: center;
    padding: 0;
    height: 100%;
    min-height: 400px;
    position: relative;
}

#about-banner.products_banner h2{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
}

#under_banner{
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #bebebe;
    background-color: #000;
    z-index: 9;
    
}

#under_banner h5{
    color: #ffffff;
    font-weight: 200;
    margin: 10px 0 0;
}

#kloudcault_archive{
    background: #000000;
    padding: 110px 0 80px;
}

#kloudcault_archive .kloud_archive_smart{
    background: url(../img/Kloudvault-backdrop.png);
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}

#kloudcault_archive .kloud_archive_smart .kloud_archive_text{
    width: 55%;
    padding-left: 60px;
}

#kloudcault_archive .kloud_archive_smart h2{
    font-size: 44px;
    color: #ffffff;
    margin: 0 0 30px;
}

#kloudcault_archive .kloud_archive_smart p{
    font-size: 22px;
    color: #ffffff;
    margin: 0 0 30px;
    font-weight: 200;
}

#kloudcscan_instant{
    background: #000000;
    padding: 20px 0 40px;
    border-bottom: 1px solid #bebebe;
    margin: 0 0 34px;
}

#kloudcscan_instant .kloud_archive_smart{
    background: url(../img/kloudscan-backdrop.png);
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}

#kloudcscan_instant .kloud_archive_smart .kloud_archive_text{
    width: 65%;
    padding-left: 60px;
}

#kloudcscan_instant .kloud_archive_smart h2{
    font-size: 44px;
    color: #ffffff;
    margin: 0 0 30px;
}

#kloudcscan_instant .kloud_archive_smart p{
    font-size: 22px;
    color: #ffffff;
    margin: 0 0 30px;
    font-weight: 200;
}

.btn--theme {
    color: #ffffff !important;
    border-color: #04aaff !important;
    background-color: #04aaff !important;
}
.btn.btn-md {
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 10px;
    margin: auto;
    width: 100%;
    max-width: 170px;
    display: block;
}


#about-banner.kloudvault_banner{
    background: url(../img/kloudvault_mainbanner.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
    height: 100%;
    min-height: 400px;
    position: relative;
    border-bottom: 1px solid #bebebe;
}

#about-banner.kloudvault_banner.kloudscan_banner{
    background: url(../img/kloudscan_mainbg.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 0;
    height: 100%;
    min-height: 400px;
    position: relative;
    border-bottom: 1px solid #bebebe;
}


#about-banner.kloudvault_banner h2{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
}

#under_kloudvault_banner{
    background: #000000; 
    padding: 70px 0; 
    text-align: center;
}

#under_kloudvault_banner h2{
    font-size: 40px;
    color: #ffffff;
    margin: 0 0 30px;
}

#under_kloudvault_banner p{
    font-size: 28px; 
    color: #ffffff; 
    font-weight: 200;
}

#kloudcault_consultation{
    background: url(../img/kloudvault_cta.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

#kloudcault_consultation.kloudscan_consult{
    background: url(../img/kloudscan_consult.png);
    background-size: cover;
    background-position: center;
    padding: 180px 0;
    background-repeat: no-repeat;
}

#kloudcault_consultation .kloud_archive_text{
    width: 50%;
}

#kloudcault_consultation h2{
    font-size: 40px;
    color: #ffffff;
    margin: 0 0 30px;
}

#kloudcault_consultation .btn--theme {
    color: #ffffff !important;
    border-color: #04aaff !important;
    background-color: #04aaff !important;
}

#kloudcault_consultation  .btn.btn-md {
    font-size: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    margin: 0;
    width: 100%;
    max-width: 280px;
    display: block;
    font-weight: 500;
}

.kloud_vault_need {
    padding: 0 0 50px;
    background: #000000;
}

.kloud_vault_need.kloudscan_use {
    padding: 50px 0;
    background: #082c45;
}
.kloud_vault_need .section-title h2{
    color: #ffffff;
    margin: 0 0 70px;
    font-size: 40px;
    text-align: center;
}

.kloud_vault_need .offer_wrapper {
    text-align: center;
    text-align: center;
    vertical-align: center;
    background-color: black;
    border: 1px solid #c0c0c059;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 12px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.kloud_vault_need.kloudscan_use .offer_wrapper {
    border: 1px solid #ffffff;
}

.kloud_vault_need .offer_wrapper:hover {
    border-color: transparent;
    -webkit-box-shadow: 0 4px 12px 0 var(--tra-black);
    -moz-box-shadow: 0 4px 12px 0 var(--tra-black);
    box-shadow: 0 4px 12px 0 var(--tra-black);
}

.kloud_vault_need .offer_wrapper h6{
    color: #66b9e2;
    font-size: 18px;
}

.kloud_vault_need .offer_wrapper img{
    width: 100%;
    max-width: 70px;
    margin: 20px auto 0;
}

#vault_special img{width: 100%;}

#about-des{
    padding: 40px 0;
}
#about-des  h2{
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}
#about-des .des h4{
    color: #fff;
    padding-bottom: 20px;
}
#about-des .des p{
    color: #fff;
}
#about-des img{
    width: 100%;
}

#process {
    padding: 30px 0;
    background: #057eb9;
}

#process .howitWork {
    text-align: center;
}
#process .howitWork .head{
    margin-bottom: 40px;
}
#process .howitWork h2 {
    color: #fff;
    font-size: 40px;
    margin-top: 0;
    font-weight: 600;
    font-family: 'Poppins';
}
#process .howitWork p {
    line-height: normal;
    color: #ebf2fb;
    font-size: 18px;
}
#process ol.rounded-list {
    counter-reset: li;
    list-style: none;
    padding: 0px;
    margin: 0px 0 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}
#process ol.rounded-list:before {
    content: "";
    background: #fff;
    height: 2px;
    width: 80%;
    position: absolute;
    top: 30px;
    left: -10px;
    right: 0;
    margin: 0 auto;
}
#process ol.rounded-list li:first-child {
    margin-top: 0;
}
#process ol.rounded-list li {
    margin: 0;
    float: left;
    width: 16%;
    padding: 60px 0 0;
    text-align: center;
}
#process .rounded-list p {
    position: relative;
    display: block;
    padding: 10px 0;
    color: #565656;
    transition: all .3s ease-out;
}
#process .rounded-list p:before {
    content: counter(li);
    counter-increment: li;
    position: absolute;
    top: 0;
    margin-top: -51px;
    background: #000;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 3em;
    transition: all .3s ease-out;
    color: #fff;
    font-size: 18px;
    left: 45%;
}
#process ol.rounded-list li .stepS {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
}
#process ol.rounded-list li .stepDisc {
    font-size: 14px;
    color: #fff;
}

#navigation{
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #bebebe;
    position: sticky;
    top: 70px;
    background-color: #000;
    z-index: 9;
}
#navigation .nav-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#navigation .nav-flex a img{
    width: 45px;
    filter: grayscale(1);
}
#navigation .nav-flex a{
    min-height: 50px;
    display: block;
    font-size: 18px;
    color: #fff;
    text-decoration: none;

}
.services-nav{
    padding: 30px 0;
}
.services-nav .des h2{
    color: #fff;
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
}
.services-nav .image-overlay img {
    width: 100%;
    position: relative;
}
.services-nav .image-overlay{
    position: relative;
}
.services-nav .image-overlay .overlay{
    position: absolute;
    width: 50%;
    background: rgba(0, 0, 0, 0.8);
    height: 100%;
    top: 0;
    right: 30px;
    color: #fff;
   padding: 4rem;
}
.services-nav .image-overlay .overlay h4{
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    padding-bottom: 20px;
}
.services-nav .image-overlay .overlay p{
    font-size: 12px;
    color: #fff;
    margin-bottom: 10px;
}
.services-nav .image-overlay .overlay .so-we p:first-child {
    color: #00abc5;
    font-size: 20px;
    margin: 0 0 8px;
}
.services-nav .image-overlay .overlay .delivered p {
    color: #00abc5;
    font-size: 20px;
    margin: 0 0 8px;
}
.services-nav .image-overlay .overlay .delivered ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.services-nav .image-overlay .overlay .delivered li {
    display: inline-block;
    width: 24%;
    font-size: 24px;
    vertical-align: top;
    font-weight: bold;
    border-right: 1px solid rgba(255, 255, 255, 0.56);
    padding: 0 2%;
    text-align: center;
}
.services-nav .image-overlay .overlay .delivered li span {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.3;
}
.services-nav .image-overlay .overlay .delivered li:last-child {
    border-right: none;
}

#ser-contact{
    padding: 90px 0 26px;
    /*background: url('https://www.teamcomputers.com/appleMicrositeAssets/images/get-in-touch-bg.jpg') 50% 82% no-repeat;*/
    background-size: 100%;
}
#ser-contact .get-in-touch{
    width: 60%;
    margin: 0 auto;
}
.get-in-touch h2{
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 30px;
}
.get-in-touch input.form-control, textarea.form-control {
    background-color: #f5f5f5;
    border: none;
    border-radius: 0;
    font-size: 14px;
    margin-bottom: 1.5rem;
    height: 45px;
}

.get-in-touch textarea.form-control {
    background-color: #f5f5f5;
    border: none;
    border-radius: 0;
    font-size: 14px;
    margin-bottom: 1.5rem;
    height: 90px;
}
.get-in-touch button{
    background-color: #333e48;
    border: 4px solid #00c1de;
    color: #00c1de;
    padding: 10px 40px;
    border-radius: 50px;
    font-size: 20px;
    margin-bottom: 20px;
}

#supoort{
    padding: 40px 0px;
    background: #f4f4f7;
}
#supoort h2{
    text-align: center;
    font-size: 42px;
    color: #000;
    padding-bottom: 40px;
}
#supoort .h-100{
    height: 100%;
    padding: 10px 0
}
#supoort .h-100 .box{
    background: #000;
    border:1px solid #0d6efd;
    text-align: center;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 100%;
}
#supoort .h-100 .box i{
    font-size: 40px;
    color: #00c1de;
    padding: 10px 0;
}
#supoort .h-100 .box h4{
    color: #fff;
    font-size: 28px;
}
#supoort .h-100 .box p{
    padding: 10px 0;
    font-size: 14px;
    color: #999;
}
#supoort .h-100 .box a {
    background-color: #333e48;
    border: 2px solid #00c1de;
    color: #00c1de;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}


#contact-form{
    padding: 40px 0;
}

.contact-info {
  width: 50%;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  height: 70px;
  width: 70px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
}

.contact-info-icon i {
  font-size: 30px;
  line-height: 70px;
}

.contact-info-content {
  margin-left: 20px;
}

.contact-info-content h4 {
  color: #1da9c0;
  font-size: 1.4em;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: #FFF;
  font-size: 1em;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  width: 45%;
  padding-bottom: 20px;
  padding-top: 20px;
}

.contact-form h2 {
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

.contact-form .input-box {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contact-form .input-box input,
.contact-form .input-box textarea{
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
}

.contact-form .input-box span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}



.contact-form .input-box input[type="submit"]
{
  width: 100%;
  background: #00bcd4;
  color: #FFF;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  border: 1px solid #00bcd4;
  transition: 0.5s;
}

.contact-form .input-box input[type="submit"]:hover
{
  background: #FFF;
  color: #00bcd4;
}




/* ======================== Blog Detail Area ======================== */

#our-blog .learn-btn{
    text-align: center;
    padding: 40px 0;
}
#our-blog .learn-btn a{
    border: 1px solid var(--secondary-color);
    border-radius: 40px;
    padding: 10px 30px;
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
}

#blog-detail{
    padding: 40px 0;
}

#blog-detail  .head-detail h3{
    color: #fff;
    font-size: 24px;
    text-align: center;
    font-weight: 600;
}
#blog-detail  .head-detail .custom-flex{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 10px;
}
#blog-detail  .head-detail .custom-flex img{
    margin-right: 10px;
}
#blog-detail  .head-detail .custom-flex p{
    font-size: 14px;
    font-weight: 500;
    color: #7E7E7E;
}
#blog-detail  .head-detail .custom-flex p span{
    color: #fff;
    padding: 0 10px;
}
#blog-detail  .head-detail .custom-flex .p2 img{
    margin-left: 10px;
    margin-right: 0px;
}
#blog-detail  .head-detail .custom-flex p span.sp2{
    font-family: 'Poppins';
    color: #7E7E7E;
}
#blog-detail  .head-detail .custom-flex p span.sp3{
    font-family: 'Poppins';
    font-size: 16px;
    vertical-align: middle;
    color: var(--secondary-color);
}
#blog-detail  .des-detail{
    padding: 0 200px;
}
#blog-detail  .des-detail .social-icons ul{
    margin: 0;
    padding: 0;
    text-align: end;
}
#blog-detail  .des-detail .social-icons ul li{
    list-style: none;
    display: inline-block;
    padding-right: 12px;
}
#blog-detail  .des-detail .social-icons ul li a{
    text-decoration: none;
    color: #000000c7;
}
#blog-detail  .des-detail .blog-detail-slider .h-100{
    height: 100%;
    padding: 10px 0;
}
#blog-detail  .des-detail .blog-detail-slider .img{
    position: relative;
}
#blog-detail  .des-detail .blog-detail-slider .img img{
    width: 100%;
    position: relative;
}
#blog-detail  .des-detail .blog-detail-slider .img .heart{
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0px 0px 29px -6px rgb(0 0 0 / 17%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9;
}
#blog-detail  .des-detail .blog-detail-slider .img .heart i{
    color: #E85149;
    font-size: 18px;
    padding-bottom: 6px;
}
#blog-detail  .des-detail .blog-detail-slider .img .heart p{
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    color: #7E7E7E;
    padding: 0;
    margin: 0;
}
#blog-detail .owl-carousel .owl-dots{
    display: flex;
    justify-content: center;
    top: 6px;
    position: relative;
    align-items: center;
}
#blog-detail .owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 50px;
    height: 2px;
    border-radius: 0;
    background-color: #C4C4C4;
    opacity: 0.65;
    margin: 0 4px;
}
#blog-detail .owl-carousel .owl-dots .owl-dot.active {
    opacity: 1;
    background: #00c1de;
    height: 6px;
}
#blog-detail  .des-detail .des{
    padding-top: 20px;
}
#blog-detail  .des-detail .des h4{
    font-size: 20px;
    font-weight: 600;
    color: #fff;   
    text-transform: capitalize; 
}
#blog-detail  .des-detail .des p{
    font-size: 14px;
    padding: 10px 0;
    text-align: justify;
    color: #fff;
}
#blog-detail  .des-detail .des ul{
    margin: 0;
    padding: 0;
}
#blog-detail  .des-detail .des ul li{
    list-style: decimal;
    color: #fff;
    font-size: 14px;
    line-height: 30px;
}
#blog-detail  .des-detail .video-img img{
    width: 100%;
}
#blog-detail  .des-detail .btn-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    position: relative;
}
#blog-detail  .des-detail .btn-flex::before{
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 1px;background-color: #00c1de;
}
#blog-detail  .des-detail .btn-flex::after{
    content: '';
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 1px;background-color: #00c1de;
}
#blog-detail  .des-detail .btn-flex div a{
    background-color: #00c1de;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 12px;
}
#blog-detail  .des-detail .post-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
} 
#blog-detail  .des-detail .post-flex a{
    text-decoration: none;
    color: #00c1de;
    font-size: 18px;
    font-weight: 600;
}

#our-blog{
    padding: 40px 0;
}
#our-blog .head{
    padding-bottom: 40px;
}
#our-blog .head p{
    text-align: center;
    color: #00c1de;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 5px;
}
#our-blog .head h2{
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    text-transform: capitalize;
    text-align: center;
}
#our-blog a{
    text-decoration: none;
}
#our-blog .h-100{
    height: 100%;
    padding: 20px 20px;
}
#our-blog .h-100 .box{
    width: 100%;
    position: relative;
    transition: .6s;
}

#our-blog .h-100 .box .card{
    height: 100%;
}
#our-blog .h-100 .box .blog-img{
    position: relative;
}
#our-blog .h-100 .box .card .blog-img img{
    width: 100%;
    height: 100%;
    position: relative;
}

#our-blog .h-100 .box .card .card-body{
    padding: 50px 30px 20px;
    position: relative;
}
#our-blog .h-100 .box .card .card-body .heart{
    position: absolute;
    top: -40px;
    left: 25px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0px 0px 29px -6px rgba(0, 0, 0, 0.17);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9;
}
#our-blog .h-100 .box .card .card-body .heart i{
    color: #E85149;
    font-size: 18px;
    padding-bottom: 6px;
}
#our-blog .h-100 .box .card .card-body .heart p{
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    color: #7E7E7E;
    padding: 0;
    margin: 0;
}
#our-blog .h-100 .box .card .card-body span{
    text-align: start;
    color: #00c1de;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 5px;
}
#our-blog .h-100 .box .card .card-body h4{
    font-size: 18px;
    color: #000;
    padding: 10px 0;
    font-weight: 700;
}
#our-blog .h-100 .box .card .card-body p{
    color: #7E7E7E;
    font-size: 14px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
}
#our-blog .h-100 .box .card .card-body p.p2{
    font-family: 'Poppins';
}
#our-blog .h-100 .box .card .card-body ul{
    margin: 0;
    padding: 0;
}
#our-blog .h-100 .box .card .card-body ul li{
    list-style: none;
    display:inline-block;
}
#our-blog .h-100 .box .card .card-body ul li i{
    font-size: 16px;
    color: #7E7E7E;
    margin-right: 10px
}
#our-blog .h-100 .box .card .card-body ul li i:hover{
    color: #00c1de;
}
#our-blog .owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 50px;
    height: 2px;
    border-radius: 0;
    background-color: #C4C4C4;
    opacity: 0.65;
    margin: 0 4px;
}
#our-blog .h-100 .box:hover{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#our-blog .h-100 .box .card .blog-img::before{
    content: "";
    width: 100%;
    position: absolute;
    background: rgba(35, 157, 98, 0.6);
    height: 0%;
    z-index: 1;
    transition: all .5s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
#our-blog .h-100 .box:hover .card .blog-img::before{
    height: 100%;
    opacity: 1;
    visibility: visible;
}
#our-blog .h-100 .box:hover .card .card-body .heart i{
    -webkit-text-stroke-color: red;
    -webkit-text-stroke-width: 1.2px;
}
#our-blog .owl-carousel .owl-dots .owl-dot.active{
    opacity: 1;
    background: var(--secondary-color);
    height: 6px;
}


.photo-gallery{
    padding: 40px 0;
}

@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.gallery-item {
  display: block;
}

.gallery-item img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s;
}

.gallery-item:hover img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
}

.lightbox-modal .modal-content {
  background-color: var(--lightbox);
}

.lightbox-modal .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  z-index: 10;
  filter: invert(1) grayscale(100);
}

.lightbox-modal .modal-body {
  display: flex;
  align-items: center;
  padding: 0;
}

.lightbox-modal .lightbox-content {
  width: 100%;
}

.lightbox-modal .carousel-indicators {
  margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
  background-color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-inner {
  width: 75%;
}

.lightbox-modal .carousel-inner img {
  animation: zoomin 10s linear infinite;
}

.lightbox-modal .carousel-item .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 2rem;
  background-color: var(--lightbox);
  color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  width: auto;
}

.lightbox-modal .carousel-control-prev {
  left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
  right: 1.25rem;
}

@media (min-width: 1400px) {
  .lightbox-modal .carousel-inner {
    max-width: 60%;
  }
}

[data-bs-theme = "dark"] .lightbox-modal .carousel-control-next-icon,
[data-bs-theme = "dark"] .lightbox-modal .carousel-control-prev-icon {
    filter: none;
}

.btn-fullscreen-enlarge,
.btn-fullscreen-exit {
  position: absolute;
  top: 1.25rem;
  right: 3.5rem;
  z-index: 10;
  border: 0;
  background: transparent;
  opacity: .6;
  font-size: 1.25rem;
}

.bi {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.035em;
  fill: currentcolor;
}



/* ======================== Hero Area ======================== */
.hero-area {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-area .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.hero-area .hero-bg::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-area .hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-box {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-box .hero-content {
    padding-top: 50px;
    color: #fff;
}

.hero-content-box .hero-content .display-text span {
    line-height: 0.5;
}

.hero-content-box .hero-content .display-text span.experts,
.hero-content-box .hero-content .display-text span.setup {
    font-family: "Poppins-ExtraBold";
    font-size: 82px;
    padding: 0 5px;
}

.hero-content-box .hero-content .display-text span.in,
.hero-content-box .hero-content .display-text span.company {
    font-family: "Poppins-Light";
    font-size: 42px;
}

.hero-content-box .hero-content .display-text span.in {
    padding-left: 10px;
}

.hero-content-box .hero-content .display-text span.company {
    padding-left: 170px;
    padding-right: 5px;
}

.hero-content-box .hero-content .display-sub-text {
    max-width: 620px;
    height: 50px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 10px;
}

.hero-content-box .hero-content .display-sub-text p {
    font-size: 20px;
    background-color: #00c1de;
    color: #000;
}

.hero-content-box .hero-content .display-btn {
    text-align: center;
    padding-top: 25px;
}

.hero-content-box .hero-content .display-btn a {
    text-decoration: none;
    display: inline-block;
    background-color: #057eb9;
    color: #fff;
    border-radius: 5px;
    width: 188px;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px 0px;
    margin: 0 5px;
}

.hero-content-box .hero-content .display-btn br {
    display: none;
}

@media screen and (max-width: 767px) {
    .hero-content-box .hero-content {
        padding-top: 0;
    }

    .hero-content-box .hero-content .display-text br {
        display: none;
    }

    .hero-content-box .hero-content .display-text span {
        line-height: 1.4;
    }

    .hero-content-box .hero-content .display-text span.experts,
    .hero-content-box .hero-content .display-text span.setup {
        display: block;
        font-size: 92px;
    }

    .hero-content-box .hero-content .display-text span.company {
        padding-left: 0;
    }

    .hero-content-box .hero-content .display-text span.in {
        text-transform: capitalize;
        padding-left: 10px;
    }

    .hero-content-box .hero-content .display-text span.in,
    .hero-content-box .hero-content .display-text span.company {
        font-weight: 400;
        font-size: 38px;
    }

    .hero-content-box .hero-content .display-text span.setup {
        margin-top: -15px;
    }

    .hero-content-box .hero-content .display-sub-text {
        max-width: 280px;
        height: 50px;
        margin-top: 24px;
    }

    .hero-content-box .hero-content .display-sub-text p {
        font-size: 14px;
    }

    .hero-content-box .hero-content .display-btn {
        text-align: left;
        display: none;
    }

    .hero-content-box .hero-content .display-btn a {
        margin: 5px 0;
    }

    .hero-content-box .hero-content .display-btn br {
        display: block;
    }
}

@media screen and (max-width: 575px) {
    .hero-content-box .hero-content .display-text span.experts,
    .hero-content-box .hero-content .display-text span.setup {
        font-size: 72px;
    }

    .hero-content-box .hero-content .display-text span.in,
    .hero-content-box .hero-content .display-text span.company {
        font-size: 32px;
    }

    .hero-content-box .hero-content .display-text span.setup {
        margin-top: -10px;
    }

    .hero-content-box .hero-content .display-sub-text p {
        font-size: 12px;
    }
}

.clip-path-shape {
    text-align: center;
}

.clip-path-shape p {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 5px 40px;
}

.clip-path-shape.heading p {
    font-size: 24px;
}

@media screen and (max-width: 575px) {
    .clip-path-shape.heading p {
        font-size: 20px;
    }
}


        .typed-cursor{
          opacity: 1;
        }
        .typed-cursor.typed-cursor--blink{
          animation: typedjsBlink 0.7s infinite;
          -webkit-animation: typedjsBlink 0.7s infinite;
                  animation: typedjsBlink 0.7s infinite;
        }
        @keyframes typedjsBlink{
          50% { opacity: 0.0; }
        }
        @-webkit-keyframes typedjsBlink{
          0% { opacity: 1; }
          50% { opacity: 0.0; }
          100% { opacity: 1; }
        }

.view {
    overflow: hidden;
    width: 100%;
    position: relative;
}
.view>.content {
    position: relative;
    padding-top: 60px;
    padding-bottom: 70px;
    -webkit-transition: -webkit-transform .5s;
    -moz-transition: -moz-transform .5s;
    -o-transition: -o-transform .5s;
    transition: transform .5s;
}
.colors-h h6 {
    color: #ccb08a;
}
.colors-h p{
        color:white;
    margin-bottom: 10px;
}
.colors-h .highlight, .colors-h.highlight {
    color:white;
}
.colors-h a, a.colors-h {
        color: white !important;
}
.ctb-btn{
    margin-top: 30px;
}
.ctb-btn a{
    background-color: #333e48;
    border: 4px solid #00c1de;
    color: #00c1de;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
}
.form-box input{
    border:1px solid #ffffff4a !important;
    background: transparent;
    margin-bottom: 20px;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
        color: white;
}
.form-box select{
    color: #dddddd75;
    border:1px solid #ffffff4a !important;
    background: transparent;
    margin-bottom: 20px;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
    position: relative;
}
.custom-arow{
    position: relative;
}
.custom-arow:after{
    display: math;
    margin-left: 0.255em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    margin-left: -5px;
    margin-top: 10px;
    color: #fff;
    top: 10px;
    position: absolute;
    right: 25px;
}
.form-box textarea{
    border:1px solid #ffffff4a !important;
    background: transparent;
    margin-bottom: 20px;
    width: 100%;
    height: 100px;
    padding: 10px 10px;
    font-size: 14px;
    resize: none;
}
.form-box button{
    width: 100%;
    border: none;
    background: transparent;
    color: #fff;
    border:1px solid #00c1de !important;
    height: 45px;

}
/* ======================== End Hero Area ======================== */


/* -----------------------------------
      Gallery Section
--------------------------------------*/
.portfolio-section {
  padding: 50px 50px;
  background-color: #000;
}
.portfolio-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}
.portfolio-menu {
  text-align: center;
}
.control {
  background: #000;
  color: #fff;
  padding: 5px 10px;
  border: 1px solid #343a40;
  border-radius: 3px;
  margin: 5px;
  cursor: pointer;
  -webkit-transition: all 05s ease;
  -moz-transition: all 05s ease;
  -ms-transition: all 05s ease;
  -o-transition: all 05s ease;
  transition: all 0.5s ease;
}
.control:hover {
  background: #343a40;
}
.mixitup-control-active {
  color: #fff;
  background: #343a40;
}
.fancybox-container button:focus {
  outline: 0;
  box-shadow: none;
}
.portfolio-item {
  padding-top: 30px;
}
.pd {
  padding: 0;
  padding: 10px;
  position: relative;
}
.pd img {
  height: 100%;
  transition: all 0.5s;
  position: relative;
  width: 100%;
}
.portfolio-overlay {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  text-align: center;
  visibility: hidden;
  transition: all 0.5s;
  transform: scale(0);
}
.portfolio-overlay p,
.portfolio-overlay a {
  position: relative;
  z-index: 4;
}
.portfolio-overlay::before {
  content: "";
  width: 0;
  height: 0;
  border-width: 0;
  position: absolute;
  left: 10%;
  top: 10%;
  transition: 50ms height ease 150ms;
  z-index: 3;
}
.portfolio-overlay::after {
  content: "";
  width: 0;
  height: 0;
  border-width: 0;
  position: absolute;
  right: 10%;
  bottom: 10%;
  transition: 100ms width ease 200ms;
  z-index: 3;
}
.portfolio-item:hover .portfolio-overlay::before {
  width: 80%;
  height: 80%;
  border-top: 1px solid #50977f;
  border-right: 1px solid #50977f;
  transition: width 0.1s ease 0.3s, height 0.1s ease 0.5s;
}
.portfolio-item:hover .portfolio-overlay::after {
  width: 80%;
  height: 80%;
  border-bottom: 1px solid #50977f;
  border-left: 1px solid #50977f;
  transition: width 0.1s ease 0.6s, height 0.1s ease 0.7s;
}
.portfolio-item li:hover .portfolio-overlay {
  visibility: visible;
  transform: scale(1);
}
.portfolio-overlay .category {
  margin-top: 70px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.portfolio-overlay .magnify-icon {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background: #50977f;
  margin: 0 5px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s;
}
.portfolio-overlay .magnify-icon:hover {
  background: #000;
}
.portfolio-overlay .magnify-icon p span i {
  font-size: 15px;
  color: #fff;
  line-height: 40px;
  cursor: pointer;
}


.section-team {
    font-family: "Poppins", sans-serif;
    padding: 30px 0 0;
}

.section-team .header-section {
    margin-bottom: 50px;
}

.section-team .header-section .small-title {
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 500;
    color: #3e64ff;
}

.section-team .header-section .title {
    font-weight: 700;
    font-size: 45px;
    color: #fff;
}

.section-team .single-person {
    /*margin-top: 30px;*/
    padding: 30px;
    /*background-color: #f6f9ff;*/
    border-radius: 5px;
    text-align: center;
        /*background: linear-gradient(to right, #016cec, #00b5f7);*/
}

.section-team .single-person:hover {
    /*background: linear-gradient(to right, #016cec, #00b5f7);*/
}

.section-team .single-person .person-image {
    position: relative;
    /*margin-bottom: 50px;*/
    border-radius: 50%;
    /*border: 4px dashed transparent;*/
    transition: padding .3s;
}

.section-team .single-person:hover .person-image {
    padding: 12px;
    /*border: 4px dashed #fff;*/
}

.section-team .single-person .person-image img {
    width: 100%;
    border-radius: 50%;
}

.section-team .single-person .person-image .icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,50%);
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: linear-gradient(to right, #016cec, #00b5f7);
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
}

.section-team .single-person:hover .person-image .icon {
    background: none;
    background-color: #fff;
    color: #016cec;
}

.section-team .single-person .person-info .full-name {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
}

.section-team .single-person .person-info .speciality {
    text-transform: uppercase;
    font-size: 14px;
    color: #016cec;
}

.section-team .single-person:hover .full-name,
.section-team .single-person:hover .speciality {
    color: #fff;
}



#why{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgb(0 0 0 / 80%)), url('https://kloudrac.com/wp-content/uploads/2022/11/choose-us-bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
}
#why .heading{
    text-align: center;
    margin-bottom: 40px;
}
#why .heading h2{
    text-align: center;
    color: #fff;
    font-size: 40px;
}
#why .heading p{
    font-size: 18px;
    color: #fff;
    padding: 10px 0;
}
#why .box{
    border-style: solid;
    border-color: #FFFFFF;
    box-shadow: 1px 0px 10px 3px rgba(255, 255, 255, 0.44);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 25px 25px 25px 25px;
    --e-column-margin-right: 25px;
    --e-column-margin-left: 25px;
    padding: 30px 30px 30px 30px;
    color: #fff;
    text-align: center;
}
#why .box h3{
    font-size: 50px;
    font-weight: 600;
}
#why .des{
    text-align: center;
    font-size: 20px;
    color: #fff;
}
#why .des b{
    color: #096aa0;
    font-size: 40px;
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: 0;
    font-size: 1rem;
    color: white;
    text-align: left;
    list-style: none;
    background-color: black !important;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
}

.flag-dropdown .bootstrap-select.btn-group.fit-width .btn .caret {
    position: static;
    top: auto;
    margin-top: -1px;
    display: none;
}
.flag-dropdown a:focus {
    outline: thin dotted;
    outline: 0px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
.flag-dropdown .bootstrap-select{
    margin-bottom: 0!important;
}
.flag-dropdown{
    margin-left: 20px;
}
.flag-dropdown  button{
    background: black;
    border: none;
    font-size: 13px!important;
    font-weight: 700;
    height: 30px;
    padding: 5px 0px;
    color:white;
}
.flag-dropdown .bootstrap-select.btn-group .btn .filter-option {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    text-align: left;
    font-size: 16px;
    text-transform: uppercase;
    margin-left: 10px
}
.flag-dropdown .flag-icon{
    margin-left: 10px;
}
.flag-dropdown .bootstrap-select .btn:focus {
    outline: thin dotted #333!important;
    outline: 0px auto -webkit-focus-ring-color!important;
    outline-offset: 0;
}
.flag-dropdown .dropdown-toggle::after {
    display: math;
    margin-left: 0.255em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    margin-left: -5px;
    margin-top: 10px;
}
.dropdown-menu {

    border: 1px solid #8080805e !important;
}
.bootstrap-select.btn-group .dropdown-menu li>a {
    text-align: left !important;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
    border: none !important;
}
.open>.dropdown-menu {
    display: block;
}
.bootstrap-select.btn-group .dropdown-menu li {
    position: relative;
}
.bootstrap-select.btn-group .dropdown-menu li>a {
    cursor: pointer;
    text-align: center;
}
.dropdown-menu>li>a {
    display: block;
    padding: 3px 12px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: white;
    white-space: nowrap;
    text-decoration: none;
    font-size: 14px;
}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
}
.btn-group>.btn:first-child {
    margin-left: 0;
}
.float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
  font-size:30px;
    box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
    margin-top:16px;
}


.wrap{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  grid-gap:10px;
  padding:0.5em;
  perspective:500px;
}
.article {
  display:flex;
  flex-direction:column;
  height:300px;
  position:relative;
  background-size:cover;
  border-radius:7px;
  overflow:hidden;
  padding:1em;
  cursor:pointer;
  transform: rotateX(0deg) rotateY(0deg);
  transition: all 0.2s linear ;
  will-change: transform;
}

.article:nth-child(5n+1){
    background-image:url("https://images.unsplash.com/photo-1446776877081-d282a0f896e2?q=80&w=2072&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
}

.article:nth-child(5n+2){
    background-image:url("https://images.unsplash.com/photo-1518364538800-6bae3c2ea0f2?q=80&w=2071&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
}
.article:nth-child(5n+3){
  background-image:url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?q=80&w=2072&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
}

.article:nth-child(5n+4){
  background-image:url("https://images.unsplash.com/photo-1614121181207-4b6c334d353d?q=80&w=1776&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
}
.article:nth-child(5n+5){
  background-image:url("https://images.unsplash.com/photo-1656077217715-bdaeb06bd01f?q=80&w=1964&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
}


.overlay {
  width:100%;
  height:100%;
  background-image:radial-gradient(circle at 50% 50%,rgba(0,0,0,0.3) 20%,rgba(0,0,0,0.4) 50%);
  position:absolute;
  left:0;
  top:0;
  z-index:1;
}
.article h1{
  font-size:1.5em;
  font-family:'Oswald';
  margin-top:auto;
  cursor:pointer;
  transition:all 0.3s;
  position:relative;
  z-index:2;
  pointer-events:none;
}

.article h1{
  transform:translateY(-20px)
}
.article h1 span{
  color:#fff;
}

.article span.cat {
  letter-spacing:2px;
  font-weight:bold;
  font-family: 'Lato', sans-serif;
  position:relative;
  z-index:2;
  pointer-events:none;
  overflow:hidden;
  color:#fff;
}

.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px;
    color: #fff;
}

@media screen and (min-width:1000px){
  .wrap{
    grid-template-columns:repeat(auto-fit,minmax(400px,1fr));
    grid-gap:20px;
    padding:1em;
  }
  .article h1{
    transform:translateY(0px);
  }
  .article:hover h1{
  transform:translateY(-20px)
  }
  
  .article span.cat {
    color:transparent;
  }
  
.article span.cat::before,.article span.cat::after{
  content:attr(data-hover);
  position:absolute;
  display:inline-block;
  left:0;
  top:0;
  white-space: nowrap;
  overflow:hidden;
  max-width:0%;
  transition:max-width 300ms ease-out; 
}
.article span.cat::before {
  color:yellow;
  transition-delay:100ms;
}
.article span.cat::after {
  color:white;
}

.article:hover span.cat:after,.article:hover span.cat:before{
  max-width:100%;
}

.article:hover span.cat:after {
  transition-delay:300ms;
}
}

