/********** color CSS **********/
:root {
    --primary: linear-gradient(45deg, #AE8625, #F7EF8A, #D2AC47, #EDC967, #AE8625, #F7EF8A, #D2AC47, #EDC967,  #AE8625, #F7EF8A);;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #000;
}
body {
  background-image: url("../img/star.webp");
}

/*** 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;
}


/*** 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;
}

.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: 40px 50px;
    background:linear-gradient(45deg, #AE8625, #F7EF8A, #D2AC47, #EDC967, #AE8625, #F7EF8A, #D2AC47, #EDC967,  #AE8625, #F7EF8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 25px;
    font-weight: bold;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 40px 50px;
    color: var(--dark);
}

.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 {
    background:linear-gradient(45deg, #AE8625, #F7EF8A, #D2AC47, #EDC967, #AE8625, #F7EF8A, #D2AC47, #EDC967,  #AE8625, #F7EF8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;"
}

@media (max-width: 991.98px) {
    .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: #000;
    }

    .navbar-dark .navbar-brand h1 {
        color: #000;
    }
}

@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(--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(14, 14, 14, 0.272);
    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: 0.5rem;
    height: 0.5rem;
}


/*** 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;
}


.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
    font-size: 10px;
}

.service-item:hover a.btn {
    bottom: 38px;
    opacity: 1;
}

.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);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
.bg-header_about {
    background: linear-gradient(rgba(5, 6, 7, 0.279), rgba(5, 6, 7, 0.425)), url(../img/about/section_about.webp) center center no-repeat;
    background-size: cover;
}
.bg-header_work {
  background: linear-gradient(rgba(5, 6, 7, 0.279), rgba(5, 6, 7, 0.425)), url(../img/work/work_navbar.webp) center center no-repeat;
  background-size: cover;
}
.bg-header_contact {
    background: linear-gradient(rgba(5, 6, 7, 0.331), rgba(5, 6, 7, 0.7)), url(../img/contact.webp) center center no-repeat;
    background-size: cover;
}
.bg-header_application {
    background: linear-gradient(rgba(5, 6, 7, 0.331), rgba(5, 6, 7, 0.7)), url(../img/application.webp) center center no-repeat;
    background-size: cover;
}
.bg-header_tv {
  background: linear-gradient(rgba(5, 6, 7, 0.331), rgba(5, 6, 7, 0.7)), url(../img/section/tv.webp) center center no-repeat;
  background-size: cover;
}
.bg-header_printing {
  background: linear-gradient(rgba(5, 6, 7, 0.331), rgba(5, 6, 7, 0.7)), url(../img/section/printing.webp) center center no-repeat;
  background-size: cover;
}
.bg-header_web {
  background: linear-gradient(rgba(5, 6, 7, 0.331), rgba(5, 6, 7, 0.7)), url(../img/section/web.webp) center center no-repeat;
  background-size: cover;
}
.bg-header_opinion {
  background: linear-gradient(rgba(5, 6, 7, 0.331), rgba(5, 6, 7, 0.7)), url(../img/section/opinion.webp) center center no-repeat;
  background-size: cover;
}
.bg-header_new {
  background: linear-gradient(rgba(5, 6, 7, 0.331), rgba(5, 6, 7, 0.7)), url(../img/new/new.webp) center center no-repeat;
  background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}


 /*==================
    canvas
====================*/
canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0; }

    /*==================
 COUNTER SECTION
====================*/

