
 /* =============== LINKS ====================== */
.link2 {
    color: lightblue;
    font-size: 2.3vh;
    text-decoration: none;
    vertical-align: bottom;
    display: flex; align-items: center;
 }

.link2:link { color: lightgray; }
.link2:hover { color: red; font-size: 2.4vh;
               text-decoration: none }
.link2:active { color: brown; }

.link1 {
    color: lightgray;
    font-size: 2.5vh;
    text-decoration: none;
    vertical-align: bottom;
    display: flex; align-items: center;
 }

.link1:link { color: lightgray; }
.link1:hover { color: red; font-size: 2.4vh;
               text-decoration: none }
.link1:active { color: brown; }

.link_t {                                /* mobile */
    link:  white;
    vlink: white;
    alink: white;
    color: white;
    text-decoration: none;
}
.link_t:hover {
    color: red;
    text-decoration: none;
}

.link_w {                                /* mobile */
    link:  white;
    vlink: white;
    alink: white;
    color: white;
    text-decoration: none;
    font-size: 1.1vw;
}
.link_w:hover {
    link:  yellow;
    vlink: yellow;
    alink: yellow;
    color: yellow;
    text-decoration: none;

}

.link-b {                                /* mobile */
    link:  black;
    vlink: black;
    alink: black;
    color: black;
    text-decoration: none;
}
.link-b:hover {
    color: blue;
    text-decoration: none;
}
.link-g {                                /* mobile */
    link:  darkslategray;
    vlink: darkslategray;
    alink: darkslategray;
    color: darkslategray;
    text-decoration: none;
}
.link-g:hover {
    color: black;
    text-decoration: none;
}

/* =============== EFFECTS ====================== */
/* -------------------------------------- */
.scale-size {
    transform: scale(1.0)
}
.scale-size:hover {
    transition: 0.5s;         /* Время эффекта */
    transform: scale(1.1);    /* Увеличиваем масштаб */
}
/* -------------------------------------- */
.scale-size-small {
    transform: scale(1.0)
    border: 0px solid white;
}
.scale-size-small:hover {
    transition: 0.3s;         /* Время эффекта */
    transform: scale(0.97);    /* Увеличиваем масштаб */
    border: 0px solid gray;
}
/* ---------------image----------------------- */
.scale-size-big {
    transform: scale(1.0)
    -webkit-transform-origin: top;
}
.scale-size-big:hover {
    border: 2px solid white;
    transition: 1.8s;         /* Время эффекта */
    transform: scale(1.7);    /* Увеличиваем масштаб */
    -webkit-transform-origin: top;

}
/* ---------------schede----------------------- */
.scale-size-big1 {
    transform: scale(1.0)
    -webkit-transform-origin: top;
}
.scale-size-big1:hover {
    border: 2px solid white;
    transition: 1.8s;         /* Время эффекта */
    transform: scale(1.7);    /* Увеличиваем масштаб */
    -webkit-transform-origin: top;

}
/* -------------------------------------- */
.scale-border {
       border: 0px solid white;
}
.scale-border:hover {
       transition: 0.0s;        /* Время эффекта */
       border: 2px solid white; /* Помещаем рамку */
}

[data-tooltip] {
    position: relative; /* Относительное позиционирование */
   }
[data-tooltip]::after {
    content: attr(data-tooltip); /* Выводим текст */
    position: absolute; /* Абсолютное позиционирование */
    width: 300px; /* Ширина подсказки */
    left: 0; top: 0; /* Положение подсказки */
    background: #3989c9; /* Синий цвет фона */
    color: #fff; /* Цвет текста */
    padding: 0.5em; /* Поля вокруг текста */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Параметры тени */
    pointer-events: none; /* Подсказка */
    opacity: 0; /* Подсказка невидима */
    transition: 1s; /* Время появления подсказки */
   }
[data-tooltip]:hover::after {
    opacity: 1; /* Показываем подсказку */
    top: 2em; /* Положение подсказки */
   }
