/* header */
.header-select {
    border: none;
}
.header-select:focus {
    border-color: none;
    outline: 0;
    box-shadow: none;
}
/* Top Bar */
.top-bar {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: #444444;
    padding: 5px 0;
}

.rlab-topbar-left,
.rlab-topbar-right {
    padding-left: 15px;
    padding-right: 15px;
}

.rlab-topbar-right {
    float: right;
}

.rlab-topbar-left {
    float: left;
}

.rlab-topbar-left ul,
.rlab-topbar-right ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rlab-topbar-left ul li,
.rlab-topbar-right ul li {
    display: inline-block;
}

/* Logo */
.logo-header {
    display: table;
    float: left;
    width: 180px;
    height: 68px;
    position: relative;
    z-index: 9;
}

.logo-header img {
    height: auto;
    width: 100%;
    max-width: 180px;
}

/* Main Bar */
.main-bar {
    background: #FFFFFF;
    width: 100%;
    position: relative;
}

/* Navigation */
.header-nav {
    padding: 0;
}

.header-nav .nav {
    float: right;
}

.header-nav .nav>li {
    position: relative;
}

.header-nav .nav>li>a {
    font-size: 16px;
    padding: 23px 17px;
    color: #020d26;
    font-weight: 600;
    border-left: 1px solid rgba(0, 0, 0, 0.10);
    text-decoration: none;
}

.header-nav .nav>li>a:hover {
    color: #efbb20;
}

/* Navbar Toggler (Mobile) */
.navbar-toggler {
    border: 0;
    font-size: 16px;
    padding: 0;
}

.navbar-toggler span {
    background: #666;
    display: block;
    height: 2px;
    margin: 5px 0;
}

/* Sticky Header */
.is-fixed .logo-header {
    transition: all 0.5s;
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .header-nav {
        border-bottom: 1px solid #E9E9E9;
        clear: both;
    }

    .header-nav .nav {
        float: none;
        width: 100%;
        display: block;
        background: #fff;
    }

    .header-nav .nav>li {
        display: block;
        padding: 0;
    }

    .header-nav .nav>li>a {
        display: block;
        font-size: 18px;
        padding: 10px 0;
    }

    .logo-header {
        width: 135px;
        height: 50px;
    }

    .logo-header img {
        max-width: 135px;
    }
}
/* banner start */
.banner {
    background-image: linear-gradient(100.07deg, rgba(255, 255, 255, 0), var(--rgba-primary-1));
    width: 100%;
    height: 90vh;
    overflow: hidden;
}
.banner.style-1{
    height: 350px;
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.banner.style-1:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}
.banner.style-1 .banner-content .title , .banner.style-1 .banner-content .content{
    color: #fff;
}
.banner .banner-content {
    padding: 30px 0;
}
.banner .banner-content.style-1{
    padding: 0;
    height: 100%;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.banner .banner-content .banner-content {
    margin-bottom: 30px;
}
.banner .banner-media {
    padding-top: 40px;
    animation: zoomInOut 5s ease-in-out infinite;
}
.banner .banner-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* banner end */

/* Our Features Start  */

.feature-box {
    padding: 20px;
    border: 3px solid var(--rgba-primary-3);
    border-radius: 20px;
    transition: all 0.5s;
    margin-bottom: 30px;
    transition: all 0.5s;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
}

.feature-box p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: all 0.5s;
}
.feature-box:hover p{
    overflow: visible;
    display: -webkit-box;
    -webkit-line-clamp: 8000;
    -webkit-box-orient: vertical;
    transition: all 0.5s;
}
.feature-box .comming-soon{
    position: absolute;
    padding: 6px 24px;
    color: #fff;
    background-color: #ff0000;
    font-size: 10px;
    right: -30px;
    top: 20px;
    transform: rotate(45deg);
}
.feature-box:hover {
    box-shadow: 0 5px 5px 0 var(--rgba-primary-1);
    /* transform: translateY(-10px); */
    border-color: var(--color-primary);
    transition: all 0.5s;
}
.feature-box .icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    margin-bottom: 30px;
    border-radius: 20px;
    display: none;
}
.feature-box .icon-box i {
    font-size: 30px;
    color: #fff;
}
.feature-box .title {
    margin-bottom: 10px;
}
.feature-box .feature-media {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 30px;
}
.feature-box .feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.feature-box:hover .feature-media img {
    filter: grayscale(0.9);
    transform: scale(1.1);
    transition: all 0.5s;
}
.feature-slider .swiper-slide {
    filter: blur(2px);
    opacity: 0.4;
    transform: scale(1);
    transition: all 0.5s;
}
.feature-slider .swiper-slide.swiper-slide-prev,
.feature-slider .swiper-slide.swiper-slide-next {
    filter: blur(1px);
    opacity: 0.6;
    transform: scale(0.9);
    transition: all 0.5s;
}
.feature-slider .swiper-slide.swiper-slide-active {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s;
}
.feature-section .feature-slider {
    margin-bottom: 30px;
}
/* Our Features End  */