#mu-counter {
    background-attachment: fixed;
    background-image: url("../img/DP.webp");
    background-size: cover;
    display: inline;
    float: left;
    width: 100%;
  }
  .mu-counter-overlay {
    background-color: rgba(0, 0, 0, 0.71);
    display: inline;
    padding: 100px 0;
    float: left;
    width: 100%;
  }
  
  .mu-counter-area {
    display: inline;
    float: left;
    width: 100%;
  }
  
  .mu-counter-nav {
    display: inline-block;
    width: 100%;
  }
  
  .mu-counter-nav li {
    display: inline-block;
  }
  
  .mu-counter-nav li:last-child {
    border-right: none;
  }
  
  .mu-counter-nav li .mu-single-counter {
    color: #fff;
    display: inline;
    float: left;
    padding: 25px 0;
    text-align: center;
    width: 100%;
  }
  
  .mu-counter-nav li .mu-single-counter span {
    font-family: "Tangerine", cursive;
    font-size: 40px;
  }
  
  .mu-counter-nav li .mu-single-counter h3 {
    font-size: 50px;
    font-weight: bold;
    line-height: 40px;
    margin-bottom: 15px;
    margin-top: 10px;
  }
  
  .mu-counter-nav li .mu-single-counter h3 span {
    font-family: "Open Sans", sans-serif;
    font-size: 35px;
    font-weight: bold;
    line-height: 40px;
  }
  
  .mu-counter-nav li .mu-single-counter h3 sup {
    font-weight: normal;
    display: inline-block;
    font-size: 35px;
  }
  
  .mu-counter-nav li .mu-single-counter p {
    font-size: 18px;
    letter-spacing: 1.5px;
    margin-bottom: 0;
  }
  

   /*----- | Box Section | -----*/  
  .box {
    background: #000;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  
  .box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 100%;
    background: linear-gradient(45deg, #AE8625, #F7EF8A, #D2AC47, #EDC967, #AE8625, #F7EF8A, #D2AC47, #EDC967,  #AE8625, #F7EF8A);
    animation: rotate 4s linear infinite;
    -webkit-animation: rotate 6s linear infinite;
  }
  
  .box::after {
    content: "";
    background-color: #fff;
    position: absolute;
    inset: 4px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
  }
 
  
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  .box__head,
  .box__content,
  .box__social {
    z-index: 1;
  }
  
  .box__head {
    width: 150px;
    max-width: 100%;
    margin-bottom: 10px;
  }

  

  .box__head > img {
    max-width: 100%;
  
  }


     /*----- | Box Section about| -----*/ 
     .box_about {
        background: #000;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
        text-align: center;
        position: absolute;
        overflow: hidden;
      }
     .box_about::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, #AE8625, #F7EF8A, #D2AC47, #EDC967, #AE8625, #F7EF8A, #D2AC47, #EDC967,  #AE8625, #F7EF8A);
        animation: rotate 4s linear infinite;
        -webkit-animation: rotate 6s linear infinite;
      }
      
      .box_about::after {
        content: "";
        background-color: #fff;
        position: absolute;
        inset: 4px;
        border-radius: 16px;
        -webkit-border-radius: 16px;
        -moz-border-radius: 16px;
        -ms-border-radius: 16px;
        -o-border-radius: 16px;
      }
     @keyframes rotate {
        0% {
          transform: rotate(0deg);
        }
      
        100% {
          transform: rotate(360deg);
        }
      }
     .box__head_about,
     .box__content,
     .box__social {
       z-index: 1;
     }
     .box__head_about {
        width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
      }
      .box__head_about {
        width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
      }

       /*----- | Box Section about| -----*/ 
     .box_services {
        background: #000;
        width: 40%;
        height: 40%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
        text-align: center;
        position: absolute;
        overflow: hidden;
      }
     .box_services::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, #AE8625, #F7EF8A, #D2AC47, #EDC967, #AE8625, #F7EF8A, #D2AC47, #EDC967,  #AE8625, #F7EF8A);
        animation: rotate 4s linear infinite;
        -webkit-animation: rotate 6s linear infinite;
      }
      
      .box_services::after {
        content: "";
        background-color: #fff;
        position: absolute;
        inset: 4px;
        border-radius: 16px;
        -webkit-border-radius: 16px;
        -moz-border-radius: 16px;
        -ms-border-radius: 16px;
        -o-border-radius: 16px;
      }
     @keyframes rotate {
        0% {
          transform: rotate(0deg);
        }
      
        100% {
          transform: rotate(360deg);
        }
      }
     .box__head_services,
     .box__content,
     .box__social {
       z-index: 1;
     }
     .box__head_services {
        width: 50%;
        max-width: 50%;
        margin-bottom: 10px;
      }
      .box__head_services {
        width: 50%;
        max-width: 50%;
        margin-bottom: 10px;
      }

       /*----- | Box Section blog | -----*/  
  .box_blog {
    background: #000;
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  
  .box_blog::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #AE8625, #F7EF8A, #D2AC47, #EDC967, #AE8625, #F7EF8A, #D2AC47, #EDC967,  #AE8625, #F7EF8A);
    animation: rotate 4s linear infinite;
    -webkit-animation: rotate 6s linear infinite;
  }
  
  .box_blog::after {
    content: "";
    background-color: #fff;
    position: absolute;
    inset: 4px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
  }
 
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  .box__head_blog,
  .box__content,
  .box__social {
    z-index: 1;
  }
  
  .box__head_blog {
    width: 300px;
    max-width: 100%;
    margin-bottom: 10px;
  }


