
    :root {
    --bg-dark: #000000;
    --text-main: #c5c6c7;
    --neon-cyan: #66fcf1;
    --deep-cyan: #45a29e;
    --accent-green: #2ecc71; /* The specific green from the video */
    --font-tech: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    /* Custom colors from Technovation snippet */
    --dark-blue: #0e1a35;
    --accent-pink: #ff66aa;
    }

    body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    line-height: 1.2;
    }
    .news-img {
    max-width: 100%;
    }
img.img_att {
    height: 180px;
    max-width: 100%;
}
.Sponsored_col a {
    text-decoration: none!important;
    transition: all 0.3s;
}

.Sponsored_col a:hover {
    filter: grayscale(100%);
    transition: all 0.3s;
}

.Sponsored_col h4.text-white {
    margin-top: 20px;
    font-size: 20px;
}
img.img_att.img_att1 {
  animation: scale 4s linear infinite;
}

img.img_att.img_att2 {
  animation: scale 2s linear infinite;
}
img.img_att.img_att3 {
  animation: scale 6s linear infinite;
}

@keyframes scale {
  50% {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  }
}
    /* --- Loading Intro Animation (TRYST) --- */
    #intro-overlay {
        text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 1s ease-out;
    }
    .intro-logo {
    font-family: var(--font-tech);
    font-size: 5rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--neon-cyan);
    position: relative;
    animation: glitch-anim 2s infinite;
    }
    .intro-bar {
    width: 0;
    height: 4px;
    background: var(--neon-cyan);
    margin-top: 20px;
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: load-bar 2.5s ease-in-out forwards;
    }
    @keyframes load-bar {
    0% {
        width: 0;
    }
    100% {
        width: 300px;
    }
    }
    @keyframes glitch-anim {
    0% {
        text-shadow: 2px 0 0 red, -2px 0 0 blue;
        transform: translate(0);
    }
    20% {
        text-shadow: -2px 0 0 red, 2px 0 0 blue;
        transform: translate(-2px, 2px);
    }
    40% {
        text-shadow: 2px 0 0 red, -2px 0 0 blue;
        transform: translate(2px, -2px);
    }
    60% {
        text-shadow: -2px 0 0 red, 2px 0 0 blue;
        transform: translate(-2px, 2px);
    }
    80% {
        text-shadow: 2px 0 0 red, -2px 0 0 blue;
        transform: translate(2px, -2px);
    }
    100% {
        text-shadow: 2px 0 0 red, -2px 0 0 blue;
        transform: translate(0);
    }
    }

    /* --- Navbar --- */
    .navbar {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
    z-index: 1000;
    border-bottom: 2px solid var(--neon-cyan); /* Merged from Tech */
    box-shadow: 0 4px 15px rgba(102, 252, 241, 0.3); /* Merged from Tech */
    }
    .navbar-brand svg {
    filter: drop-shadow(0 0 5px var(--neon-cyan));
    }
    .nav-link {
    color: #fff !important;
    font-family: var(--font-tech);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s;
    }
    .nav-link:hover {
    color: var(--neon-cyan) !important;
    }
    .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--neon-cyan);
    transition: width 0.3s;
    }
    .nav-link:hover::after {
    width: 100%;
    }

    /* --- Hero Section (TRYST) --- */
    #hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    z-index: 5;
    border-bottom: 2px solid var(--neon-cyan);
    box-shadow: 0 4px 20px rgba(102, 252, 241, 0.2);
    }
    #hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    }
    .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    opacity: 0;
    animation: hero-fade-in 1s ease-out 3s forwards;
    }
    @keyframes hero-fade-in {
    to {
        opacity: 1;
    }
    }
    .hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.8rem;
    list-style: 1.2;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: block;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    }
    .hero-title {
    font-family: var(--font-tech);
    font-size: 8rem;
    font-weight: 900;
    color: #000;
    -webkit-text-stroke: 3px var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px rgba(102, 252, 241, 0.3);
    margin: 20px 0;
    }
    .hero-title::after {
    content: '.';
    color: var(--neon-cyan);
    position: absolute;
    bottom: 15px;
    right: -20px;
    font-size: 4rem;
    line-height: 0;
    }
    .hero-footer {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 20px auto 0;
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: #fff;
    border-top: 1px solid rgba(102, 252, 241, 0.3);
    padding-top: 20px;
    }
    .scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--neon-cyan);
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    animation: hero-fade-in 1s ease-out 3.5s forwards;
    }
    .scroll-text {
    font-family: var(--font-tech);
    font-size: 0.8rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    }
    .scroll-circle {
    width: 50px;
    height: 50px;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(102, 252, 241, 0.3);
    transition: all 0.3s;
    }
    .scroll-circle i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    }
    .scroll-circle:hover {
    box-shadow: 0 0 20px rgba(102, 252, 241, 0.6);
    background: rgba(102, 252, 241, 0.1);
    }
    @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
    }

    /* --- Global Section Styling --- */
    section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    }
    .section-title {
    font-family: var(--font-tech);
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    }
    .section-title span {
    color: var(--neon-cyan);
    }

    /* --- Shared Green Background Area (Speakers + Sponsors) --- */
    #green-bg-area {
    position: relative;
    background-color: #08090b;
    overflow: hidden;
    padding-bottom: 20px;
    }
    #green-circuit-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
    }
