@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bg: #e4ebee;
    --font-color: #DF2D2F;
    --font-main-color: #262626;
    --font-brand: 'Pobeda', 'Segoe UI', 'Tahoma', 'Geneva', 'Verdana', sans-serif;
    --font-menu: "Bebas Neue Pro", 'Pobeda', 'Segoe UI', 'Tahoma', 'Geneva', 'Verdana', sans-serif;
}

.no-select {
  user-select: none; /* Стандартный синтаксис */
  -webkit-user-select: none; /* Chrome, Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer, Edge */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1); /* Нормальный размер */
  }
  50% {
    transform: scale(1.1); /* Немного увеличен */
  }
}

a, a:visited, a:focus-visible {
    color: inherit;
    text-decoration: none;
    outline: none;
}

ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

html, body {
    background-color: var(--bg);
}

header {
    width: 100%;
}

main {
    width: 100%;
}

footer {
    width: 100%;
}

.main_menu {
    width: 100%;
    max-width: 960px;
    height: 120px;
    margin: 0px auto;
    font-family: var(--font-menu);
}

.menu {
    height: 100%;
}

.menu li {
    padding: 0px 20px;
    transition: all 0.3s ease-in-out;
}

.menu li a {
    transition: all 0.3s ease-in-out;
}

.menu li:hover {
    padding: 0px 20px;
    background-color: rgba(0, 16, 61, 0.04);
    border-radius: 24px;
}

.menu li:hover a {
    color: #3867d6;
}

.menu li a {
    width: 100%;
    font-size: 2rem;
    text-transform: uppercase;
}

.content {
    width: 100%;
    margin: 0px auto;
}

.sub_title {
    width: 100%;
    text-align: center;
    font-family: var(--font-brand);
    color: var(--font-color);
    font-size: clamp(7rem, 2.7094rem + 18.3066vw, 32rem);
    font-weight: bold;
}

.sub_title .letter {
    width: auto;
}

.i {
    bottom: 32px;
    right: 64px;
    font-family: var(--font-menu);
    color: #929ca0;
}

.logo img:hover {
    cursor: crosshair;
    animation: pulse 1.5s ease-in-out infinite;
}