@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/*
 * GLOBAL
 */
* {
  box-sizing: border-box;
}

h1, h2, h3, p {
  margin: 0;
}

a {
  text-decoration: none;
  transition: color 150ms ease-in;
}

a:hover {
  color: #00ffba;
}

/*
 * COMMON
 */
.title {
  font-weight: normal;
  font-size: 40px;
  margin-bottom: 20px;
}

.title_2 {
  font-size: 25px;
}

.title_3 {
  font-size: 20px;
}

.button {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 20px 30px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  transition: background 200ms ease;
}

.button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.list {
  padding: 0 0 0 14px;
}

.list__item {
  list-style: disc;
  margin: 10px 0;
}

/*
 * LAYOUT
 */
.body {
  background-color: #fff;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.wrapper-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.wrapper {
  width: 100%;
  min-width: 800px;
  max-width: 1100px;
  padding: 0 20px;
}

.header {
  background: #fff;
  border-bottom: 1px solid #ccc;
  position: fixed;
  width: 100%;
  height: 70px;
}

.header__main {
  text-decoration: none;
  color: #000;
  display: inline-flex;
  flex-direction: row;
  gap: 10px;
}

.header__logo {
  width: 42px;
  height: 42px;
}

.header__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header__title {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 4px;
}

.header__subtitle {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #94a3b8;
  margin-top: 2px;
}

.footer {
  border-top: 1px solid #ccc;
  background-color: #181c21;
  color: #fff;
  margin-top: auto;
  padding: 20px 0;
}

.footer__line {
  margin-top: 20px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}

.footer__gr {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fmenu {
  display: flex;
  flex-direction: row;
  font-size: 12px;
}

.fmenu__col {
  width: 200px;
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.fmenu__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fmenu__title {
  color: #fff;
}

.fmenu__link {
  color: #4a91ab;
}

/*
 * CONTENT
 */
.content {
  margin: 70px 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/*
 * HERO
 */
.hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.hero_1 {
  background-image: url(./hero_1.jpg);
  background-position-y: -150px;
  color: #fff;
  background-size: auto;
  #animation: hero-move 30s ease-in-out infinite alternate;
}

@keyframes hero-move {
  0% {
    background-position-x: 100%;
  }
  100% {
    background-position-x: 0%;
  }
}

.hero .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.hero .title {
  margin-bottom: 0;
}

/*
 * SHOWCASE
 */
.showcase {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.showcase__item {
  width: 30%;
  background: #eee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
}

.showcase__image {
  max-width: 100%;
  border-radius: 10px;
}

.showcase__text {

}

.showcase__bottom {
  text-align: center;
}

.showcase__button {
  border-color: #000;
  color: #000;
  padding: 15px;
}
