* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

@font-face {
  font-family: "Nautilus";
  src: url(../fonts/Nautilus.otf);
}
.header {
  height: 100vh;
  background: url(../img/bg.jpg) center center/cover no-repeat;
}
.header .container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  padding-bottom: 10%;
}
.header .container .text {
  color: #fff;
  text-align: center;
}
.header .container .text h1 {
  font-size: 60px;
  font-family: "Nautilus";
}
.header .container .text p {
  font-size: 22px;
  margin-top: 20px;
  margin-bottom: 30px;
  font-weight: 600;
}
.header .container .text a {
  background-color: #fff;
  color: #000;
  display: inline-block;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
}
.header .container .text a img {
  width: 30px;
}

.product {
  padding: 50px 0;
}
.product .items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 100px;
}
.product .items .item {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 50px;
}
.product .items .item img {
  width: 100%;
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 10px 0;
  border-radius: 20px;
}
.product .items .item .text-block {
  position: relative;
}
.product .items .item .text-block .text {
  position: sticky;
  top: 50px;
  height: auto;
}
.product .items .item .text-block .text h5 {
  font-weight: bold;
  color: green;
  font-size: 25px;
}
.product .items .item .text-block .text h6 {
  font-weight: bold;
  color: rgb(58, 58, 125);
  margin-bottom: 25px;
}
.product .items .item .text-block .text h3 {
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 10px;
}
.product .items .item .text-block .text p {
  margin-bottom: 20px;
  font-size: 14px;
}
.product .items .item .text-block .text a {
  color: #fff;
  background-color: green;
  border: 2px solid green;
  text-align: center;
  display: inline-block;
  padding: 15px 50px;
  margin-bottom: 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 20px;
}

.terms {
  text-align: center;
  padding: 100px 0;
  background-color: #eaeaea;
}
.terms h2 {
  font-weight: bold;
  margin-bottom: 20px;
}
.terms p {
  margin: 0;
}

.footer {
  text-align: center;
  padding: 50px 0;
  font-weight: bold;
}
.footer a {
  color: #000;
}

@media (max-width: 991px) {
  .product .items {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .product .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
  .header .container .text h1 {
    font-size: 45px;
  }
  .terms {
    padding: 50px 0;
  }
  .header .container .text a {
    font-size: 20px;
  }
  .header .container .text a svg {
    width: 20px;
  }
  .product .items .item {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .product .items .item .img {
    display: flex;
    overflow-x: scroll;
  }
  .product .items .item .img img {
    height: 400px;
    margin-right: 10px;
    margin-bottom: 0;
    padding-bottom: 10px;
  }
  .header .container {
    padding-bottom: 35%;
  }
}/*# sourceMappingURL=style.css.map */