/* font-family */
@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap");

* {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", serif;
  width: 100%;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 74px;
  position: fixed;
  inset: 0;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.logo a {
  color: #2b145c;
  font-size: 20px;
  text-decoration: none;
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-style: normal;
  padding: 0 24px;
}

.menu {
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.menu ul {
  width: 100%;
  height: 100%;
  list-style-type: none;
  display: flex;
  justify-content: center;
}

.menu ul li {
  min-width: 150px;
  padding: 0 24px;
  text-align: center;
}

.menu a {
  font-size: 16px;
  font-weight: 700;
  color: #2b145c;
  text-decoration: none;
}

.menu a:hover {
  opacity: 0.8;
}

#home {
  background: url("../images/banner-bg.jpg") top center no-repeat;
  background-size: cover;
}

.home-section {
  height: 100vh;
  text-align: center;
  display: flex;
  place-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.home-block {
  display: flex;
  flex-grow: 1;
  flex-flow: column;
  row-gap: 16px;
  position: relative;
  top: -30px;
}

.home-text-img {
  opacity: 0.65;
  padding: 0 0 15px 0;
  max-width: 100%;
}

.home-block h1 {
  color: #fff;
  text-shadow: 0px 4px 2px rgba(0, 0, 0, 0.25);
  font-weight: 900;
  font-size: 87px;
}

.home-block p {
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 1px;
}

#product {
  position: relative;
  background: url("../images/pdt-bg.jpg") top center no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: grid;
  place-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  justify-content: space-between;
  column-gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.pdt-intro-content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  row-gap: 40px;
}

.pdt-intro-content p {
  font-size: 20px;
  color: #4b3c6b;
  line-height: 1.25;
  letter-spacing: 0.8px;
}

.pdt-logo {
  display: flex;
  align-items: center;
}

.pdt-logo img {
  width: 80px;
  margin-right: 24px;
}

.pdt-logo p {
  font-size: 32px;
  color: #000;
  font-weight: 700;
  line-height: normal;
}

.dowload-btn-block {
  display: flex;
  column-gap: 24px;
}

.pdt-img-content {
  text-align: right;
}

.pdt-img-content img {
  max-width: 100%;
}

footer {
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  left: 0;
}

.footer-content {
  color: #4b3c6b;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  flex-flow: column;
  row-gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 11px 20px;
}

.footer-info {
  display: flex;
  justify-content: center;
  column-gap: 16px;
}

.link-block {
  display: flex;
  justify-content: center;
  column-gap: 16px;
}

.link-block a {
  color: #4b3c6b;
}
