/********** Template CSS **********/
:root {
    /* --primary: #FD5D14; */
    --primary: #FFA400;
    --secondary: #FDBE33;
    --light: #F4F6F8;
    --dark: #040F28;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    transition: .5s;
}

.btn::after {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: .5s;
}

.btn.btn-primary::after {
    background: var(--dark);
}

.btn:hover::after,
.btn.active::after {
    width: 50%;
    left: 25%;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 50%;
    bottom: 0;
    margin-left: -22px;
    border-radius: 0;
    z-index: 99;
}

.bg-dark-radial {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;

}

.bg-dark-radial::before {
    position: absolute;
    content: "";
    width: 70%;
    height: 95%;
    top: 05%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
    -webkit-animation: animationFramesTwo 9s linear infinite;
    animation: animationFramesTwo 9s linear infinite;
}

@-webkit-keyframes animationFramesTwo {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(40px);
    }

    50% {
        transform: translateX(0);
    }

    75% {
        transform: translateX(-40px);
    }

    100% {
        transform: translateX(0);
    }

}

@keyframes animationFramesTwo {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(40px);
    }

    50% {
        transform: translateX(0);
    }

    75% {
        transform: translateX(-40px);
    }

    100% {
        transform: translateX(0);
    }
}

.bg-light-radial {
    /* background-image: -webkit-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 0.3px, transparent 0px, transparent 100%); */


    background-image: -webkit-repeating-radial-gradient(center center, rgb(255 255 255 / 66%), rgb(255 255 255) 0.3px, white 0px, #f6f6f6 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 0.3px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 0.3px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 0.3px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 0.3px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    /* padding: 35px 15px; */
    padding: 30px 15px;
    font-size: 16px;
    text-transform: uppercase;
    /* color: var(--light); */
    color: #000000;
    outline: none;
    transition: .5s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 15, 40, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.page-header {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(rgba(4, 15, 40, .7), rgba(4, 15, 40, .7)), url(../img/carousel-1.jpg) center center no-repeat; */
    background: linear-gradient(rgba(4, 15, 40, .7), rgba(4, 15, 40, .7)), url(../img/img-3.jpg) center center no-repeat;
    background-size: cover;
}

.service-item .service-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.service-item .service-icon i {
    transition: .2s;
}

.service-item:hover .service-icon i {
    font-size: 60px;
}

.portfolio-item {
    margin-bottom: 60px;
}

.portfolio-title {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 120px;
    padding: 0 30px;
    right: 30px;
    left: 30px;
    bottom: -60px;
    background: #FFFFFF;
    z-index: 3;
}

.portfolio-btn {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
    font-size: 120px;
    line-height: 0;
    transition: .1s;
    transition-delay: .3s;
    z-index: 2;
    opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
}

.portfolio-box::before,
.portfolio-box::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    transition: .5s;
    z-index: 1;
    background: rgba(4, 15, 40, .7);
}

.portfolio-box::before {
    left: 0;
}

.portfolio-box::after {
    right: 0;
}

.portfolio-item:hover .portfolio-box::before {
    left: 0;
    width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
    right: 0;
    width: 50%;
}

@media (min-width: 992px) {

    .testimonial,
    .contact-form {
        margin-left: -90px;
    }
}

@media (min-width: 992px) {
    /* .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--primary)
    } */
}

.footer-shape::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 100%;
    top: 0;
    left: -40px;
    background: #FFA400;
    transform: skew(40deg);
}

.black {
    color: #09009b;
    font-weight: 600;
}

.btn1 {
    margin: 40px 0px;
}





.enquiry-now,
.buy-now {
    padding: 8px 40px;
    border: transparent;
    font-weight: 600;
    border-radius: 2px;
}

.enquiry-now {
    background-color: #09009B;
    color: var(--light);
}

.buy-now {
    background-color: #FFA400;
    color: rgba(0, 0, 0, 0.7);
}

/* #FFA400 */


.related-products {
    padding: 50px 0px;
}

.related-products h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.related-products .card {
    border-radius: 2px;
    border: 1px solid #777;
    padding: 10px;
}

.related-products .card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.related-products h5 {
    font-size: 17px;
    color: #777;
    text-align: center;
    font-weight: 600;
    text-transform: capitalize;
    margin: 10px 0px;
}


.modal-body {
    padding: 0px;
}

.modal-body .img img {
    width: 100%;
    height: 385px;
}

.modal-body .form {
    padding-right: 30px;
    position: relative;
    padding-top: 20px;
}

.modal-body #EnquireFor {
    font-weight: 600;
}

.modal-body #EnquireFor span {
    color: #FDBE33;
}

.modal-body .form .enquiry-btn {
    padding: 7px 20px;
    background-color: #FDBE33;
    border: 0px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
}

.modal-body .form .btn-close {
    position: absolute;
    top: 10px;
    right: 15px;
}

.modal-body .form .line {
    width: 100px;
    background-color: #FDBE33;
    height: 2px;
    color: #FDBE33;
    margin-bottom: 5px;
}

.dropdown-menu {
    border: 1px dashed #FFA400;
    padding: 20px;
}

.dropdown-menu .dropdown-item {
    margin: 5px 0px;
    font-weight: 500;
    text-transform: capitalize;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #09009B;
    color: var(--light);
}

@media screen and (max-width:1024px) {
    .modal-body {
        padding: 20px;
    }
}

.services img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.services h4 {
    font-size: 22px;
    margin: 20px 0px;
}


.hidden {
    display: none;
}

.img-fluid {
    max-width: 100%;
}

.active {
    color: var(--primary);
}

.product-desc {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    color: #777;
    letter-spacing: 0.3px;
}

.product-ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.product-ul li {
    margin: 10px 0px;
}

.product-ul li i {

    font-size: 13px;
    margin-right: 10px;
}

.product-ul li span {
    color: #777;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 17px;
}

.Customers img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    padding: 5px;
}

.Customers .card {
    border-radius: 2px;
    border: 1px dashed var(--primary);
}

.Customers {
    background-image: url(../img/Map.png);
}

.Customers .card:hover {
    box-shadow: 0 15px 30px rgba(50, 73, 179, .2);
    transition: all .3s ease-out 0s;
}

.service-item img:hover {
    transform: scale(0.95) rotate(1deg);
    transition: .5s ease-in-out;
}

.manufaction {
    position: relative;
}

.manufaction::after {
    content: '';
    width: 55%;
    height: 100%;
    -webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    background-color: #001f5f;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

.manufaction .container {
    position: relative;
    z-index: 1;
}

.cardshadow {
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
}

.carousel-item h3 {
    font-size: 50px;
}

.carousel-item h1 {
    font-size: 50px;
}


@media screen and (max-width:500px) {
    .carousel-item .carosuel-img {
        height: 300px;
    }

    .carousel-item h3 {
        font-size: 25px;
    }

    .carousel-item h1 {
        font-size: 25px;
    }


    .px-5 {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

}

.counter h3 {
    font-size: 32px;
}

.carousel-item img {
    max-height: 750px;
    width: -webkit-fill-available;
}

.INTEGRATOR {
    min-height: 400px;
}

.INTEGRATOR img {
    object-fit: cover;
}

.services .heading {
    max-width: 600px;
}

.REQUEST-A-CALL-BACK input {
    height: 55px;
}

.common-heading {
    max-width: 600px;
}

.google-map iframe {
    width: 100%;
    height: 400px;
}

.Product-Name {
    font-size: 24px;
}

.testimonial-container {
    max-width: 600px;
}