/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Параллакс секции */
.section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 39vh;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.section.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: #fff;
}
.logo {
    position: relative;
    margin-left: calc(50%-100px);
    padding: 20px;
}
.header-content {
    position: relative;
    margin-right: calc(50% - 200px);
    background: rgba(255, 255, 255, 0.5);
    /*background: rgba(0, 0, 0, 0.5);*/
    padding: 20px;
    border-radius: 10px;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.header-content h2 {
    font-size: 1.8rem;
    font-weight: 300;
}

/* Белая секция (вторая) */
.section.white {
    background: #fff;
    padding: 60px 20px;
}

.features {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    /*flex: 1;*/
    text-align: center;
    padding: 20px;
    border-radius: 11px;
    background: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 33%;
    min-height: 250px;
    transition: transform 0.3s ease;
}

.feature:hover {
    background: #e9ecef;
    transition: 0.3s;
}
.widget {
    position: absolute;
}
.widget-icon::before,
.widget-icon i::before,
.widget-popupcloser::before,
.widget-popupcloser i::before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.number {
    font-size: 2rem;
    font-weight: bold;
    color: #ccc;
    margin-bottom: 10px;
}

.feature h3 {
    font-size: 1.5rem;
    color: rgb(129, 168, 52); /* Зеленый цвет */
    margin-bottom: 10px;
}

.feature p {
    font-size: 10pt;
    color: #555;
}

/* Адаптивность */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
        gap: 20px;
    }
}

* {
    font-family: Nunito, sans-serif;
}

.text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    line-height: 25px;
}

.responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
}

.container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: block;
}

.responsive-cell-block {
    min-height: 75px;
}

.container {
    max-width: 1380px;
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 80px;
    margin-left: auto;
    padding-top: 0px;
    padding-right: 30px;
    padding-bottom: 0px;
    padding-left: 30px;
}

.team-head-text {
    font-size: 48px;
    line-height: 50px;
    font-weight: 900;
    text-align: center;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 70px;
    margin-left: 0px;
}

.name {
    font-size: 18px;
    margin-top: 11px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    font-weight: 700;
}

.position {
    margin-top: 5px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.team-card-container {
    width: 263px;
    margin-top: 0px;
    margin-right: 15px;
    margin-bottom: 30px;
    margin-left: 15px;
}

.teamcard-container {
    justify-content: space-evenly;
}

.team-img-wrapper {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}

.team-img {
    max-width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

@media (max-width: 500px) {
    .team-card-container {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 30px;
        margin-left: 0px;
        width: 100%;
    }

    .team-img {
        width: 100%;
    }
}

.team-card-content {
    background: rgba(0, 0, 0, 0.5);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    min-height: 80px;
}

.content_about {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}
.content_contacts {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}
/* Основные стили для секции новостей */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.news-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff;
}

.news-section h2 {
    margin-bottom: 30px;
    font-size: 2em;
    color: #333;
}

.tiles-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.tile {
    width: 30%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.tile:hover {
    transform: translateY(-10px);
}

.tile img {
    max-width: 100%;
    height: auto;
    display: block;
}

.tile p {
    padding: 15px;
    font-size: 1em;
    color: #555;
}

/* Медиазапросы для адаптивности */
@media (max-width: 992px) {
    .tile {
        width: 45%;
    }
    .service-card {
        width: 45%;
    }
    .feature {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .tile {
        width: 100%;
    }
    .service-card {
        width: 100%;
    }
    .feature {
        width: 100%;
    }
}
.projects-section {
    padding: 50px 10%;
    background-color: #f4f4f4;
}

.projects-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.projects-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}

.project-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 300px;
    height: 250px;
}

.project-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}

.service-card {
    background: white;
    padding: 14px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    color: black;
    width: 51%;
    transition: transform 0.3s ease;
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
}

.tech-item img {
    width: 30px;
    height: 30px;
}

.vacancy-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50px;
    text-decoration: none;
}

.vacancy-button:hover {
    background-color: #333;
}
.price-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: black;
    background-color: white;
    border-radius: 50px;
    text-decoration: none;
}
.price-button:hover {
    background-color: rgb(129, 168, 52);
}
/*
nav
{
    position: absolute;
    top: 3%;
    right: 0;
    left: 0;
    width: 319px;
    display: table;
    margin: 0 auto;
    transform: translateY(-1%);
}

nav a
{
    position: relative;
    width: 33.333%;
    display: table-cell;
    text-align: center;
    color: #3b4530;
    text-decoration: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    padding: 10px 15px;
    transition: 0.2s ease color;
}

nav a:before, nav a:after
{
    content: "";
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    transition: 0.2s ease transform;
}

nav a:before
{
    top: 0;
    left: 10px;
    width: 6px;
    height: 6px;
}

nav a:after
{
    top: 5px;
    left: 18px;
    width: 4px;
    height: 4px
}


#indicator
{
    position: absolute;
    left: 5%;
    bottom: 0;
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 5px;
    transition: 0.2s ease left;
}

nav a:hover
{
    color: green;
}

nav a:hover:before, nav a:hover:after
{
    transform: scale(1);
}


#ytd-url {
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  margin: 20px;
  color: #fff;
  font-family: Arial;
  font-size: 14px;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
  z-index: 125;
}*/
.navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        color: #3b4530;
        padding: 7px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .navbar .logo {
        font-size: 20px;
        font-weight: bold;
    }

    .navbar ul {
        list-style: none;
        display: flex;
        gap: 20px;
        margin: 0;
        padding: 0;
    }

    .navbar ul li {
        display: inline;
    }

    .navbar ul li a {
        color: #3b4530;
        text-decoration: none;
        font-size: 16px;
        transition: 0.3s;
    }

    .navbar ul li a:hover {
        color: rgb(129, 168, 52);
    }

    /* Плавная прокрутка */
    html {
        scroll-behavior: smooth;
    }

    @media (max-width: 600px) {
        .navbar {
            flex-direction: column;
            align-items: center;
        }

        .navbar ul {
            flex-direction: column;
            gap: 10px;
            text-align: center;
            padding-top: 10px;
        }
    }
    .contact-section {
        background: #f9f9f9;
        padding: 50px 20px;
    }

    .contact-container {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 40px;
    }

    .contact-info, .legal-info {
        width: 50%;
    }

    .contact-info h3, .legal-info h3 {
        margin-bottom: 15px;
    }

    .contact-info p, .legal-info p {
        margin: 5px 0;
        color: #333;
    }

    .contact-info a {
        text-decoration: none;
        color: #007bff;
        font-weight: bold;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .contact-container {
            flex-direction: column;
            text-align: center;
        }
        .contact-info, .legal-info {
            width: 100%;
        }
    }