/* PHONES */

@media only screen and (max-width: 600px) {

    * {
        margin: 0;
        padding: 0;
    }

    .header_item{
        display: none;
    }
    .frosted-glass{
        width: 65%;
    }


    .nav-links a img{
        height: 69px;
    }

    .about_us_1 h1{
        margin-top: 90px;
        font-size: 38px;
    }

    .about_us_1 p{
        font-size: 20px;
        width: 240px;
    }
    .about_us_1 h4{
        font-size: 15px;
        width: 230px;
        margin-top: 200px;
        margin-bottom: 100px;
    }
    


    .icon{
        width: 120px;
        height: 120px;
    }

    .icon h1{
        font-size: 25px;
    }
    .icon p{
        font-size: 20px;
    }

    .services-logo h1{
        font-size: 35px;
    }
    .services-logo p{
        font-size: 20px;
        padding: 10px 30px;
    }
    .services-text{
        font-size: 20px;
        line-height: 1.9;

    }
    .service-pic h1{
        top: 20px;
        left: 100px;
    }
    .services-2{
        display: flex;
        display: block;
    }
    .service{
        margin-bottom: 40px;
    }


    .benefit-desc{
        padding: 0 6%;
        margin-bottom: 50px;
    }


    .benefit{
        padding: 0 5%;
        background-image: url('images/mobile_benefit_business.svg'); /* Adjust path as needed */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-color: transparent;
        height: 1200px;
        margin-top: 20px;       
    }
    .benefit-item-row {
        display: flex;               /* Использование Flexbox */
        justify-content: center;     /* Выравнивание элементов по центру горизонтально */
        flex-wrap: wrap;             /* Позволяет элементам переноситься на следующую строку */
        background-color: transparent;
        margin-bottom: 0px;
    }
    
    .benefit-item {
        width: 400px;
        height: fit-content;
        padding: 20px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin: 10px; /* Добавляем немного отступа между элементами */
    }
    
    .benefit-item p{
        line-height: 1.5;
    }     

    .benefit-item h1{
        background-color: transparent;
        font-size: 20px;
    }


    .industries{
        padding: 10px 6%;
    }



    .industries-row{
        background-color: transparent;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }
    .industries-icon{
        background-color: transparent;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        text-align: center; 
    }
    .industries-icon img{
        height: 70px;
        background-color: transparent;
    }
    .industries-icon p{
        font-size: 12px;
        background-color: transparent;
        margin-top: 10px;
    
    }
   
    


    .contact{
        padding: 0 0;
        padding-top: 60px;
    }
    input, textarea{
        width: 95%;
    }
    .image-section{
        display: none;
    }



    footer {
        background-color: transparent;
        height: 390px;
        background-image: url('images/image_footer.svg'); /* Adjust path as needed */
        background-size: cover;
        background-repeat: no-repeat;
        padding: 0 0%;
    }
    .footer-row1 {
        display: flex;           /* Enables flexbox */
        flex-direction: column;  /* Stacks children vertically */
        align-items: center;     /* Centers children horizontally within the container */
        background-color: transparent;
        padding-top: 0px;
    }
    
    .col1, .col2, .col3 {
        margin-bottom: 10px;
        width: 100%;             /* Each column takes full width of the container */
        text-align: center;      /* Text and elements inside columns are centered */
    }
    .col1 p{
        text-decoration: none;
        background-color: transparent;
        color: inherit; /* Ensures text color is consistent with parent */
        font-family: inherit; 
    }
    .col2 h1{
        font-size: 20px;
        margin-bottom: 15px;
    }
    .col3{
        display: none;
    }
    .footer-row2{
        display: none;
    }
    .col2_btn{
        background: #C85904;
    }
}  