/* Why Choose Us Start */
.why-choose-us {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}
.why-choose-us::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: -1;
}
.why-choose-us .media {
    width: 100%;
    height: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 9;
    animation: UptoDown 2.5s ease-in-out infinite;
}
.why-choose-us .sub-media img {
    width: 100%;
    height: auto;
}
.why-choose-us .media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 9;
    position: relative;
}
.why-choose-us .media-wrapper {
    position: relative;
    margin-top: 80px;
}
.why-choose-us .media-wrapper .sub-media {
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 1;
}
.why-choose-us .w-box , .get-in-touch .w-box {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-top: 30px;
    border: 5px solid var(--rgba-primary-3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.5s;
}
.why-choose-us .w-box:hover  , .get-in-touch .w-box:hover {
    transition: all 0.5s;
    box-shadow: 0 10px 5px 0 var(--rgba-primary-3);
    border: 5px solid var(--color-primary);
}
.why-choose-us .w-box .icon-box , .get-in-touch .w-box .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    color: #fff;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}
.why-choose-us .w-box:hover .icon-box i , .get-in-touch .w-box:hover .icon-box i{
    animation: toTopFromBottom 0.8s forwards;
}

/* Why Choose Us End */

/* Security System Start */
.security-section .s-box .media {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 400px;
    z-index: 1;
    transition: all 0.5s;
    margin-bottom: 30px;
}
.security-section .s-box .media:hover {
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.5s;
}
.security-section .s-box .media:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: all 0.5s;
}
.security-section .s-box:hover .media:after {
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.5s;
}
.security-section .s-box .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.security-section .s-box .content-box {
    z-index: 9;
    position: absolute;
    left: 10px;
    bottom: -50px;
    width: calc(100% - 20px);
    background: var(--color-primary);
    padding: 15px;
    border-radius: 10px;
    transition: all 0.5s;
    height: 150px;
    overflow: hidden;
}
.security-section .s-box:hover .content-box {
    bottom: 10px;
    transition: all 0.5s;
}
.security-section .s-box .content-box .content {
    margin-bottom: 0;
}
.security-section .s-box .content-box .title {
    margin-bottom: 10px;
}
.security-section .s-box .content-box .content {
    opacity: 0;
    transition: all 0.5s;
}
.security-section .s-box:hover .content-box .content {
    opacity: 1;
    transition: all 0.5s;
}
/* Security System End */

/* Download Box Start */
.download-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}
.download-box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}
.download-box .download-btn {
    padding: 20px;
    background-color: #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    transition: all 0.5s;
    justify-content: space-between;
}
.download-box .download-btn:hover {
    box-shadow: 0 5px 5px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    transition: all 0.5s;
}
.download-box .download-btn .img-box img {
    width: 100%;
    height: 100%;
    max-width: 40px;
}
/* Download Box End */