#about-section p{
    font-size: 1.1rem;
    line-height: 1.4;
}
    /* --- Speakers --- */
    #guests {
    background: transparent; /* Transparent so canvas shows */
    position: relative;
    z-index: 1;
    border-top: 1px solid #1f2833;
    }
    .speaker-slider-container {
    position: relative;
    padding: 0 50px;
    overflow: hidden;
    }
    .speaker-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
    padding: 20px 0;
    }
    .speaker-card {
    min-width: 250px;
    text-align: center;
    position: relative;
    }
    .speaker-img-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    padding: 5px;
    border-radius: 50%;
    border: 3px solid #3498db;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.3);
    position: relative;
    background: #000;
    z-index: 2;
    }
    .speaker-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s;
    }
    .speaker-card:hover .speaker-img {
    filter: grayscale(0%);
    }
    .speaker-card:hover .speaker-img-container {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan);
    }
    .speaker-name {
    font-family: var(--font-tech);
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    }
    .speaker-role {
    color: #aaa;
    font-size: 0.9rem;
    font-family: var(--font-body);
    }
    .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    }
    .slider-nav:hover {
    background: var(--neon-cyan);
    color: #000;
    }
    .slider-nav.prev {
    left: 0;
    }
    .slider-nav.next {
    right: 0;
    }

    /* --- Sponsors Marquee (Infinite Scroll) --- */
    #sponsors {
    background: transparent; /* Transparent for canvas */
    position: relative;
    z-index: 1;
    padding: 40px 0;
    }
    .marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    }
    .marquee-track {
    display: inline-flex;
    animation: marquee 20s linear infinite;
    gap: 20px;
    }
    .marquee-item {
    font-family: var(--font-tech);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    transition: color 0.3s;
    }
    .marquee-item:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    }
    .marquee-item i {
    margin-right: 10px;
    font-size: 2.5rem;
    }

    /* Pause on hover functionality */
    .marquee-container:hover .marquee-track {
    animation-play-state: paused;
    }

    @keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    } /* Shift by half because content is duplicated */
    }

    /* --- Technovation Card Grid (Activities/Attractions) --- */
    .technovation-card {
    background-color: rgba(18, 52, 70, 0.3);
    border: 1px solid var(--deep-cyan);
    border-radius: 8px;
    padding: 9px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(69, 162, 158, 0.3);
    height: 100%;
    position: relative;
    text-align: center;
    }
    .technovation-card:hover {
    transform: translateY(-5px);
    background-color: rgba(18, 52, 70, 0.5);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(102, 252, 241, 0.5);
    }
    .card-icon {
    color: var(--neon-cyan);
    font-size: 2rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 5px var(--neon-cyan));
    }
    .card-title-small {
    font-family: var(--font-tech);
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    }
    .card-text-small {
    color: var(--text-main);
    font-size: 0.9rem;
    }
    .card-date {
    font-size: 0.8rem;
    color: var(--accent-green);
    margin-top: 5px;
        margin-bottom: 0;
    }
.card-image {
width: 100%;
/* max-height: 100px; */
object-fit: contain;
margin-bottom: 10px;
border-radius: 6px;
}
    .card-button {
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    padding: 5px 15px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;
    transition: all 0.3s;
    }
    .card-button:hover {
    background: var(--neon-cyan);
    color: #000;
    }

    /* --- Update Boxes (Real-Time Updates) --- */
