
        /* Основные стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #181818;
            color: #181818;
            line-height: 1.6;
        }

        .hidden {
            display: none;
        }
        
        .container {
            min-width: 1080px;
            max-width: 1920px;
            width: 100%;
            
            
            margin:  auto;
        }
        
        .container1 {
            width: 90%;
            margin: 0 auto;
            align-items: center;
            overflow: hidden;
        }

        /* Шапка */
        header {
            background-color: #181818;
            color: #ffffff;
            padding: 0px 0;
            position: fixed;
            width: 100%;
            height: 70px;
            z-index: 1000;
            
        }
        
        .header-container {
            display: flex;
            width: 90%
            
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #AAff16;
            width: 85px;
            height: 44px;
            display: flex;
            justify-content: flex-start;
        }

        .logo-contaner {
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }
       
        .social-links_head {
            display: flex;
            align-items: center;
            justify-content: right;
            height: 70px;
            width: 250px;
        }



        nav ul {
            display: flex;
            list-style: none;
            margin-right: 20px;
        }
        
        nav ul li {
            margin-left: 30px;
            width: 70px;
        }
        
        nav ul li a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #12D400;
        }



        div ul {
            display: flex;
            list-style: none;
            position: center;
        }
        
        
        div ul ol {
            margin-left: 20px;
            height: 45px;
            width: auto;
        }

        div ul ol a {
            color: #ffffff;
            text-decoration: none; 
        }




        .social-links-vk {
            width: 45px;
            height: 45px;
            transition: transform 0.5s;
        }

        .social-links-vk:hover {
            transform: scale(1.1);
        }
        
        .social-links-tg {
            width: 45px;
            height: 45px;
            transition: transform 0.5s;
        }

        .social-links-tg:hover {
            transform: scale(1.1);
        }

        .social-links-youtube {
            height: 45px;
            margin-right: 5px;
            transition: transform 0.5s;
        }

        .social-links-youtube:hover {
            transform: scale(1.1);
        }
        
        .social-links_number {
            display: none;
            text-align: right;
            align-items: right;
            height: 25px;
            width: 130px;
            justify-content: flex-end;
            margin-left: 10px;
        }





        .line1 {
            display: flex;
            background-color: #12D400;
            width: 100%;
            height: 1px;
        }

        .line2 {
            display: flex;
            background-color: #12D400;
            width: 100%;
            height: 1px;
            margin-top: 1px;
        }

        .line3 {
            display: flex;
            background-color: #12D400;
            width: 100%;
            height: 1px;
            margin-top: 50px;
        }

        .line4 {
            display: flex;
            background-color: #12D400;
            width: 100%;
            height: 1px;
            margin-top: 50px;
        }

        .line5 {
            display: flex;
            background-color: #12D400;
            width: 100%;
            height: 1px;
            margin-top: 50px;
        }

        .line6 {
            display: flex;
            background-color: #12D400;
            width: 100%;
            height: 1px;
            margin-top: 50px;
        }

        .line7 {
            display: flex;
            background-color: #12D400;
            width: 100%;
            height: 1px;
            margin-top: 50px;
        }



        /* Showreel */
       .showreel {
            display: flex;
            align-items: center;
            max-width: 1920;
            margin-top: 70px;
            width: auto;
       }


       .container {
            overflow: hidden;
        }
        
        

        
        /* Портфолио */
        .portfolio {
            padding-top: 50px;
            background-color: #181818;
            
            
        }
        
       

        .portfolio-select {
            
            
            margin-left: 100px;
            margin-right: 100px;
        }
        .portfolio-select nav ul li {
            width: 300px;
            margin: auto;
            object-position: center;
        }

        .portfolio-select nav ul {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            column-gap: 10px;
            row-gap: 30px;
            width: 100%;
        }

        .custom-btn {
            background-color: #282828;
            color: #fff;
            font-size: 24px;
            width: 300px;
            height: 60px;
            border-radius: 30px;
            border-style: none;
            transition: color 0.5s;
        }

        .custom-btn:hover {
            background-color: #3c3c3c;
            color: #12D400;
            transition: 0.5s;
        }

        .portfolio-grid {
            margin-top: 50px;
            margin-left: 100px;
            padding-right: 100px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 100px;
            align-items: center;
        }
        
        .portfolio-item {
            display: flex;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            border-radius: 30px;
            height: 320px;
            width: 500px;
            object-fit: cover;
            transition: transform 0.5s;
            background-color: #d9d9d9;
            margin-bottom: 20px;
            margin: auto;
            
        }
        
        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s;
            color: #fff;
            text-align: center;
            padding: 20px;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-item:hover {
            transform: scale(1.1);
        }
        



        /* Услуги */
        .services {
            padding-top: 40px;
            justify-content: space-around;
        }
        
        .services-grid {
            margin-top: 50px;
            margin-left: 100px;
            padding-right: 100px;
            width: 90%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 120px;
        }
        
        .service-card {
            
            background-color: #d9d9d9;
            border-radius: 30px;
            width: 400px;
            height: 355px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;

        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-image {
            height: 235px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 101%;
            height: 101%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-info {
    
            padding-top: 10px;
            align-items: center;
            text-align: center;
            color: #000;
        }
        
        a {
            text-decoration: none;
        }
        .service-info h3 {
            margin-bottom: 0px;
            font-size: 22px;
        }

        .service-info p {
            width: 350px;
            margin: auto;
            font-size: 14px;
        }





        /* Партнеры */
        .partners {
            padding-top: 40px;
            display: none;
        }

        .partners-grid {
            margin-top: 50px;
            margin-left: 100px;
            width: 90%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            
            
        }        

        .partners-image {
            
            margin: auto;
            
            overflow: hidden;
            border-radius: 15px;
            height: 100px;
            width: 100px;
            object-fit: cover;
            transition: transform 0.5s;
            background-color: #d9d9d9;
            margin-bottom: 20px;
            
        }

        .partners-image:hover {
            transform: scale(1.2);
        }




         /* О нас */
        .about {
            display: flex;
            padding-top: 40px;
            background-color: #181818;
        }
        
        .section-title {
            color: #fff;
            text-align: center;
            margin-bottom: 50px;
            font-size: 36px;
        }

        .about-item {
            display: flex;
            justify-content: space-between;
            
        }

         
        
        
        .about-content {
            display: flex;
            margin-left: 100px;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;

            
        }
        
       .about-image {
            background-color: #d9d9d9;
            width: 600px;
            height: 600px;
            border-radius: 50px;
            border-style: none;
            overflow: hidden;
            transition: transform 0.5s;
            align-items: center;
            text-align: center;
       }

       .about-image h2 {
            margin-top: 15px;
       }
        
        .about-image img {
            width: 100%;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            
        }

        .about-image:hover {
            transform: scale(1.05);
        }

        .about-text {
            color: #fff;
            font-size: 20px;
            margin-left: 50px;
            width: 90%;
            margin-right: 100px;
            position: relative;
        }

        .about-text p {
            margin-bottom: 20px;
        }

        .about-contact {
            display: flex;
            justify-content: left;
            position: absolute;
            bottom: 0;
            margin-top: 100px;
        }

        .about-contact a {
            margin-right: 20px;
            margin-bottom: 50px;
           
        }

        .about-contact p {
            margin-bottom: 15px;
            
        }




        /* Команда */
        .team {
            display: flex;
        }

        .team-grid {
            margin-top: 100px;
            margin-left: 100px;
            width: 90%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            justify-content: space-around;
        }

        .team-item {
            
            margin: auto;
            background-color: #d9d9d9;
            width: 320px;
            height: 330px;
            border-radius: 30px;
            border-style: none;
            align-items: center;
            text-align: center;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .team-image {
            height: 265px;
            overflow: hidden;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .team-item:hover .team-image img {
            transform: scale(1.1);
        }

        .team-item:hover {
            transform: translateY(-10px);
        }

        .team-name {
            
            margin-top: 8px;
        }

        .team-name p {
            font-size: 14px;
            margin-top: -5px;

        }

        .team-grid a {
            text-decoration: none;
            color: #000
        }

        .team-item-none {
            display: none;
        }





        /* Контакты */
        .contact {
            padding-top: 40px;
            display: none;
        }
        
        .contact-container {
            display: flex;
            gap: 50px;
        }

        .vk-enter {
            width: 300px;
            justify-content: center;
            margin: auto;

        }
        
       
        
        /* Подвал */
        footer {
            background-color: #181818;
            color: #fff;
            padding: 50px 0 20px;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            
            margin-bottom: 30px;
            
        }
        
        
        
        .copyright {
            padding-top: 20px;
            background-color: #181818;
            text-align: center;
        }
    