﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');

:root{
    --kapps-primary: #1b4f92;
    --kapps-secondary: #1b87df;
    --kapps-secondary-2: #07c0df;
    --kapps-orange: #d94b1c;
    --kapps-dark: #0c3c64;
    --kapps-gray: #66607f;
    --kapps-text: #828282;
}
body{
    /*font-family: 'Poppins', sans-serif;*/
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--kapps-text);
}

::-webkit-scrollbar {  
    width: 12px;  
}  
::-webkit-scrollbar-track {  
    background-color: #eaeaea;  
    border-right: 1px solid #cecece;  
}  
::-webkit-scrollbar-thumb {  
    background-color: #cecece;  
}  
::-webkit-scrollbar-thumb:hover {  
    background-color: #aaa;  
}  
::-webkit-scrollbar-track {
    border-radius: 0;
    box-shadow: none;
    border: 0; 
}
::-webkit-scrollbar-thumb {
    border-radius: 0;
    box-shadow: none;
    border: 0; 
}

/*Selection*/
::selection {
    color: #ffffff;
    background: var(--primary);
}

h1, h2, h3, h4, h5, h6{
    font-family: poppins,sans-serif;
    color: var(--kapps-dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    transition: all .35s;
    color: var(--kapps-text);
}
a:hover,
a:focus{
    color: var(--kapps-secondary);
    text-decoration: none;
}

.btn{
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 24px;
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
    transition: all .2s ease;
}
.btn-default{
    background-color: var(--kapps-primary);
    color: #fff !important;
}
.btn-default:hover,
.btn-default:focus{
    background-color: var(--kapps-secondary);
}
.btn-lg{
    font-size: 16px;
    padding: 16px 40px;
}
.btn-sm{
    font-size: 12px;
    padding: 5px 15px;
}

.topbar{
    background-color: var(--kapps-dark);
    color: #fff;
    padding: 8px 0;
}
.topbar-left ul li{
    margin-right: 15px;
}
.topbar-left ul li a{
    color: #fff;
    font-size: 13px;
}
.topbar-left ul li a i{
    color: var(--kapps-secondary-2);
    margin-right: 8px;
}

.topbar-right ul li{
    margin-left: 20px;
}
.topbar-right ul li a{
    color: #fff;
    font-size: 14px;
}
.topbar-right ul li a:hover,
.topbar-left ul li a:hover{
    color: var(--kapps-secondary-2);
}


/*.navbar-wrap{
    position: relative;
}*/
.navbar{
    padding: 10px 0;
    /*position: absolute;
    left: 0;
    width: 100%;
    z-index: 99;*/
}

.navbar-collapse{
    flex-grow: 0;
}
.navbar-nav .nav-item{
    margin: 0 25px;
}
.navbar-nav .nav-link{
    font-family: poppins,sans-serif;
    /*text-transform: uppercase;*/
    color: var(--kapps-dark);
    font-weight: 500;
    font-size: 16px;
    padding: 5px 0 !important;
    position: relative;
}
.navbar-nav .nav-link::after{
    display: none;
}
.navbar-nav .nav-link:hover,
/*.navbar-nav .nav-link:focus,*/
.navbar-nav .active>.nav-link,
.navbar-nav .current>.nav-link,
.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .active>.nav-link{
    color: var(--kapps-secondary);
}

/*.navbar-nav .nav-link::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--kapps-primary);
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.1s;
    transition: transform 0.1s;
}
.navbar-nav .nav-link:hover::before,
.navbar-nav .active>.nav-link::before{
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}*/
.navbar-nav .nav-link>.fa-angle-down{
    margin-left: 5px;
    vertical-align: -1px;
}
.navbar-brand img{
    height: 70px;
}

.contact-info-icon{
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background-color: #dfebfc;
    border-radius: 50%;
    color: var(--kapps-secondary);
    font-size: 25px;
    margin-right: 10px;
}
.contact-info-details>h5{
    font-family: poppins,sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    /*margin: 7px 0;*/
    margin: 0;
}
.contact-info-details>a{
    font-family: poppins,sans-serif;
    color: var(--kapps-secondary);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    display: inline;
    background-image: linear-gradient(rgba(0, 0, 0, 0) calc(99% - 1px), var(--kapps-secondary) 1px);
    background-repeat: no-repeat;
    /*background-position: right bottom;*/
    background-size: 0% 100%;
    -webkit-transition: background-size 0.3s;
    transition: background-size 0.3s;
}
.contact-info-details>a:hover {
    text-decoration: none;
    background-size: 100% 100%;
}

@media (min-width: 992px){
    header .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        -webkit-transform: rotateX(90deg);
        -moz-transform: rotateX(90deg);
        -ms-transform: rotateX(90deg);
        transform: rotateX(90deg);
        -webkit-transform-origin: top;
        -moz-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
        -o-transition: 0.3s;
        transition: 0.3s;
        -ms-transition: 0.3s;
        -moz-transition: 0.3s;
        -webkit-transition: 0.3s;
    }
    header .dropdown:hover .dropdown-menu{
        visibility: visible;
        opacity: 1;
        -webkit-transform: rotateX(0);
        -moz-transform: rotateX(0);
        -ms-transform: rotateX(0);
        transform: rotateX(0);
    }
}

