head {}

html {}



@keyframes _scale {
  0% {
    transform: scale(1);
  }

  10% {
    transform: scale(1.2);
  }
  
  20% {
    transform: scale(1);
  }
    
  100% {
    transform: scale(1);
  }
}

@keyframes logo_mobile {
  10% {
    transform: scale(1);
      opacity:.5;
  }

  20% {
    transform: scale(1.2);
    opacity:.1;
  }
  
  40% {
    transform: scale(1);
    opacity:.5;
  }
   
}

body {
    background: #3d170f;
    color: white;
    font-family: 'Montserrat';
    font-style: normal;
}

.grey {
    color: #939393;
}

.main {
    /* width: 100%; */
    /* height: 100vh; */
}

.separator_holder {
    display: grid;
    grid-template-areas:
        "left_side right_side";
    /* gap: 50px; */
    grid-template-columns: 3fr 5fr;
    height: 97vh;
    align-items: center;
    align-content: center;
}

.left_side {
    grid-area: left_side;
    margin: 0 auto;
}

.right_side {
    grid-area: right_side;
}

.container {
    /* width: 100%; */
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 100vh;
}

.holder {
    border-left: 2px solid white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    height: 75vh;
}

.footer {
    padding: 50px 50px 0;
}

.text1 {
}

.naming {
    font-family: 'Brygada 1918';
    font-style: normal;
    font-weight: 600;
    font-size: 3em;
    /* padding-top: 30px; */
}

.text2 {
    text-transform: uppercase;
    padding-top: 50px;
}

.text3.grey {
    padding-top: 5px;
}

.description {
    padding-top: 50px;
    padding-bottom: 50px;
    /* padding-bottom: 30vh; */
    flex-grow: 1;
    font-size: 1em !important;
}

.working_time span {
    clear: both;
    display: block;
}

.working_time::before {
    content: "";
    width: 35px;
    height: 22px;
    background-image: url('/time.svg');
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    position: absolute;
    display: flex;
    align-content: center;
    align-items: center;
}

.working_time, .map, .telephones, .mail {
    padding-left: 50px;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-weight: 600;
    margin: 10px 0;
}

.map {
}

.map::before {
    content: "";
    width: 35px;
    height: 24px;
    background-image: url(/map.svg);
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    position: absolute;
    display: flex;
    align-content: center;
    align-items: center;
}

.telephones::before {
    content: "";
    width: 35px;
    height: 24px;
    background-image: url(/tel.svg);
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    position: absolute;
    display: flex;
    align-content: center;
    align-items: center;
    margin-top: 15px;
}

.telephones a {
    color: white;
    text-decoration: none;
    font-size: 2em;
    font-family: 'Brygada 1918';
    font-style: normal;
    font-weight: 600;
}

.telephones span.grey {
    font-size: .95em;
}

.mail::before {
    content: "";
    width: 35px;
    height: 26px;
    background-image: url(/mail.svg);
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    position: absolute;
    display: flex;
    align-content: center;
    align-items: center;
}

.mail a {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
}

.logo_holder {
    margin: 50px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    height: 30vw;
    aspect-ratio: 1 / 1;
    align-content: center;
    position: relative;
    opacity: .3;
}

.logo_holder div {
    position: absolute;
    animation-name: _scale;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    transition-timing-function: ease-in-out;
}

.logo_g {animation-delay: 2s;animation-name: none !important;}

.logo_a {
    animation-delay: .2s;
}

.logo_b {animation-delay: .4s;}

.logo_c {animation-delay: .6s;}

.logo_d {animation-delay: .8s;}

.logo_e {animation-delay: 1s;}

.logo_f {animation-delay: 1.2s;}

.logo_holder img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1000px) {
    .separator_holder {
        display: grid;
        grid-template-areas:
            "right_side";
        grid-template-columns: 1fr;
        height: auto;
        align-items: center;
        align-content: center;
    }

    .left_side {
        grid-area: left_side;
        display: none;
    }
    .holder {
        border-left: 0px solid white;
        padding: 50px;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: flex-start;
        height: max-content;
    }
    body {
        font-size: 32px;
    }
    .text1 {
        text-align:center;
        margin-bottom: 80px;
        font-size: .8em;
    }
    .text2 {
        font-size:0.85em;
        line-height: .6;
        width: 100%;
        text-align: center;
    }
    .description {
            padding-top: 100px;
            /* padding-bottom: 30vh; */
            flex-grow: 1;
        text-indent: 35px;
    }
    .working_time {
        padding-top: 100px;
    }
    .working_time, .map, .telephones, .mail {
        padding-left: 100px;
        display: flex;
        position: relative;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        font-weight: 600;
        margin: 10px 0;
    }
    .working_time::before, .map::before, .telephones::before, .mail::before {
        width: 55px;
        height: 50px;
        background-size: contain;
    }
    .footer {
        font-size:.7em;
        text-align:center;
        padding: 0;
    }
    .naming span {
        clear:both;
        display:block;
        line-height:.7em
    }
    .text3.grey {
        padding-top: 25px;
        font-size:.8em;
        width: 100%;
        text-align: center;
    }
    .naming{
        width: 100%;
        text-align: center;
    }
    .logo_mobile {
        width: 100%;
        height: 260px;
        margin: 0 auto;
        text-align: center;
        opacity: .5;
        animation-name: logo_mobile;
        animation-duration: 5s;
        animation-iteration-count: 1;
        display: block !important;
        padding-bottom: 60px;
    }
    
    .logo_mobile img {
        height: 100%;
        width: auto;
    }
}



.logo_mobile {
    display: none;
}

h1 {
    font-weight: 400;
    font-size: 1.5em;
}