* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/***************************** Global Style *****************************/
p {
  font-size: 15px;
  color: #555;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--primary);
}

.scroll-top-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: linear-gradient(-135deg, var(--primary), var(--secondary));
  color: #fff;
  text-align: center;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.scroll-top-btn:hover {
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.4);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.4);
  color: #fff;
  border-radius: 50%;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.vr-center {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.hr-center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

/***************************** Animations *****************************/
@-webkit-keyframes bg-border {
  0% {
    border-radius: 0 0 75% 95%;
  }
  35% {
    border-radius: 0 0 85% 100%;
  }
  50% {
    border-radius: 0 0 95% 65%;
  }
  35% {
    border-radius: 0 0 100% 70%;
  }
}
@keyframes bg-border {
  0% {
    border-radius: 0 0 75% 95%;
  }
  35% {
    border-radius: 0 0 85% 100%;
  }
  50% {
    border-radius: 0 0 95% 65%;
  }
  35% {
    border-radius: 0 0 100% 70%;
  }
}

/***************************** Start Edit Navbar & Footer *****************************/
.nav-wrapper {
  position: relative;
  z-index: 1;
}

.nav-wrapper .navbar .nav-link {
  color: #000;
  font-weight: bold;
  font-weight: 13px;
  margin: 0 15px;
}

.nav-wrapper .navbar .nav-btns .btn {
  width: 160px;
  height: 45px;
  line-height: 43px;
  text-align: center;
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
  padding: 0;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  margin: 0 2px;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
}

.nav-wrapper .navbar .nav-btns .btn::after {
  content: '';
  width: 0%;
  height: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  background-color: #FDCE51;
  display: block;
  top: 0;
}

.nav-wrapper .navbar .nav-btns .btn span {
  position: relative;
  z-index: 1;
}

.nav-wrapper .navbar .nav-btns .btn.active {
  background-color: var(--primary);
  color: #fff;
}

.nav-wrapper .navbar .nav-btns .btn:hover {
  border: 2px solid #FDCE51;
  background-color: #FDCE51;
  color: #fff;
}

.nav-wrapper .navbar .nav-btns .btn:hover::after {
  width: 100%;
}

.nav-wrapper .navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.nav-wrapper .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.nav-wrapper .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav-wrapper .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.nav-wrapper .navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.nav-wrapper .navbar .navbar-toggler .navbar-toggler-icon::after, .nav-wrapper .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.nav-wrapper .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.nav-wrapper .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

footer {
  padding: 50px 0 0px 0;
}

footer .links {
  text-align: end;
}

footer .links a {
  font-size: 14px;
  margin: 0 10px;
  font-weight: 500;
}

footer .links a:hover {
  color: var(--primary);
}

footer .copyright {
  text-align: center;
  padding: 20px 0;
  background-color: #f4f4f4;
  margin-top: 35px;
}

footer .copyright p {
  color: #555;
  font-weight: 600;
  margin-bottom: 0;
}

/***************************** Start Edit Home Page *****************************/
header {
  position: relative;
}

header::after {
  content: '';
  background-color: #F7FFDE;
  width: 100%;
  height: 320px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  border-radius: 0 0 100% 100%;
  animation: bg-border 2s linear infinite alternate-reverse;
}

header .header-inner {
  margin-top: 100px;
  position: relative;
  z-index: 1;
  background-color: #F5F5F5;
  padding: 50px 35px 0 35px;
  border-radius: 30px;
}

header .header-inner .img-box {
  width: 100%;
  height: 370px;
  margin-bottom: -70px;
}

header .header-inner .img-box .img-header {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

header .header-inner .text-box .headline {
  font-weight: 600;
}

header .header-inner .text-box .form-group {
  position: relative;
  margin-top: 1.3rem;
}

header .header-inner .text-box .form-group .form-control {
  border: 1px solid #fff;
  height: 60px;
  border-radius: 25px;
  padding: 0 50px;
}

header .header-inner .text-box .form-group .submit-btn {
  position: absolute;
  right: 5px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  top: 5px;
}

header .header-inner .text-box .form-group .submit-btn:hover {
  background-color: #FDCE51;
  border: 1px solid #FDCE51;
}

header .header-inner .text-box .form-group i {
  position: absolute;
  top: 23px;
  left: 20px;
  color: var(--primary);
}

/*sec-heading*/
.sec-heading {
  margin-bottom: 50px;
}

.sec-heading .headline {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
}

.sec-heading .link-btn {
  width: 160px;
  height: 45px;
  line-height: 43px;
  text-align: center;
  border: 2px solid #FDCE51;
  color: #fff;
  background-color: #FDCE51;
  padding: 0;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  margin: 0 2px;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
}

.sec-heading .link-btn::after {
  content: '';
  width: 0%;
  height: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  background-color: var(--primary);
  display: block;
  top: 0;
}

.sec-heading .link-btn span {
  position: relative;
  z-index: 1;
}

.sec-heading .link-btn:hover {
  border: 2px solid var(--primary);
  background-color: var(--primary);
  color: #fff;
}

.sec-heading .link-btn:hover::after {
  width: 100%;
}

/*main-btn*/
.main-btn {
  width: 160px;
  height: 45px;
  line-height: 43px;
  text-align: center;
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
  padding: 0;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  margin: 0 2px;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  display: block;
}

.main-btn::after {
  content: '';
  width: 0%;
  height: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  background-color: #FDCE51;
  display: block;
  top: 0;
}

.main-btn span {
  position: relative;
  z-index: 1;
}

.main-btn.active {
  background-color: var(--primary);
  color: #fff;
}

.main-btn:hover {
  border: 2px solid #FDCE51;
  background-color: #FDCE51;
  color: #fff;
}

.main-btn:hover::after {
  width: 100%;
}

/*hr*/
hr {
  margin-top: 70px;
}

.prod-sec {
  padding: 100px 0 0px 0;
}

.prod-sec.combox-sec {
  padding: 50px 0 0 0;
}

.banners-sec {
  padding: 70px 0 0 0;
}

.banners-sec .banner-item {
  height: 380px;
  position: relative;
}

.banners-sec .banner-item .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banners-sec .banner-item .text-box {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.banners-sec .banner-item-sm {
  overflow: hidden;
  height: 185px;
  margin-bottom: 10px;
}

.banners-sec .banner-item-sm .text-box {
  top: 150%;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
  z-index: 1;
}

.banners-sec .banner-item-sm::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.banners-sec .banner-item-sm:hover::after {
  opacity: .7;
}

.banners-sec .banner-item-sm:hover .text-box {
  top: 50%;
}

.banners-sec .swiper-button-next, .banners-sec .swiper-button-prev {
  background-size: 22px;
  -webkit-filter: invert(0%) sepia(9%) saturate(7466%) hue-rotate(54deg) brightness(0%) contrast(184%);
          filter: invert(0%) sepia(9%) saturate(7466%) hue-rotate(54deg) brightness(0%) contrast(184%);
}

.banners-sec .swiper-button-next:hover, .banners-sec .swiper-button-prev:hover {
  -webkit-filter: invert(56%) sepia(51%) saturate(3375%) hue-rotate(320deg) brightness(105%) contrast(103%);
          filter: invert(56%) sepia(51%) saturate(3375%) hue-rotate(320deg) brightness(105%) contrast(103%);
}

.subscription-sec {
  padding: 70px 0 0 0;
}

.subscription-sec .item {
  position: relative;
  background-color: #F5F5F5;
  border-radius: 25px;
  padding: 45px 35px;
  margin-bottom: 15px;
}

.subscription-sec .item .headline {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 1.4rem;
  line-height: 3rem;
}

.subscription-sec .item .card-img {
  position: absolute;
  width: 270px;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  right: 0;
  bottom: -35px;
}

.subscription-sec .item .card-img2 {
  position: absolute;
  width: 300px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  right: 0;
  bottom: -35px;
}
/*# sourceMappingURL=index.css.map */