/* Testimonial Start */
.testimonial-box {
    padding: 30px;
    border: 3px solid var(--rgba-primary-3);
    border-radius: 10px;
    transition: all 0.5s;
}
.testimonial-box:hover {
    border-color: var(--color-primary);
    transition: all 0.5s;
}
.testimonial-box .testimonial-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.testimonial-box .testimonial-content .quote i {
    font-size: 110px;
    color: var(--rgba-primary-1);
}
.testimonial-box .testimonial-content .testimonial-info {
    display: flex;
    align-items: center;
}
.testimonial-box .testimonial-content .testimonial-info .t-info .name {
    margin-bottom: 0;
}
.testimonial-box .testimonial-content .testimonial-info .t-info .post {
    margin-bottom: 0;
}
.testimonial-box .testimonial-content .testimonial-info .media {
    width: 80px;
    height: 80px;
    padding: 5px;
    background-color: var(--color-primary);
    overflow: hidden;
    border-radius: 50%;
    margin-left: 10px;
}
.testimonial-box .testimonial-content .testimonial-info .media img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.testimonial-slider {
    margin-bottom: 40px;
}
.testimonial-box-wrapper .t-nav {
    position: absolute;
    left: 50%;
}
.testimonial-box-wrapper .swiper-button-next,
.testimonial-box-wrapper .swiper-button-prev {
    position: absolute;
    top: auto;
    bottom: -20px;
    width: 0;
    height: 0px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.t-nav .swiper-button-prev,
.t-nav .swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: var(--rgba-primary-1);
    color: var(--color-primary);
    border-radius: 10px;
    transition: all 0.5s;
}
.t-nav .swiper-button-prev:hover,
.t-nav .swiper-button-next:hover {
    background-color: var(--color-primary);
    color: #fff;
    transition: all 0.5s;
}
.t-nav .swiper-button-next:after,
.t-nav .swiper-button-prev:after {
    display: none;
}
.t-nav .swiper-button-prev {
    left: 10px;
    right: auto;
}
.t-nav .swiper-button-next {
    right: 10px;
    left: auto;
}
/* testimonial end */

/* footer-start */
.footer {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.footer:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.footer .footer-top {
    padding: 50px 0;
}

.footer .footer-top .footer-info {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 30px;
}

.footer .footer-top .footer-info .footer-logo {
    margin-bottom: 20px;
}

.footer .footer-top .footer-info .footer-logo img {
    width: 100%;
    height: 100%;
    max-width: 180px;
}

.footer .footer-top .f-info-box {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    transition: all 0.5s;
}

.footer .footer-top .f-info-box .footer-icon {
    color: #fff;
    font-size: 40px;
    margin-right: 15px;
}
.footer .footer-top .f-info-box:hover .footer-icon {
    transition: all 0.5s;
    animation: tilt-shaking 0.5s infinite;
    color: var(--color-primary);
}

.footer .footer-top .footer-linking-box .f-title {
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
    color: #fff;
    display: inline-block;
}

.footer .footer-top .footer-linking-box .f-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 15px;
    height: 4px;
    border-radius: 20px;
    background-color: #fff;
}

.footer .footer-top .footer-linking-box .f-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    width: 45px;
    height: 4px;
    border-radius: 20px;
    background-color: #fff;
}

.footer .footer-top .footer-linking-box .social-icon {
    display: flex;
    align-items: center;
}

.footer .footer-top .footer-linking-box .social-icon {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.footer .footer-top .footer-linking-box .social-icon .s-icon-box {
    width: 45px;
    height: 45px;
    border: 2px solid var(--rgba-primary-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 10px;
    border-radius: 10px;
    color: var(--color-hover);
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    z-index: 1;
}

.footer .footer-top .footer-linking-box .social-icon .s-icon-box:hover {
    transition: all 0.5s;
    color: #fff;
}

.footer .footer-top .footer-linking-box .social-icon .s-icon-box:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-primary);
    transition: all 0.5s;
    z-index: -1;
}

.footer .footer-top .footer-linking-box .social-icon .s-icon-box:hover:after {
    right: auto;
    left: 0;
    width: 100%;
    transition: all 0.5s;
}

.footer .footer-links .footer-linking-box .f-link-box .f-link {
    font-size: 16px;
    color: #fff;
    padding-bottom: 8px;
    margin-bottom: 15px;
    display: block;
    position: relative;
    display: inline-block;
    transition: all 0.5s;
}

