/********** Template CSS **********/
:root {
    --primary: #ac0084;
    --secondary: #000000;
    --light: #F8F2F0;
    --dark: #060315;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


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


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

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

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

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        top: -6px;
        left: 50%;
        background: #FFFFFF;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service, Price & Team ***/
.service-item,
.price-item,
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item img,
.team-item img {
    transition: .5s;
}

.service-item:hover img,
.team-item:hover img {
    transform: scale(1.1);
}

.service-item a.btn-slide,
.price-item a.btn-slide,
.team-item div.btn-slide {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0;
}

.service-item a.btn-slide i,
.service-item a.btn-slide span,
.price-item a.btn-slide i,
.price-item a.btn-slide span,
.team-item div.btn-slide i,
.team-item div.btn-slide span {
    position: relative;
    height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 0 35px 35px 0;
    transition: .5s;
    z-index: 2;
}

.team-item div.btn-slide span a i {
    padding: 0 10px;
}

.team-item div.btn-slide span a:hover i {
    background: var(--secondary);
}

.service-item a.btn-slide span,
.price-item a.btn-slide span,
.team-item div.btn-slide span {
    padding-left: 0;
    left: -100%;
    z-index: 1;
}

.service-item:hover a.btn-slide i,
.price-item:hover a.btn-slide i,
.team-item:hover div.btn-slide i {
    border-radius: 0;
}

.service-item:hover a.btn-slide span,
.price-item:hover a.btn-slide span,
.team-item:hover div.btn-slide span {
    left: 0;
}

.service-item a.btn-slide:hover i,
.service-item a.btn-slide:hover span,
.price-item a.btn-slide:hover i,
.price-item a.btn-slide:hover span {
    background: black;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    animation: pulse 1s ease-out .5s;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact-page {
        max-width: 100% !important;
    }

    .contact-page .contact-form  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    /* background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/map.png) center center no-repeat; */
    background: linear-gradient(156deg, #ffecec, #f7b3b369);
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #000000;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: #ac0084;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
    color: black;
}

.footer .copyright a {
    color: #ac0084;
}


/* New Changes By BS */

.whatsapp-float img{
    width: 150px;
    position: fixed;
    bottom: 40px;
    left: 20px;
    border-radius: 10px;
 z-index:1;
}
.video-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust this to control the height */
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index:-2; 
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity and color */
    z-index: -1; /* Places the overlay above the video, but below the content */
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* Adjust based on your design */
    text-align: center;
    z-index: 1; /* Ensures the content stays above the overlay */
}
.typewriter {
    width: 51.5ch;
    white-space: nowrap;
    overflow: hidden;
    border-right: 4px solid #940080;
    animation: cursor 3s step-start infinite, text 3s steps(98);
    font-size: 37px;
}

@keyframes cursor {
	0%, 100% { 
    border-color: #940080; 
  }
}

@keyframes text {
	0% { 
    width: 0; 
  }
	100% { 
    width: 51.5ch; 
  }
}

/* Button Animation Start */
:root {
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --body-color: #393937;
    --accent-color: #f60185;
    --white-color: #fff;
    --box-shadow: 0 0 5px #f60185, 0 0 25px #f60185, 0 0 50px #f60185,
      0 0 100px #f60185;
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Montserrat", sans-serif;
    --normal-font-size: 1rem;
    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-semi-bold: 600;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
  }
.button-animation {
    position: relative;
    display: inline-block;
    padding: 20px 30px;
    color: var(--accent-color);
    text-transform: uppercase;
    overflow: hidden;
    letter-spacing: 4px;
    transition: 1.5s;
    background: linear-gradient(45deg, black, transparent);
  }
  .button-animation span {
    position: absolute;
    display: block;
  }
  .button-animation span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color));
    animation: btn-anim1 2s linear infinite;
  }
  @keyframes btn-anim1 {
    0% {
      left: -100%;
    }
    50%, 100% {
      left: 100%;
    }
  }
  .button-animation span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--accent-color));
    animation: btn-anim2 2s linear infinite;
    animation-delay: 0.25s;
  }
  @keyframes btn-anim2 {
    0% {
      top: -100%;
    }
    50%, 100% {
      top: 100%;
    }
  }
  .button-animation span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, var(--accent-color));
    animation: btn-anim3 2s linear infinite;
    animation-delay:0.5s;
  }
  @keyframes btn-anim3 {
    0% {
      right: -100%;
    }
    50%, 100% {
      right: 100%;
    }
  }
  .button-animation span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, var(--accent-color));
    animation: btn-anim4 2s linear infinite;
    animation-delay: 0.75s;
  }
  @keyframes btn-anim4 {
    0% {
      bottom: -100%;
    }
    50%, 100% {
      bottom: 100%;
    }
  }
  .button-animation:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 5px;
    box-shadow: var(--box-shadow);
  }
