/* --------reset-------- */

@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root{
  --green: #18a215;
  --red: #ef4546;
  --lite-bg: #eff6ee;
  --orange-gradient: linear-gradient(135deg, rgba(250,171,25,1) 0%, rgba(240,78,35,1) 100%);
  --green-gradient: linear-gradient(180deg, rgba(62,187,100,1) 0%, rgba(33,131,63,1) 100%);
  --shadow-md: 0 3px 7px 0 rgba(0, 0, 0, .13), 0 1px 2px 0 rgba(0, 0, 0, .11);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #333;
  background-color: #fcfcfd;
}

section {
  width: 100%;
}

a {
  text-decoration: none;
}

figure{
  margin: 0;
}

.section-title{
  font-weight: 700;
  font-size: 32px;
  color: var(--red);
  margin: 0;
  text-transform: uppercase;
}

.main-wrap{
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* -------------- */

.header-st{
  background-color: white;
}

.header{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.header-logo{
  display: inline-block;
}

.header-logo-img{
  width: fit-content;
}
.header-logo-img img{
  width: 150px;
}

.header-menu-wrap{
  width: fit-content;
}

.header-menu{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: fit-content;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-menu li{
  display: inline-block;
}
.header-menu li a{
  font-size: 18px;
  font-weight: 500;
  color: var(--red);
}


.home-banner{
  width: 100%;
}
.home-banner img{
  width: 100%;
}


.home-product{
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background-color: white;
  padding: 20px;
}

.home-product-img{
  width: 100%;
  aspect-ratio: 4/5;
  padding: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ffc280;
  margin-bottom: 20px;
}

.home-product-img img{
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
}

.home-product-text p{
  padding: 12px;
  border-radius: 12px;
  background-color: #f38919;
  color: white;
  font-weight: 500;
  text-align: center;
  margin: 0;
  font-size: 18px;
}



.home-using-item{
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.home-using-img{
  width: 100%;
  aspect-ratio: 5/3;
}
.home-using-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-using-text{
  padding: 12px;
  padding-top: 32px;
  position: relative;
}

.home-using-text h5{
  margin: 0;
  padding: 8px 16px;
  background-color: #12a328;
  color: white;
  width: fit-content;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
}
.home-using-text p{
  text-align: center;
  margin: 0;
}


.home-contact-text ul{
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.home-contact-text ul li{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-contact-text ul li i{
  color: #12a328;
}

.hotline-btn{
  display: inline-block;
  width: fit-content;
  padding: 12px 20px;
  border-radius: 24px;
  background-color: #12a328;
  color: white;
  text-decoration: none;
  margin: 0 auto;
  transition: all .3s;
}
.hotline-btn:hover{
  background-color: #f38919;
  color: white;
}


.form-contain{
  width: 100%;
  background-color: white;
  padding: 18px;
  border-radius: 16px;
}

.form-contain .wpcf7-form.init{
  width: 100%;
  margin: 0;
  gap: 20px;
}

.form-contain .wpcf7-form.init > p{
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  gap: 14px;
  align-items: end;
}
.form-contain .wpcf7-form.init > p > .wpcf7-form-control-wrap{
  width: 100%;
  margin-bottom: 9px;
}
.form-contain .wpcf7-form.init > p > .wpcf7-form-control-wrap > input, .form-contain .wpcf7-form.init > p > .wpcf7-form-control-wrap > select{
  width: 100%;
  padding: 8px 18px;
  border:1px solid #ffc280;
  outline: none;
  border-radius: 12px;
}

.form-contain .wpcf7-form.init > p > .wpcf7-form-control-wrap > textarea{
  height: 70px;
  width: 100%;
  padding: 8px 18px;
  border:1px solid #ffc280;
  outline: none;
  border-radius: 12px;
}
.form-contain .wpcf7-form.init > p > .wpcf7-form-control.wpcf7-submit {
  width: fit-content;
  background-color: #ef4546;
  padding: 8px 18px;
  color: white;
  border: none;
  outline: none;
  border-radius: 24px;
}

.footer-st{
  background-color: #ef4546;
  padding: 30px 0;
}

.footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer p{
  color: white;
  font-weight: 600;
  margin: 0;
}



@media only screen and (max-width: 480px){
  .header-logo{
    width: 100%;
    margin-bottom: 20px;
  }

  .header-logo-img{
    margin: 0 auto;
    
  }

  .header-menu{
    gap:6px 12px;
    justify-content: space-between;
  }

  .header-menu li a{
    font-size: 16px;
    white-space: nowrap;
  }
}