@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");
* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  text-decoration: none;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  background: #fff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.1);
  padding: 2rem 9%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

header .navbar a {
  font-size: 2em;
  margin-left: 2rem;
  color: #bd1c1c;
}

header .navbar a:hover {
  font-size: 2em;
  margin-left: 30px;
  color: #fff;
  border-radius: 20px;
  background-color: #bd1c1c;
  padding: 2px 15px;
}

header input {
  display: none;
}

header label {
  font-size: 2em;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}

section {
  min-height: 100vh;
  /*padding: 0 9%;*/
}

.home {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main {
  width: 380px;
  animation: float 3s linear infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0rem);
  }

  50% {
    transform: translateY(-2.5rem);
  }
}

.home1 .content h1 {
  font-size: 6rem;
  color: #333;
}

.home1 .content h1 span {
  font-weight: 900;
  text-transform: uppercase;
  color: #bd1c1c;
}

.home1 .content p {
  font-size: 3.5rem;
  color: #333;
  padding-top: 10px;
}

.btn-more {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 15px;
  border-radius: 20px;
  background-color: #bd1c1c;
  color: #fff;
  font-size: 2.5em;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.btn-more:hover {
  transform: scale(1.2);
}

.btn-price {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 15px;
  border-radius: 20px;
  background-color: #bd1c1c;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.btn-price:hover {
  transform: scale(1.2);
}

.title {
  text-align: center;
  font-size: 5rem;
  padding-bottom: 10px;
}

.price {
  align-items: center;
  justify-content: center;
  background: url(../asset/img/9.png) no-repeat;
  background-size: contain;
  background-position: center;
}

.price .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.price .container .box {
  flex: 1 1 30rem;
  background: #fff;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  margin: 20px;
  padding: 50px 20px;
  text-align: center;
}

.testi {
  align-items: center;
  justify-content: center;
  background: url(../asset/img/test.png) no-repeat;
  background-size: contain;
  background-position: center;
}

.testi .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.testi .container .box {
  flex: 1 1 30rem;
  background: #fff;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  margin: 20px;
  padding: 50px 20px;
  text-align: center;
}

.more .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.more .container .box {
  flex: 1 1 30rem;
  background: #fff;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  margin: 20px;
  padding: 50px 20px;
  text-align: center;
}

.img-me {
  width: 150px;
}

.more .container .jahit {
  margin: 20px;
  padding: 50px 20px;
  flex: 1 1 30rem;
}

.more .container .box .img-jahit {
  width: 80px;
}

.price .container .box .img-price {
  width: 50px;
}

.price .container .box h2 {
  font-size: 25px;
  padding-top: 5px;
}

.price .container .box p {
  font-size: 15px;
  padding-top: 5px;
}

footer {
  padding-top: 20px;
  background-color: #bd1c1c;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 80px;
}

footer .container .box {
  margin: 20px;
}

footer .container .box h3 {
  font-size: 25px;
  color: #fff;
  margin-bottom: 10px;
  text-decoration: underline;
}

footer .container .box a {
  display: block;
  font-size: 15px;
  color: #fff;
}

.last {
  color: #fff;
  padding-bottom: 80px;
}

@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }
}

@media (max-width: 991px) {
  section {
    /*padding: 0 3%;*/
    padding-top: 100px;
  }
}

@media (max-width: 768px) {
  header label {
    visibility: visible;
    opacity: 1;
  }

  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem 2rem;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: 0.2s linear;
  }

  header .navbar a {
    display: block;
    margin: 2rem 0;
    font-size: 2rem;
  }

  header .navbar a:hover {
    font-size: 2em;
    color: #fff;
    margin-left: -15px;
    border-radius: 20px;
    background-color: #bd1c1c;
  }

  header input:checked ~ .navbar {
    transform: scaleY(1);
    opacity: 1;
  }

  header input:checked ~ label::before {
    content: "\f00d";
  }

  .home1 {
    flex-flow: column-reverse;
  }

  .main {
    width: 300px;
    align-items: center;
  }

  .home1 .content h1 {
    font-size: 4rem;
  }

  .home1 .content p {
    font-size: 2.5rem;
  }

  .btn-more {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 15px;
    border-radius: 20px;
    background-color: #bd1c1c;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
}