.footer .footer-links .footer-linking-box .f-link-box .f-link:hover {
    color: var(--color-hover);
    transition: all 0.5s;
}

.footer .footer-links .footer-linking-box .f-link-box .f-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    bottom: 0;
    right: 0;
    transition: all 0.5s;
}

.footer .footer-links .footer-linking-box .f-link-box .f-link:hover:after {
    width: 100%;
    left: 0;
    right: auto;
    transition: all 0.5s;
}

.footer .footer-bottom {
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .footer-bottom .footer-bottom-content {
    text-align: center;
}

.footer .newsletter .form-group .input-group .form-control {
    background-color: transparent;
    color: #fff;
    border-radius: 10px 0 0 10px !important;
}

.footer .newsletter .form-group .input-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer .newsletter .form-group .input-group .btn {
    border-radius: 0 10px 10px 0 !important;
}
/* footer-end */





/* responsive css */
@media screen and (max-width: 992px) {
    .banner {
        height: 100%;
    }

    .security-section .s-box .content-box {
        bottom: -60px;
    }
}

@media screen and (max-width: 576px) {
    .why-choose-us .w-box {
        padding: 20px;
    }

    .security-section .s-box .content-box {
        bottom: -80px;
    }
    .testimonial-slider {
        margin-bottom: 80px;
    }
    .testimonial-box-wrapper .t-nav {
        position: absolute;
        left: 50%;
        bottom: -40px;
    }
}







/* Login Page css */

.login-page{
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    padding: 30px;
}

.login-page:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    z-index: -1;
}
.login-page .login-box-wrapper{
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 20px;
}
.login-page .login-box-wrapper .login-logo-box img{
    width: 100%;
    height: 100%;
    max-width: 180px;
}
.login-page .login-box-wrapper .login-logo-box{
    margin-bottom: 0px;
    text-align: center;
}
.login-page .login-section-head{
    margin: 30px 0;
}
.login-page .login-section-head .login-sub-title{
    margin-bottom: 10px;
}
.login-page .login-logo{
    position: absolute;
    right: 20px;
    top: 20px;
}
.login-page .login-logo img{
    width: 100%;
    height: 100%;
    max-width: 180px;
}
.login-page .forgot-password{
    font-size: 16px;
    color: var(--text-sec);
    font-weight: 700;
    transition: all 0.5s;
}
.login-page .forgot-password:hover{
    color: var(--color-primary);
    transition: all 0.5s;
}
.login-page .forgot-box{
    margin-top: 30px;
    padding-top: 15px;
    border-top: 3px solid rgba(0, 0, 0, 0.3);
    text-align: end;
}

@media screen and (max-width: 992px){
    .login-page{
        height: 100%;
        padding: 20px;
    }
}
@media screen and (max-width: 576px){
    .login-page{
        height: 100%;
        padding: 20px 0;
    }
}

/* contact page start */
.location-section{
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.location-section:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}
.contact-section .contact-box{
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
}
.contact-section .contact-box .card-title .title{
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.contact-section .section-head{
    margin-bottom: 30px!important;
}
.contact-section .contact-media {
    width: 90%;
    height: 100%;
    max-height: 300px;
    border-radius: 20px;
    overflow: hidden;
}
.contact-section .contact-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* contact page end */

/* about us start */
.author-section{
    background: linear-gradient(100.07deg, rgba(255, 255, 255, 0), var(--rgba-primary-1));
}
.author-section .author-media{
    position: relative;
    z-index: 1;
}
.author-section .author-media:after{
    border-radius: 10px;
    content: '';
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary) !important;
    z-index: -1;
}
.author-section .author-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    border-radius: 10px;
}

/* about us end */

/* Our Patners Start */
.partners-box {
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.5s;
}
.partners-box:hover{
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .1);
    transition: all 0.5s;
}
.partners-box .p-title{
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid ;
}
.partners-box .partners-media .p-img{
    width: auto;
    height: 30px;
    margin: 10px;
}
.partners-box .partners-media .p-img img{
    width: auto;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s;
}
.partners-box .partners-media .p-img:hover img{
    transform: translateY(-5px);
    transition: all 0.5s;
}
/* Our Patners End */