/********** Template CSS **********/



html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Hide any horizontal overflow */
}



:root {
    --primary: #267bf5;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*logo color*/
.logo-color{color: #267bf5;}
.logo-bg{background-color: #267bf5;}
.dark-blue-bg{
	background-color:  #051938;
}
.vendors_head {
  position: relative;
  padding: 10px 40px; /* spacing for buttons */
}

.vendors_wrapper {
  white-space: nowrap;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}

.vendors_wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1s infinite ease-in-out;
    animation: sk-rotateplane 1s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#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;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px #267bf5;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--light);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
	.navbar-expand-lg{
		background:  #051938;
	}
    .sticky-top.navbar-dark {
        position: relative;
        background: rgba(5,25,56,0.95);
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--light);
		
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
	
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.banner-1 h1{
	font-size: 50px;
}

/*** Section Title ***/
.happy-clients{
	background-color: #267bf5;
}
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 200px;
    padding: 0 15px;
    transition: .5s;
	margin-bottom: 25px;
	
}

.serv-captions{
	filter: drop-shadow(3px 3px 8px black);
}


.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

.service_colomn img{
	border-radius: 15px;
}
.service-contact-info{
	height: 380px;
}

.service-col{
	background-image: url("../img/service-img_1.jpg");background-position: center;background-repeat: no-repeat;background-size: cover;
}
.service-col1{
	background-image: url("../img/service-img_2.jpg");background-position: center;background-repeat: no-repeat;background-size: cover;
}
.service-col2{
	background-image: url("../img/service-img_3.jpg");background-position: center;background-repeat: no-repeat;background-size: cover;
}
.service-col3{
	background-image: url("../img/service-img_4.jpg");background-position: center;background-repeat: no-repeat;background-size: cover;
}
.service-col4{
	background-image: url("../img/service-img_5.jpg");background-position: center;background-repeat: no-repeat;background-size: cover;
}
.service-col5{
	background-image: url("../img/service-img_6.jpg");background-position: center;background-repeat: no-repeat;background-size: cover;
}
.service-col6{
	background-image: url("../img/service-img_7.jpg");background-position: center;background-repeat: no-repeat;background-size: cover;
}
.service-col7{
	background-image: url("../img/service-img_8.jpg");background-position: center;background-repeat: no-repeat;background-size: cover;
}
.service-col8{
	background-image: url("../img/service-img_9.jpg");background-position: center;background-repeat: no-repeat;background-size: cover;
}
.service-col9{
	background-image: url("../img/service-img_10.jpg");background-position: center;background-repeat: no-repeat;background-size: cover;
}
.service-col10{
	background-image: url("../img/service-img_11.jpg");background-position: center;background-repeat: no-repeat;background-size: cover;
}

.footer-inp{
	width: 50%;
}

/*vendors*/
.vendors_head{
	margin-top: 80px;
}
.vendors{
	margin-bottom: 30px;
}


.whyUsP{
	text-align: left;
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
	
}

.cyber_sec_banner{
	background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url("../img/cyber_security_banner.jpg") center center no-repeat;
    background-size: cover;
	
}
.webMobDev_banner{
	background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url("../img/web&mobileApp_banner.jpg") center center no-repeat;
    background-size: cover;
	
}
.softEng_banner{
	background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url("../img/softwareEng_banner.jpg") center center no-repeat;
    background-size: cover;
	
}
.itConsulting_banner{
	background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url("../img/itConsulting_banner.jpg") center center no-repeat;
    background-size: cover;
	
}
.ai-Ml_banner{
	background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url("../img/AI&ML_banner.jpg") center center no-repeat;
    background-size: cover;
	
}
.resourceSharing_banner{
	background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url("../img/resource_banner.jpg") center center no-repeat;
    background-size: cover;
	
}
.resourceSharing_banner{
	background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url("../img/resource_banner.jpg") center center no-repeat;
    background-size: cover;
	
}
.ar_vr_banner{
	background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url("../img/ar_vr_banner.jpg") center center no-repeat;
    background-size: cover;
	
}

.link-animated a {
    transition: .5s;
}
 
.link-animated a:hover {
    padding-left: 10px;
}
.footer-logo img{filter: drop-shadow(2px 2px 4px black)}

/*featured clients start*/
.logos::before, 
        .logos::after {
            content: '';
            width: 300px;
            height: 100%;
            position: absolute;
            top: 0;
            z-index: 2;
        }

        .logos::before {
            left: 0;
			background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255,255,255,1.00));
			
        }

        .logos::after {
            right: 0;
            background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255,255,255,1.00));
        }

        .logos-slide {
            animation: 20s slide infinite linear;
        }

        .logos:hover .logos-slide {
            animation-play-state: paused;
        }

        .logos-slide img {
            height: 90px;
            margin: 0 50px;
        }
