* {
  transition: 600ms all;
  padding: 0;
  margin: 0;
  list-style-type: none;
  text-decoration: none;
  font-family: Golos Text;
  line-height: 1.2;
  scroll-behavior: smooth;
  list-style-type: none;
}

:root {
  --mainBlack: #04081b;
  --mainRed: #ff0000;
  --mainGrey: #8489a0;
}

body {
  background-color: #f9f9f9;
}

h1 {
  font-size: clamp(32px, 3.5vw, 64px);
  font-weight: 700;
  color: var(--mainBlack);
  color: #272053;
}

h2 {
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--mainBlack);
}

h3 {
  font-size: clamp(16px, 3.5vw, 24px);
  font-weight: 600;
}

.container {
  max-width: 1360px;
  padding: 0 40px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
}

a {
  color: var(--mainBlack);
  font-weight: 500;
  font-size: clamp(14px, 1vw, 16px);
  cursor: pointer;
}
a:hover {
  color: var(--mainRed);
}

p {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  letter-spacing: 0em;
  text-align: left;
}

.small {
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 400;
  color: var(--mainGrey);
}

.pb {
  padding-bottom: 40px;
}

.social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icon {
  width: 32px;
  aspect-ratio: 1/1;
  background-color: var(--mainRed);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.social-icon:hover {
  background-color: black !important;
}

.reed-more {
  position: relative;
  background-color: red;
  color: white;
  padding-left: 10px;
  display: flex;
  align-items: center;
  height: 37px;
}
.reed-more:hover {
  box-shadow: inset 0 -38px 0 0 white;
}
.reed-more:hover .reed-arrow:after {
  background-color: red;
}
.reed-more:hover .reed-arrow:before {
  background-color: red;
}
.reed-more .reed-arrow {
  width: 35px;
  aspect-ratio: 1/1;
  position: relative;
}
.reed-more .reed-arrow:after {
  content: "";
  position: absolute;
  transform: rotate(45deg);
  right: 10px;
  height: 2px;
  width: 10px;
  top: 40%;
  background-color: white;
}
.reed-more .reed-arrow:before {
  content: "";
  position: absolute;
  transform: rotate(135deg);
  right: 10px;
  height: 2px;
  width: 10px;
  bottom: 40%;
  background-color: white;
}/*# sourceMappingURL=style.css.map */