/* Указываем box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
    padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    background-image: url(https://www.transparenttextures.com/patterns/shattered-dark.png);
    font-family: 'Roboto', sans-serif;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
    list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
    max-width: 100%;
    display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
    margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
    font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}

/* обнуление --------------------------------------------------------------------------------------------------------------------- */






header{
    color: white;
    background-color: rgb(70, 70, 70);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 10em;
    padding-right: 5%;
    padding: 10px 50px 10px 50px;
}

.footer_0{
    color: #fff;
    /* background-color: #393939; */
    padding: 2%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

footer{
    color: #fff;
    background-color: #000000;
    text-align: center;
    height: fit-content;
    justify-content: space-between;
    padding: 2%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer__name{
    font-size: x-large;
}
.footer__adress{
    font-size: larger;
}

.ico{
    margin: 20px 20px 20px 0;
    display: flex;
    align-items: center;
}
.header_text{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    font-size: x-large;
}
.adress{
    display: flex;
    align-items: center;
    font-size: x-large;
}
.phone{
    display: flex;
    align-items: center;
}

.blocks_a{
    font-family: 'Roboto', sans-serif;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
    grid-template-areas:
    ". . a a a a a a a a . .";
}
.blocks_b{
    font-family: 'Roboto', sans-serif;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
    grid-template-areas:
    ". b b b b b b b b b b ."
    ". . c c c c c c c c . .";
}

.block_a{
    grid-area: a;
    background-color: rgb(186, 186, 186);
    padding: 20px 50px;
    display: flex;
    margin: 50px 0 50px 0;
    border-radius: 20px;
    border: 2px solid #0a0a0a;
    flex-direction: column;
    align-items: center;
}
.block_b{
    grid-area: b;
    background-color: rgb(186, 186, 186);
    padding: 20px 50px;
    margin: 50px 0 25px 0;
    border-radius: 20px;
    border: 2px solid #0a0a0a;
}
.block_c{
    grid-area: c;
    background-color: rgb(186, 186, 186);
    padding: 20px 50px;
    margin: 25px 0 50px 0;
    border-radius: 20px;
    border: 2px solid #0a0a0a;
}
.block_text{
    /* padding-bottom: ; */
    font-size: 1.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.map{
    width: 1265px;
    margin-bottom: 50px;
}

@media (max-width: 1265px){
    .map{
        width: 100%;
    }
}




.button{
    /* width: 200px;
    height: 80px;
    border-radius: 40px;
    background-color: #25d366;
    box-shadow: 10px 10px 20px rgb(0 0 0 / 60%);
    padding: 0.2%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 50px;
    color: #fff;
    text-decoration: none; */
    position: relative;
    display: inline-block;
    background: none;
    outline: none;
    border: none;
    padding: 2px;
    cursor: pointer;
    color: #fceee1;
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: .05em;
    margin: 20px;
}
.button .span {
    position: relative;
    z-index: 1;
    display: block;
    min-width: 1em;
    padding: 0.5em;
    border-radius: 2em;
    background-color: #25d366;   /* Видимая */
    border: 1px solid #a8a8a8;   /* Бордюрчик */
    -webkit-box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.384);
            box-shadow: -10px 10px 20px rgba(0, 0, 0, 0.411);
    -webkit-transition: background-color .2s, -webkit-transform .1s, -webkit-box-shadow .2s;
    transition: background-color .2s, -webkit-transform .1s, -webkit-box-shadow .2s;
    transition: transform .1s, box-shadow .2s, background-color .2s;
    transition: transform .1s, box-shadow .2s, background-color .2s, -webkit-transform .1s, -webkit-box-shadow .2s;
  }
  .button::after {
    content: '';
    position: absolute;
    top: -1em;
    bottom: -1em;
    left: -1em;
    right: -1em;
    border-radius: 3em;
    -webkit-box-shadow: 0 0 0px rgba(0, 0, 0, 0.2), inset 0 0 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 0px rgba(0, 0, 0, 0.2), inset 0 0 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: -webkit-box-shadow .1s;
    transition: -webkit-box-shadow .1s;
    transition: box-shadow .1s;
    transition: box-shadow .1s, -webkit-box-shadow .1s;
  }
  .button:hover .span, button:focus .span {
    background-color: #25d366;          /* При наведении */
  }
  .button:active .span {
    background-color: #25d366;         /* При нажатии */
    -webkit-transform: scale(0.97);
            transform: scale(0.97);
    -webkit-box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
            box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  }
  .button:active::after {
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2), inset -3px 3px 1em rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 2px rgba(0, 0, 0, 0.2), inset -3px 3px 1em rgba(0, 0, 0, 0.2);
  }
  .wasaap{
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 50px;
  }
@media (max-width: 1000px){
    .wasaap{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        /* width: 100px; */
    }
    header{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        align-items: center;
    }
    footer{
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        height: 100%;
        align-items: center;
    }
    .body__1{
        padding: 0 10px 0 10px;
    }
    .blocks_b{
        grid-template-areas:
        "b b b b b b b b b b b b"
        ". c c c c c c c c c c .";
    }
    .block_b{
        padding: 10px 10px;
    }
    

}




.number{
    font-size: 1.3rem;
}