.serviceDetailsSection{
	margin-top: 50px;
	margin-bottom: 100px;
}

        @keyframes slide {
            from{
                transform: translateX(50%);
            }

            to {
                transform: translateX(-100%);
            }
        }
           .v-height{
	            height: 70vh !important;
        }
/*featured clients end*/


/*details about service items starts here*/

.serviceItemsContent h5{
	font-weight: 400;
	text-align: center;
	font-size: 25px;
	color: rgba(73,73,73,1.00);
}


.aboutCyberSecurity h4{
	text-align: center;
	margin-bottom: 30px;
	font-size: 30px;
}

.aboutCyberSecurity h6{

	margin-bottom: 10px;
	margin-top: 10px;
	font-size: 22px;
}
.aboutCyberSecurityBold{
	font-weight: bold;
	color: rgba(73,73,73,1.00);
	
}

.contactInServices p{
	margin-top: 50px;
	font-size: 17px;
	font-weight: normal;
	text-align: center;
}


@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}
@media(max-width:1199px){
	.servicesCols{
		width: 33.33333333333333%;
	}
	.banner-1 h1{
		font-size: 40px;
	}
}

@media(max-width:993px){
	.aboutCol{
		width: 50%;
	}
	.servicesCols{
		width: 50%;
	}
	
}

@media(max-width:770px){
	.serviceItemsContent h5{
	font-size: 20px;
}
	.serviceDetailsSection{
		margin-top: 30px;
		margin-bottom: 50px;
	}
	.aboutCyberSecurity h4{
	text-align: center;
	margin-bottom: 30px;
	font-size: 25px;
}

	.footer-inp{
		width: 80%;
	}
	   .logos-slide img {
            height: 65px;
            margin: 0 50px;
        }
	.v-height{
		height: 60vh !important;
	}
	
        .logos::before {
            left: 0;
			background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255,255,255,0.15));
			
        }

        .logos::after {
            right: 0;
            background: none;
        }

	.carousel-caption h1 {
        font-size: 28px;
        font-weight: 500 !important;
    }
	.carousel-control-next-icon,.carousel-control-prev-icon{
		display: none;
	}
}
@media(max-width:580px){
	.cyber_sec_banner h1{
		font-size: 24px;
	}
	.cyber_sec_banner a{
		font-size: 18px;
	}
	
	.footer-inp{
		width: 100%;
	}
	
	.servicesCols{
		width: 100%;
	}
}
@media(max-width:550px){
	.albetech-logo{width: 23%;}
	
	.carousel-caption h1 {
        font-size: 25px;
    }
	.aboutCol{
		width: 100%;
		
	}
	.serviceDetailsSection{
		margin-top: 20px;
		margin-bottom: 40px;
	}
	.aboutCyberSecurity h6{
		font-size: 18px;
	}
	
}
@media(max-width:427px){
		.serviceItemsContent h5{
	font-size: 18px;
}
	
	.banner-1 h1{
		font-size: 20px;
	}
	.banner-1 h5{
		font-size: 16px;
	}
	.contact_btn-cap{
		font-size: 15px;
	}
	.contact_btn{
		padding: 5px 15px;
		
	}
}
@media(max-width:375px){
	.albetech-logo{width: 26%;}
	.cyber_sec_banner a{
		font-size: 16px;
	}
	.aboutCyberSecurity h4{
		font-size: 20px;
	}
}
@media(max-width:340){
	.aboutCyberSecurity h6{
		font-size: 16px;
	}
}