.stuck {
    position: fixed;
    top: 0;
    margin: 0;
    z-index: 997;
    width: 100%;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #eee;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    -webkit-animation-name: fixedHeader;
    animation-name: fixedHeader;
} 
@keyframes fixedHeader {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fixedHeader {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.ms-slide::before{
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,.3);
    z-index: 2;
}
.slide-title{
    font-size: 60px;
    line-height: 75px;
    color: #fff;
    /*max-width: 50%;*/
    z-index: 9;
}
.slide-desc{
    font-size: 20px;
    line-height: 32px;
    color: #fff;
    /*max-width: 50%;*/
    z-index: 9;
}

.section{
    padding: 100px 0;
}
.section-subtitle{
    font-family: poppins,sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    color: var(--kapps-orange);
    display: block;
    margin-bottom: 5px;
}
.section-title{
    font-weight: 700;
    font-size: 30px;
    line-height: 1.3;
}

#about{
    background-image: url(../images/shape-bg-1.png);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}
.about-us-text{
    font-size: 16px;
    line-height: 36px;
}

.partner-item{
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: center;
}
.partner-item img{
    display: inline-block !important;
    width: auto !important;
    max-width: 100%;
    opacity: 0.4;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.partner-item:hover img{
    opacity: 1;
}

#services{
    background-color: #f7f7f7;
    position: relative;
}
#services::before,
#services::after {
    position: absolute;
    content: '';
    pointer-events: none;
    left: 50%;
    z-index: 10;
    width: 100px;
    height: 100px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}
#services::before{
    background: #fff;
    top: -50px;
}
#services::after{
    background: #f7f7f7;
    bottom: -50px;
}
#services .container-fluid{
    max-width: 1400px;
    padding: 0 30px;
}