/*----- | background| -----*/  
.snowflake {
    --size: 1vw;
    width: var(--size);
    height: var(--size);
    background: #DB9D00;
    border-radius: 50%;
    position: absolute;
    top: -5vh;
  }
  @keyframes snowfall {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(0, 110vh, 0);
    }
  }
  .snowflake:nth-child(1) {
    --size: 0.6vw;
    left: 55vw;
    animation: snowfall 8s linear infinite;
  }
  
  .snowflake:nth-child(2) {
    --size: 1vw;
    left: 78vw;
    animation: snowfall 7s linear infinite;
  }
  
  .snowflake:nth-child(3) {
    --size: 1vw;
    left: 30vw;
    animation: snowfall 10s linear infinite;
  }
  .snowflake:nth-child(3) {
    --size: 1.7vw;
    left: 45vw;
    animation: snowfall 8s linear infinite;
  }
  .snowflake:nth-child(4) {
    --size: 1.5vw;
    left: 10vw;
    animation: snowfall 12s linear infinite;
  }
  .snowflake:nth-child(5) {
    --size: 1.5vw;
    left: 15vw;
    animation: snowfall 15s linear infinite;
  }
  .snowflake:nth-child(6) {
    --size: 1.5vw;
    left: 20vw;
    animation: snowfall 16s linear infinite;
  }
  .snowflake:nth-child(7) {
    --size: 1.5vw;
    left: 90vw;
    animation: snowfall 17s linear infinite;
  }
  .snowflake:nth-child(8) {
    --size: 1vw;
    left: 2vw;
    animation: snowfall 15s linear infinite;
  }
  .snowflake:nth-child(9) {
    --size: 1vw;
    left: 30vw;
    animation: snowfall 20s linear infinite;
  }
  .snowflake:nth-child(10) {
    --size: 1vw;
    left: 40vw;
    animation: snowfall 30s linear infinite;
  }
  .snowflake:nth-child(11) {
    --size: 1vw;
    left: 80vw;
    animation: snowfall 25s linear infinite;
  }
.mobile-display {
    display: none;
}
.boxs_small .box_services {
    padding: 4px;
}
.boxs_small .box_services img {
    margin: 0 !important;
    z-index: 9;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px !important;
}
.why_choice .box_about  {
    padding: 5px;
}
.why_choice .box_about img {
    display: block;
    height: 100%;
    opacity: 1;
    z-index: 9;
    border-radius: 15px !important;
    width: 100%;
}
.net-west .box_blog {
    padding: 3px;
}
.net-west .box_blog img{
    z-index: 9;
    height: 100% !important;
    border-radius: 15px !important;
}
.net-west .blog-item{
    border-radius: 22px !important;
}
.navbar-nav {
    align-items: center;
    justify-content: center;
    width: 100%;
}
#canvas_dots {
    z-index: 9;
}
.carousel-control-prev , .carousel-control-next ,#header-carousel h1{
    z-index: 10;
}
.about-center .box_about {
    padding: 7px;
}
.about-center .box_about img{
    margin-top: 0 !important;
    z-index: 9;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 15px !IMPORTANT;
}
.net-west.services-index .box_blog img {
    margin-top: 0 !important;
}
.vendor-carousel .box img {
    z-index: 9;
}
.vendor-carousel .box {
    padding: 5px;
}
.service-item {
    border-radius: 15px !IMPORTANT;
}
@media only screen and (max-width: 1400px) {
    .navbar-dark .navbar-nav .nav-link {
        padding: 26px 17px;

    }
}

@media only screen and (max-width: 600px) {
    .navbar {
        background: #fff;
        position: relative;
        z-index: 9999;
    }
    .navbar .navbar-nav .navbar-brand {
       display: none;
    }
    .navbar .navbar-nav a {
        border-bottom: 1px solid rgba(0,0,0,0.09);
        padding-left: 20px !important;
        margin: 0 !important;
    }
    .mobile-display {
        display: block;
    }
    .navbar-brand.mobile-display img {
        width: 67px;
        object-fit: contain;
        height: auto;
    }
    .vendor-carousel .box {
        width: 130px;
        height: 130px;
        padding: 5px;
    }


    .box_about {
        border-radius: 15px !important;
    }
    .box_about .box__head_about {
        margin: 0;
        padding: 0;
    }
    .box_about .box__head_about img {
        width: 95%;
        height: 96%;
        border-radius: 15px !important;
        margin: 0;
        object-fit: cover;
    }
    .services-index .col-6 {
        padding-left: 10px;
        padding-right: 10px;
    }
    .net-west.services-index .box_blog {
        padding: 3px;
        height: 140px !important;
    }
    .gallery-box .col-6 {
        padding-left: 10px;
        padding-right: 10px;
    }
    .navbar-nav {
        display: flex;
        gap: 7px;
        align-items: baseline;
        margin-left: 7px;
    }
}