/* Button Animation End */

.logoheader{
    width: 133px;
    height: 65px;
}
.service-item:hover {
    background: linear-gradient(45deg, #ca00832e, transparent);
}
.logofooter{
    width: 133px;
    height: 65px;
}
.footer p, .footer h4{
    color: black !important;
}
.card-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(145deg, #f3f3f3, #ffffff);
    box-shadow: 8px 8px 20px #d1d1d1, -8px -8px 20px #ffffff;
    width: 300px;
}

.card-box:hover {
    transform: scale(1.05);
    box-shadow: 10px 10px 25px #b0b0b0, -10px -10px 25px #ffffff;
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #d1e8ff, #ffffff);
    box-shadow: inset 5px 5px 10px #b0c3d1, inset -5px -5px 10px #ffffff;
}

.icon-box i {
    font-size: 40px;
    color:#ac0084;
}

.card-title {
    font-size: 1.5rem;
    margin-top: 15px;
    font-weight: bold;
    color: #343a40;
}

.card-text {
    color: #6c757d;
    text-align: center;
    margin-top: 10px;
}
/* service page */
.service-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.service-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.image-box {
    flex: 1 1 100%;
    max-width: 400px;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.image-box img {
    width: 100%;
    height:300PX;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.image-box:hover img {
    transform: scale(1.1);
}

.content-box {
    flex: 1 1 100%;
}

.content-box h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #343a40;
}

.content-box p {
    font-size: 1rem;
    color: #6c757d;
    margin-top: 15px;
    text-align: justify;
}

@media (min-width: 768px) {
    .service-box {
        flex-wrap: nowrap;
    }

    .image-box {
        flex: 1;
    }

    .content-box {
        flex: 1;
        padding-left: 20px;
    }
   
}
.about  p{
    text-align: justify;
}

@media(max-width:768px){
    .typewriter {
        width: 21.5ch;
        white-space: nowrap;
        overflow: hidden;
        border-right: 4px solid #940080;
        animation: cursor 1s step-start infinite, text 5s steps(28)  infinite;
        font-size: 18px !important;
    }
    .content p{
        font-size: 14px;
    }
    .cont{
        overflow: hidden !important;
    }
}

/* product section starts here */
.box11 {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }
  .box11:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  }
  .box11 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  .box11 h3 {
    font-size: 1.5rem;
    margin-top: 15px;
    color: #333;
  }
  .box11 p {
    color: #777;
  }
/* product section ends here */

.aboutus_bg_home{
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../NEWIMAGES/about\ picture.jpeg) center center no-repeat;
    background-size: cover;
}
.service_bg_home{
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../NEWIMAGES/ship.jpg) center center no-repeat;
    background-size: cover;

}

.agri_bg_home{
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../NEWIMAGES/food1.jpg) center center no-repeat;
    background-size: cover;

}

.furniture_bg_home{
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../NEWIMAGES/funiture.jpg) center center no-repeat;
    background-size: cover;

}
.garemnts_bg_home{
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../NEWIMAGES/garementsbg.jpg) center center no-repeat;
    background-size: cover;

}
.handicaft_bg_home{
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../NEWIMAGES/Handicraftbg.jpg) center center no-repeat;
    background-size: cover;

}

