/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css?family=Poppins:400,700,900');
:root {
    --primary: #E93D02;
    --grey: #E0E0E0;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --white: #ffffff;
    --dark: #000000;
}
body{
    font-family: 'poppins' !important;
}
.logo-img
{   
    max-width: 20%;
    max-height: 10%;
}
.ft-highlight
{
    color: var(--light);
    background-color: var(--grey);
}
.chip-kich {
    display: inline-block;
    padding: 0 0 0 25px;
    height: 70px;
    width: 615.901px;
    font-size: 16px;
    line-height: 50px;
    border-radius: 100px;
    background: linear-gradient(90deg, #E0E0E0 0%, rgba(122, 122, 122, 0.13) 100%);
    transition: .5s;
  }
  
  .chip-kich img {
    color: var(--dark);
    padding: 5px;
    float: left;
    background-color: var(--white);
    margin: 5px 10px 10px -20px;
    height: 60px;
    width: 65px;
    border-radius: 100%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }
  .chip-kich p{
    color: #000000;
    padding-top: 10px;
  }
  .chip-kich:hover{

    background-color: #716A6A;
  }
  .chip-awards {
    margin-left: -140px;
    display: inline-block;
    padding: 0 25px;
    padding-top: 10px;
    height: 140px;
    width: 1250px;
    font-size: 16px;
    border-radius: 20px;
    background: linear-gradient(90deg, #E0E0E0 0%, rgba(122, 122, 122, 0.13) 100%);
  }
  
  .chip-awards img {
    color: var(--dark);
    float: left;
    margin-left: -0.5%;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    height: 75%;
    width: 9%;
    margin-top: 1%;
  }
  .award-title{
    font-size: 14px;
    font-family: 'Poppins';
  }
  .chip-awards p{
    padding: 8px;
    background-color: var(--white);
    margin-left: 90px;
    height: 74%;
    width: 90%;
    margin-top: 1%;
    margin-left: 10%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    font-size: 12px;
  }
  .corporates {
    background-color: #f8f9fa;
    /* border: 1px solid #dee2e6; */
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
    text-align: center;
  }
  .about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem; /* Adjust the gap as needed */
  }
  .award-content {
    margin-left: 20%;
  }

  
.bg-top
{
    background-color:var(--grey) !important;
}
.bg-stats-primary
{
    background-color: var(--grey) !important;
}
.bg-stats-light
{
    background-color: var(--white);
}
.text-primary-stats
{
    color: var(--dark);
}
.fact-items:hover .text-primary-stats {
    color: white;
}
.fact-items:hover .bg-stats-primary {
    background-color: black !important;
}
.fact-items:hover .bg-stats-light {
    background-color: black !important;
}
.section-heading-title
{
    color: #0A0B0B;
    font-size: 30px;

}
.section-content
{
    text-align: justify;
}

.fact
{
    margin-left: 23%;
}
/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s 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;
}

.see-more{
    margin-left: 90%; 
    width: 200px;
}
/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !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 transparent;
}

.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;
    border-radius: 100%;
    background:linear-gradient(90deg, #E0E0E0 0%, rgba(122, 122, 122, 0.13) 100%);
    color: #000000;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.btn-square-big {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background:linear-gradient(90deg, #E0E0E0 0%, rgba(122, 122, 122, 0.13) 100%);
    color: #000000;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    font-size: 24px;
}

.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;
    width: max-content;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}



.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}
.fact-items-first{
    border-radius: 25% 0 0 25%;
}
.fact-items-last{
    border-radius: 0 25% 25% 0;
}
.navbar-dark .navbar-toggler {
    margin-top: -20%;
    margin-left: 95%;
    color: var(--dark) !important;
}
.carousel-inner{
    max-height: 800px;
}

@media (max-width: 991.98px) {
    .award-content {
        margin-left: unset;
      }
      .corporates {
        background-color: #f8f9fa;
        /* border: 1px solid #dee2e6; */
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 20px;
        text-align: center;
      }
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .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(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
    .fact-items-first{
        border-radius: 0 0 0 0;
    }
    .fact-items-last{
        border-radius: 0 0 0 0;
    }
    .fact{
        margin: 0;
    }
    .fact-items{
        width: 50%;
    }
    .about-content {
        grid-template-columns: 1fr; 
        width: 100%;
      }

      .chip-kich {
        width: 100%;
        font-size: 10px;
        margin-left: 1.75%;
      }
      .chip-awards {
        margin-left: 0;
        display: inline-block;
        padding: 10 0 0 25px;
        height: 300px;
        width: 100%;
        font-size: 16px;
        border-radius: 20px;
        background: linear-gradient(90deg, #E0E0E0 0%, rgba(122, 122, 122, 0.13) 100%);
      }
      .chip-awards img {
        color: var(--dark);
        padding-left: 2%;
        margin-left: 38%;
        height: 90px;
        width: 80px;
      }
      .chip-awards p{
        color: var(--dark);
        padding: 20px;
        background-color: var(--white);
        margin-left: 0;
        margin-top: 120px;
        height: max-content;
        width: 100%;
        text-align: justify;
        border-radius: 16px;
        font-size: 8.5px;
      }
      .see-more{
        margin-left:35%;
      }
      .image-carousel
      {
        height: 750px;
      }
      .section-heading-title
      {
        font-size: 25px;
      }
}

@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;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--grey);
        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);
    }

}
@media only screen and (min-width: 820px) and (max-width: 820px) and (min-height: 1180px) and (max-height: 1180px) {
    .fact{
        margin-left: 5%;
    }
  }