.update-box {position: relative;overflow: hidden;display: flex;align-items: center;/* background: linear-gradient(135deg, rgba(30, 45, 60, 0.8), rgba(0, 0, 0, 0.8)); *//* border-left: 5px solid var(--accent-green); */padding: 24px;border-radius: 8px;transition: all 0.3s;box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);margin-bottom: 20px;min-height: 170px;}
.update_box_inner{

}
    .update-box h4 {
    color: var(--accent-green);
    font-family: var(--font-tech);
    text-transform: uppercase;
    }
    .update-box:hover {
    border-left-color: var(--neon-cyan);
    transform: scale(1.02);
    }

    /* --- NEW CONTACT & SCHEDULE SECTION STYLES --- */
    #contact-schedule {
    background: linear-gradient(180deg, rgba(14, 20, 40, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 60px 0;
    }
    .schedule-header h2,
    .contact-header h2 {
    font-family: var(--font-tech);
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
    }
    .stay-with-us-bar {
    height: 50px;
    background: linear-gradient(90deg, #3498db 0%, #f1c40f 50%, #e74c3c 100%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 20px 0 40px 0;
    font-family: var(--font-tech);
    font-weight: 700;
    color: #000;
    }
    .stay-with-us-bar div {
    background-color: var(--neon-cyan);
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    }
    .contact-block {
    padding: 30px;
    background: rgba(18, 52, 70, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(102, 252, 241, 0.2);
    }
    .contact-block h5 {
    color: var(--neon-cyan);
    font-family: var(--font-tech);
    margin-bottom: 5px;
    }
    .contact-person {
    margin-bottom: 30px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    }
    .contact-info-list li {
    list-style: none;
    margin-bottom: 10px;
    font-size: 18px;
    }
    .contact-info-list li i {
    color: var(--accent-green);
    margin-right: 10px;
    }
    /* --- ISOTOPE GALLERY STYLING (New Section) --- */
    .grid-item {
        margin: 0;
    }
        .grid-item a { 
            margin: 12px;
        }
    #event-gallery {
    background-color: #0b0c10;
    padding: 30px 0;

    }
    .filters {
    text-align: center;
    margin-bottom: 40px;
    font-family: var(--font-tech);
    }
    .filters button {
    background: transparent;
    border: 1px solid var(--deep-cyan);
    color: var(--text-main);
    padding: 8px 18px;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    }
    .filters button:hover,
    .filters button.is-checked {
    background-color: var(--neon-cyan);
    color: var(--bg-dark);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(102, 252, 241, 0.5);
    }
    .grid {
    margin: 0 auto;
    transition: height 0.3s ease-out;
    }
    /* .grid-item {
    width: 33.33%;
    padding: 10px;
    float: left;
    } */
    .gallery-content {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    border: 2px solid var(--deep-cyan);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    }
    .gallery-content img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(10%);
    }
    .gallery-content:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
    }
    .overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    padding: 15px;
    font-family: var(--font-tech);
    }

    /* --- Footer --- */
    footer {
    background: #000;
    padding: 60px 0 30px;
    border-top: 1px solid #1f2833;
    position: relative;
    z-index: 10;
    }
    footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--accent-green), var(--neon-cyan));
    }
    .social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    text-decoration: none;
    margin: 6px;
    }
    .social-icons a:hover {
    border-color: var(--neon-cyan);
    background: var(--neon-cyan);
    color: #000;
    }
    #green-circuit-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
    }
a.view-schedule-btn {
padding: 13px 40px;
background-color: #66fcf1;
display: block;
width: fit-content;
margin: 0 auto;
border-radius: 40px;
color: #000;
font-size: 25px;
font-weight: bold;
text-decoration: none;
}
.collapse_overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #000;
border-radius: 12px;
padding: 0 10px;
}
.collapse_inner {
padding: 10px 5px;
}
.collapse_inner {
padding: 10px 5px;
overflow: auto;
max-height: 340px;
}
a.btn-close {
color: #fff;
background-color: #fff;
padding: 5px;
display: block;
padding: 4px;
background-size: 44%;
position: absolute;
z-index: 99;
right: -5px;
top: -8px;
opacity: 1;
}
.collapse_inner ul {
margin-left: 0;
padding-left: 15px;
text-align: left;
}
.collapse_inner ul li a{
    font-weight: bold;
}
.img_logo {
max-width:300px;
}