.imitation_bg_home{
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../NEWIMAGES/jwbg.jpg) center center no-repeat;
    background-size: cover;
}

.paper_bg_home{
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../NEWIMAGES/paperbg.jpg) center center no-repeat;
    background-size: cover;

}

.packing_bg_home{
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../NEWIMAGES/packingbg.jpg) center center no-repeat;
    background-size: cover;


}
.pipes_bg_home{
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../NEWIMAGES/Pipesbg.jpg) center center no-repeat;
    background-size: cover;


}
.vicle_bg_home{
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../NEWIMAGES/viclebg.jpg) center center no-repeat;
    background-size: cover;

}

.contact_bg_home{
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../NEWIMAGES/contact-us.jpg) center center no-repeat;
    background-size: cover;

}
/* .page-header {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
} */

/*  */

.certification-container11 {
       max-width: 100%;
    margin: 8px 0px -7px auto;
    padding: 4px;
}

.logo-carousel11 {
    position: relative;
    padding: 20px 40px;
}

.logo-slide11 {
    height: 200px;
    width: 200px;
    margin: 0 15px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo-slide11 img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.logo-slide11:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-control:hover {
    background: #f8f9fa;
}

.carousel-control.prev {
    left: 0;
}

.carousel-control.next {
    right: 0;
}

.nav-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-dot.active {
    background: #007bff;
}


/* brand satrt new  */
.logos-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0,
      #000 15%,
      #000 85%,
      rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0,
      #000 15%,
      #000 85%,
      rgba(0, 0, 0, 0) 100%
    );
  }
  
  .logos-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    animation: slide 30s linear infinite;
  }
  
  .logos-slider-container img {
    width: 150px;
    max-width: 150px;
  }
  
  @keyframes slide {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-100%, 0, 0);
    }
  }
  
  h1 {
    text-align: center;
    font-family: "Lato";
    color: #3d4a54;
  }
  
  .card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 98%;
    margin: 0 auto;
    box-shadow: 0px 3px 8px rgb(61 74 84 / 10%), 0px 3px 12px rgb(61 74 84 / 6%);
  }
  
  /* body {
    padding-top: 4rem;
    background: #eef2f5;
    display: flex;
    align-items: center;
    flex-direction: column;
    justfiy-content: center;
  } */
  

  .video-container {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;
}




.sticky-icon {
  z-index: 3;
  position: fixed;
  top: 35%;
  right: 0%;
  width: 220px;
  display: flex;
  flex-direction: column;
}

.sticky-icon a {
  transform: translate(160px, 0px);
  border-radius: 50px 0px 0px 50px;
  text-align: left;
  margin: 2px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  font-size: 22px;
  font-family: 'Oswald', sans-serif;
  transition: all 0.8s;
}

.sticky-icon a:hover {
  color: #FFF;
  transform: translate(0px, 0px);
}

.sticky-icon a:hover i {
  transform: rotate(360deg);
}

/*.search_icon a:hover i  {
	transform:rotate(360deg);}*/
  .Facebook {
    background-color: #2C80D3;
    color: #FFF;
}

.Youtube {
    background-color: #fa0910;
    color: #FFF;
}

.Twitter {
    background-color: #53c5ff;
    color: #FFF;
}

.Instagram {
    background-color: #FD1D1D;
    color: #FFF;
}

.Google {
    background-color: #d34836;
    color: #FFF;
}

.sticky-icon a i {
    background-color: #FFF;
    height: 40px;
    width: 40px;
    color: #000;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 20px;
    transition: all 0.5s;
}

.sticky-icon .fa-facebook-f {
    background-color: #FFF;
    color: #2C80D3;
}

.sticky-icon .fa-google-plus-g {
    background-color: #FFF;
    color: #d34836;
}

.sticky-icon .fa-instagram {
    background-color: #FFF;
    color: #FD1D1D;
}

.sticky-icon .fa-youtube {
    background-color: #FFF;
    color: #fa0910;
}

.sticky-icon .fa-twitter {
    background-color: #FFF;
    color: #53c5ff;
}

.fas fa-shopping-cart {
    background-color: #FFF;
}









