/*
This file describes styles that are 1200px width and smaller
 */
@media  all and (max-width: 1200px) {
    :root{
        --section-distance: 60px
    }
    
   
    .grid-2, .grid-3{
        grid-template-columns: 1fr;
        gap: var(--size-2)
    }
    .grid-4{
        grid-template-columns: 1fr 1fr;
        gap: var(--size-2)
    }
    
    
    /* header mobile styles */
   
   
    .header.only-mobile .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--size-1)
    }
   
    .menu-btns.open .menu-btn-open {
        display: flex
    }

    .menu-btns.open .menu-btn-close {
        display: none;
        position: relative
    }

    .menu-btns:not(.open) .menu-btn-open {
        display: none
    }

    .menu-btns:not(.open) .menu-btn-close {
        display: block;
        position: relative
    }

    .header-mobile-wrap {
        position: fixed;
        z-index: 2;
        padding: var(--size-2);
        width: fit-content;
        height: fit-content;
        background: var(--black);
        top: 69.4px;
        right: var(--size-2);
        border-radius: var(--size-1);
        transition: 0.3s;
        box-shadow: 0 0 15px #FFFFFF40
    }


    .header-mobile-wrap .main-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }

    .header-mobile-wrap .main-menu ul li a {
        line-height: 1;
        display: flex;
        font-size: 1.6rem;
        color: var(--white)
    }
  
    .header.menu-translate .header-mobile-wrap{
        transform: translateX(110%);
        transition: 0.3s
    }
   
    .header-mobile-wrap .main-menu nav >ul >li{
        flex-direction: column;
        gap: 20px
    }
    .header .header-mobile-wrap .contact-info{
        gap: 20px;
        margin-top: 20px
    }
    .header.only-mobile .logo-wrap{
        display: flex
    }
  

    /* end of header mobile styles */

    .only-desktop{
        display: none
    }
    .header {
        padding: var(--size-1) 0
    }
    .main-block{
        height: auto;
        min-height: 100dvh
    }
    .pt-header {
        padding-top: 62px
    }
    img.logo {
        height: 38px
    }
   
    
    /* footer */
   

    /* end of footer */

}