.marquee_text{
    font-size: 18px;
    color: #fff;
}
.marquee_box a{
    color: #000000;
}
.marquee_box {
    position: relative;
    /* border: 1px solid #777; */
    background: linear-gradient(110deg, #fdcd3b 60%, #ffed4b 60%);
    border-radius: 40px;
    overflow: hidden;
}

.marquee_box, .marquee_box .headertext {
    padding: 7px;
    font-size: 18px;
    background-color: #fff;
    color: #000;
    font-weight: bold;
}

.marquee_box .headertext {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 13px 10px;
    /* border-right: 1px solid #777; */
    background: #00588b;
    max-width: 88px;
    width: 100%;
    text-align: center;
    color: #fff;
    /* text-shadow: 1px 1px #111; */
}

.marquee_box marquee {
    line-height: 1.5;
}
button.navbar-toggler.bg-light {
    background-color: #66fcf1 !important;
    padding: 3px;
    border-radius: 2px;
}
.marquee_box marquee p {
    margin: 0;
}
                    
    @media (max-width: 1200px) {
    .hero-title {
    font-family: var(--font-tech);
    font-size: 4.2rem;
}
.nav-link {
    margin: 0 5px;

}
    }
   @media (max-width: 1024px) {
.section-title {
    font-family: var(--font-tech);
    font-size: 2.2rem;
    }
    .nav_attraction  #navbarNav{
    position: absolute;
    top: 100%;
    background-color: #141414;
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
    padding: 15px;
    left: 0;
    right: 0;
}

}
    @media (max-width: 768px) {
        .social_meadia{
            
text-align: left;
            
padding-top: 20px;


        }



    img.footer-logo {
    max-width: 180px;

}
    .hero-title {
        font-size: 3.5rem;
    }
    .img_logo {
    max-width: 190px;
}

.hero-title {
        font-size: 2.2rem;
    }
    .intro-logo {
    font-size: 2rem;

    }
  body  .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    }

}

    @media (max-width: 410px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
}



    /*// Glow Border Animation //*/


/* .update-box{
  overflow: hidden;
  filter: blur(20px);
} */

.update-box:before, .update-box:before {
  content: '';
  z-index: -2;
  text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(0deg);
  position: absolute;
	width: 99999px;
	height: 99999px;
	background-repeat: no-repeat;
	background-position: 0 0;
  /*border color, change middle color*/
	background-image: conic-gradient(rgba(0,0,0,0), #1976ed, rgba(0,0,0,0) 25%);
  /* change speed here */
	animation: rotate 4s linear infinite;
}

.update-box.ani_1:before, .update-box.ani_1:before {
animation: rotate 5s linear infinite;
	background-image: conic-gradient(rgba(0,0,0,0), #eddf19, rgba(0,0,0,0) 25%);
}

.update-box.ani_2:before, .update-box.ani_2:before {
animation: rotate 7s linear infinite;
	background-image: conic-gradient(rgba(0,0,0,0), #ed198d, rgba(0,0,0,0) 25%);
}
.update-box:after {
	content: '';
	position: absolute;
	z-index: -1;
  /* border width */
	left: 5px;
	top: 5px;
  /* double the px from the border width left */
	width: calc(100% - 10px);
	height: calc(100% - 10px);
  /*bg color*/
	background: #292a2e;
  /*box border radius*/
	border-radius: 7px;
}

@keyframes rotate {
	100% {
		transform: translate(-50%, -50%) rotate(1turn);
	}
}

/*// Border Animation END//*/



/*// Ignore This //*/
body {
  margin: 0px;
}

.center-box{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1D1E22;
}

img.footer-logo {
    max-width: 220px;
    padding: 9px;
    background-color: #FFF;
    border-radius: 7px;
}

.footer_widight_001{

padding-left: 0;

margin-top: 20px;

list-style: none;
}

.footer_widight_001 li{

display: flex;

align-items: center;

grid-gap: 11px;

padding: 5px;
}

.footer_widight_001 li a{
    
color: #fff;
    
text-decoration: none;
}


.footer_widight_001 li i{
    
}

a.scroll-down.scroll_footer {
    position: fixed !important;
    right: 15px !important;
    left: auto;
    transform: rotate(177deg) !important;
}

img.logo_our {
    /* max-width: 165px; */
    height: 71px;
    background-color: #fff;
    padding: 12px;
    border-radius: 6px;
}


img.logo_our {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+ */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
    -webkit-transition: all .6s ease; /* Fade to color for Chrome and Safari */
    -webkit-backface-visibility: hidden; /* Fix for transition flickering */
}

img.logo_our:hover {
    transform: scale(1.05);
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
}