/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 11, 11, 0.7);
    z-index: 1;
}
.carousel-caption h5{
    font-weight: 20;
}
.carousel-caption h4{
    color: rgba(255, 255, 255, 0.71);
    text-align: center;
    font-family: 'poppins';
    font-size: 48px;
    font-style: normal;
    opacity: 0.8;
    font-weight: 50;
    line-height: normal;
}
.background-primary{
    background-color: #e9e9e9;
}
.background-light{
    background-color: #e9e9e9;
}
.button-primary
{
    background: linear-gradient(90deg, #E0E0E0 0%, rgba(122, 122, 122, 0.13) 100%);
    border-radius: 100px;
}
.button-primary:hover{
    color: #000000;
    background-color: #bbb;

}
@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 200 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 200 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.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: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.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;
}

/* events */

.event-row {
    display: flex;
}
.chip-events {
    margin-left: 0;
    display: inline-block;
    padding: 0 25px;
    padding-top: 20px;
    height: 500px;
    width: 100%;
    font-size: 16px;
    border-radius: 20px;
    background: linear-gradient(134deg, #D1D0D0 1.89%, rgba(146, 144, 144, 0.66) 98.88%);
    
  }
  .chip-events img {
    color: var(--dark);
    border-radius: 20px;
    height: 50%;
    width: 100%;
  }
  .chip-events p{
    color: var(--dark);
    padding: 20px;
    background-color: var(--white);
    margin-left: 0;
    margin-top: 10px;
    height: max-content;
    width: 100%;
    text-align: justify;
    border-radius: 16px;
    font-size: 13px;
  }
  .events-items
  {
    margin-left: 20px;
  }
  @media (max-width: 991.98px) {
    .event-row {
        display: block;
    }
    .chip-events {
        margin-left: -10px;
        height: fit-content;
    }
    .chip-events img {
        height: 30%;
        width: 100%;
    }
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}
.contact-us-form{
    padding: 20px;
    border-radius: 20px;
    background-color: #e9e9e9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
input::-webkit-outer-spin-button,
            input::-webkit-inner-spin-button {
                -webkit-appearance: none;
                margin: 0;
            }

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
    .footer-logo{
        margin-top: 50px;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
.add-button
{
    position: fixed;
    display: block;
    right: 45px;
    bottom: 45px;
    z-index: 99;   
}
.bg-header-about{
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1)), url(../img/Carousel/AboutUS.JPG) center center no-repeat;
    background-size: cover;
}
.bg-header-contact-us{
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .1)), url(../img/Carousel/ContactUs.JPG) center center no-repeat;
    background-size: cover;
}
.bg-header-projects{
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .1)), url(../img/Carousel/Projects.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-events{
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .1)), url(../img/Carousel/Events.JPG) center center no-repeat;
    background-size: cover;
}
.bg-header-career{
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .1)), url(../img/Carousel/Carrier.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-product{
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .1)), url(../img/Carousel/Products.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-aluminium{
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .1)), url(../img/Carousel/aluminium.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-corporates{
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .1)), url(../img/Carousel/promotions.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-ss-products{
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .1)), url(../img/ss.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-aluminium-products{
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .1)), url(../img/aluminium.jpg) center center no-repeat;
    background-size: cover;
}
.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}
.bg-footer{
     background: linear-gradient(90deg, #E0E0E0 0%, rgba(122, 122, 122, 0.13) 100%);
     border-top-left-radius: 60px;
     border-top-right-radius: 60px;
}
.up-button {
    margin-top: -50%;
    margin-left: 48%;
    background: linear-gradient(90deg, #E0E0E0 0%, rgba(122, 122, 122, ) 100%);
    color: black;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
.footer-logo{
    height:80px; 
    margin-top:-120px;
}
@media (max-width: 991.98px) {
    .footer-logo{
        margin-top:10px;
        height:30px;
        margin-bottom: 30px;
    }
    .up-button {
        margin-left: 40%;
    }
}

  
@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}