.single-service{
    position: relative;
    text-align: center;
    overflow: hidden;
    background-color: #fff;
    /*border: 1px solid #ebebeb;*/
    -webkit-box-shadow: 0 0 40px rgb(82 85 90 / 5%);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.05);
    box-shadow: 0 0 40px rgb(82 85 90 / 5%);
}
.single-service .service-icon{
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 40px;
    color: var(--kapps-secondary-2);
    text-align: center;
    background-color: var(--kapps-primary);
    margin: 0 auto 60px;
    -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.single-service .service-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.single-service .service-title .number {
    display: block;
    font-size: 135px;
    line-height: 100%;
    color: #ffffff;
    text-shadow: 0px 0px 1px black;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    z-index: -1;
    opacity: .4;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.flip-container {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -o-perspective: 1000px;
    perspective: 1000px;
}
.flipper {
    -webkit-transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 0.6s;
    -moz-transform-style: preserve-3d;
    -o-transition: 0.6s;
    -o-transform-style: preserve-3d;
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative;
    padding: 60px 25px;
}
.flip-container .front, 
.flip-container .back {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    top: 0;
    left: 0;
}
.flip-container .front {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    z-index: 2;
    -webkit-transition: 0.6s;
    -ms-transition: 0.6s;
    -moz-transition: 0.6s;
    transition: 0.6s;
}
.flip-container .back {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 99;
    padding: 25px;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    color: #fff;
    font-size: 16px;
    line-height: 27px;
    background: var(--kapps-secondary);
    background: linear-gradient(90deg,var(--kapps-secondary) 0%,var(--kapps-secondary-2) 100%);
}
.flip-container:hover .flipper{
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.flip-container:hover .flipper .front {
    opacity: 0;
}

#contact{
    background: url(../images/map.png) no-repeat top 50px center;
}
.contact-info-box{
    background-color: #f7f7f7;
    padding: 30px;
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 0 rgb(0 0 0 / 8%);
    transition: all 200ms ease-in;
}
.contact-info-box:hover{
    /*transform: translateX(-5px);*/
    box-shadow: 0 2px 0 var(--kapps-orange);
}
.contact-info-box i{
    font-size: 27px;
    margin-right: 30px;
    color: var(--kapps-orange);
}
.contact-info-box h5{
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-form .form-caption{
    font-size: 16px;
    margin-bottom: 20px;
}
.contact-form .form-control{
    border-radius: 0;
    height: 55px;
    border: 2px solid rgba(0,0,0,.1);
    font-size: 15px;
    padding: 10px 20px;
    box-shadow: none;
}
.contact-form .form-control::placeholder{
    color: rgba(0,0,0,.4);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}
.contact-form textarea.form-control{
    height: 160px;
}
.contact-form .form-control:focus{
    border-color: rgba(0,0,0,.2);
}

.footer-inner{
    border-top: 1px solid #ededed;
    padding: 35px 0;
}
.footer-inner ul{
    margin-right: -15px;
    margin-left: -15px;
}
.footer-inner ul li{
    padding-right: 15px;
    padding-left: 15px;
}

#backToTop {
    display: none;
    position: fixed;
    z-index: 999;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 45px 45px;
    border-color: transparent transparent var(--kapps-orange) transparent;
    text-align: center;
    color: #fff;
    opacity: 0.8;
}
#backToTop:hover{
    opacity: 1;
}
#backToTop i{
    position: fixed;
    right: 8px;
    bottom: 8px;
}

/*Preloader*/
#loading{
	background-color: #ffffff;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 999;
	margin-top: 0px;
	top: 0px;
}
#loading-center{
	width: 100%;
	height: 100%;
	position: relative;
}
#loading-center-absolute {
    display: flex;
    justify-content: center;
	position: absolute;
	left: 50%;
	top: 50%;
	height: 150px;
	width: 150px;
	margin-top: -75px;
	margin-left: -75px;
}
.object{
	width: 20px;
	height: 20px;
	background-color: var(--kapps-primary);
	/*float: left;*/
	margin: 0 10px;
	margin-top: 65px;
	-moz-border-radius: 50% 50% 50% 50%;
	-webkit-border-radius: 50% 50% 50% 50%;
	border-radius: 50% 50% 50% 50%;
}

#object_one {	
	-webkit-animation: object_one 1.5s infinite;
	animation: object_one 1.5s infinite;
	}
#object_two {
	-webkit-animation: object_two 1.5s infinite;
	animation: object_two 1.5s infinite;
	-webkit-animation-delay: 0.25s; 
    animation-delay: 0.25s;
	}
#object_three {
    -webkit-animation: object_three 1.5s infinite;
	animation: object_three 1.5s infinite;
	-webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
	
	}

@-webkit-keyframes object_one {
75% { -webkit-transform: scale(0); }
}

@keyframes object_one {

  75% { 
    transform: scale(0);
    -webkit-transform: scale(0);
  }

}


@-webkit-keyframes object_two {
 

  75% { -webkit-transform: scale(0); }


}

@keyframes object_two {
  75% { 
    transform: scale(0);
    -webkit-transform:  scale(0);
  }

}

@-webkit-keyframes object_three {

  75% { -webkit-transform: scale(0); }

}

@keyframes object_three {

  75% { 
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  
}

