/* font import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html,
body {
   overflow-x: hidden;
   scroll-behavior: auto;
}

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



.container {
   /* padding: 0; */
}

/* header-css */
.main-header {
   padding: 10px 0;
}



.main-header .container {
   display: flex;
   justify-content: space-between;
}

.header-left {
   display: flex;
   justify-content: left;
   align-items: center;
}

.header-left h2 {
   font-family: "Montserrat", sans-serif;
   font-size: 25px;
   color: #242058;
   font-weight: 700;
   margin: 0;
}

.phone {
   display: flex;
   align-items: center;
   justify-content: left;
}

.mobile-logo {
   display: none;
}

.phone a {
   font-family: "Montserrat", sans-serif;
   font-size: 26px;
   color: #000000;
   display: block;
   text-decoration: none;
   margin-left: 10px;
}

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

.location {
   display: flex;
   align-items: center;
   margin-left: 25px;
}

.location-img {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 35px;
   height: 35px;
   border: 1px solid #000;
   border-radius: 20px;
}

.location h5 {
   font-family: "Montserrat", sans-serif;
   margin: 0;
   font-weight: 400;
   font-size: 26px;
   color: #000000;
   margin-left: 10px;
}

/* Banner-css start */

.my-container::before {
   content: "";
   position: absolute;
   top: -12px;
   left: 0;
   width: 100%;
   height: 12px;
   background: linear-gradient(to right, rgb(36 33 88 / 1%) 0%,
         /* fully transparent left */
         rgba(36, 33, 88, 1) 50%,
         /* solid color center */
         rgb(36 33 88 / 7%) 100%
         /* fully transparent right */
      );
   z-index: 1;
}

.my-container::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 366px;
   background: linear-gradient(to bottom, rgb(255 255 255 / 0%) 0%,
         /* transparent top */
         rgb(255 255 255 / 34%) 50%,
         /* solid white center */
         rgb(255 255 255 / 88%) 100%
         /* transparent bottom */
      );

   color: #fff;
   z-index: 1;
}

.my-container {
   position: relative;
   background-image: url(image/banner-img.jpg);
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   /* z-index: -1; */
}

.banner-left {
   padding: 75px 0;
}

.banner-left h1 {
   font-family: "Montserrat", sans-serif;
   font-size: 92px;
   font-weight: 600;
   text-shadow: 2px 2px 8px rgb(0 0 0);
   color: #ffffff;
   text-transform: uppercase;
}

.banner-left h2 {
   font-family: "Montserrat", sans-serif;
   font-size: 32px;
   font-weight: 600;
   text-transform: uppercase;
   color: #242158;
   background: linear-gradient(to right, rgb(255 255 255), rgb(255 255 255 / 0%));
   padding: 17px 27px;
}

.banner-left span {
   color: #7dc140;
}

.banner-right {
   padding: 75px 0;
   display: flex;
   justify-content: right;
   width: 489px;
   display: flex;
   justify-content: right;
}



.banner-right input {
   font-family: "Montserrat", sans-serif;
   font-size: 16px;
   font-weight: 600;
   padding: 12px 17px;
   width: 100%;
   margin-bottom: 10px;
   color: #000000;
   text-transform: capitalize;
}

.banner-right textarea {
   font-family: "Montserrat", sans-serif;
   font-size: 16px;
   font-weight: 600;
   padding: 12px 17px;
   width: 100%;
   height: 78px;
}

.banner-right h3 {
   font-family: "Montserrat", sans-serif;
   font-size: 35px;
   font-weight: 600;
   color: #000000;
   text-transform: capitalize;
}

.submit-btn {
   font-family: "Montserrat", sans-serif;
   font-size: 15px;
   font-weight: bold;
   padding: 15px 40px;
   border-radius: 11px;
   text-transform: uppercase;
   background-color: #1255b9;
   color: #fff;
   border: none;
   margin-bottom: 20px;
   cursor: pointer;
   transition: all 0.3s ease;
}

.submit-btn:hover {
   box-shadow: 0 8px 16px rgba(18, 85, 185, 0.4);
   /* soft blue shadow */
   transform: translateY(-3px);
   /* slight lift on hover */
}
.submit-btn br{
	display:none;
}

.banner-right .form-bottom p {
   font-family: "Montserrat", sans-serif;
   font-size: 11px;
   font-weight: 600;
   color: #000000;
   background-color: #fbfbaa;
   border-radius: 10px;
   display: flex;
   justify-content: center;
   padding: 11px 11px;

}

.banner-right p span {
   /*color: #487a1c;*/
       color: #dc3232 !important;
}

.banner-right .card {
   z-index: 9;
}

.banner-bottom-img {
   position: absolute;
   bottom: 45px;
   left: 40%;
   z-index: 9;
}

/* banner-bottom-start */
.banner-bottom {
   padding: 40px 0;
}

.banner-bottom .container {
   background: linear-gradient(to right, rgb(248 230 216 / 7%) 0%,
         /* transparent left */
         rgb(248 230 216) 50%,
         /* solid center */
         rgb(248 230 216 / 4%) 100%
         /* transparent right */
      );
   padding: 26px 0;
   text-align: center;
}

.banner-bottom h2 {
   font-size: 30px;
   color: #c52600;
}

/* how to use start */
.how-to-use {
   padding: 70px 0 40px 0;
}

.heading h2 {
   font-family: "Montserrat", sans-serif;
   font-size: 65px;
   font-weight: 600;
   color: #7dc140;
   text-align: center;
   text-transform: uppercase;
}

.heading h2 span {
   color: #242158
}

.how-to-use .heading {
   position: relative;
   margin-bottom: 40px;
}

.how-to-use .heading::before {
   content: "";
   position: absolute;
   top: -40px;
   /* adjust to move image above heading */
   left: 50%;
   transform: translateX(-50%);
   width: 420px;
   /* image width */
   height: 40%;
   /* image height */
   background-image: url("image/heading-obj.png");
   background-size: contain;
   background-repeat: no-repeat;
   background-position: center;
}

.heading::after {
   content: "";
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   width: 600px;
   /* image width */
   height: 5px;
   /* image height */
   background: linear-gradient(to right,
         rgba(213, 112, 83, 0) 0%,
         /* transparent left */
         rgba(213, 112, 83, 1) 50%,
         /* solid center */
         rgba(213, 112, 83, 0) 100%
         /* transparent right */
      );
   text-align: center;
}

.how-to-use p {
   font-family: "Montserrat", sans-serif;
   font-size: 34px;
   color: #443f9f;
   text-align: center;
}

.how-to-use-bottom-img {
   display: flex;
   justify-content: center;
   width: 100%;
   margin: 40px 0;
}

/* why-we-section-start */
.why-we {
   background: linear-gradient(to left, #e8f3dd 0%, rgba(232, 243, 221, 0) 100%);
   padding: 50px 0;
   position: relative;
   z-index: -1;
}

.why-we::after {
   content: "";
   position: absolute;
   bottom: -370px;
   /* adjust to move image above heading */
   right: 0;
   width: 559px;
   /* image width */
   height: 100%;
   /* image height */
   background-image: url("image/why-we-obj.png");
   background-size: contain;
   background-repeat: no-repeat;
   background-position: center;
}

.why-we .heading::after {
   content: "";
   width: 300px;
}

.why-we .heading {
   margin-bottom: 50px;
}

.why-we-left img {
   width: 100%;
}

.why-we-right p {
   font-family: "Montserrat", sans-serif;
   font-size: 29px;
   font-weight: 500;
}

.why-we-right span {
   color: #325710 !important;
}

.why-we-right h3 {
   font-family: "Montserrat", sans-serif;
   font-weight: 600;
   text-transform: capitalize;
   margin-bottom: 65px;
}

.why-we-right {
   padding-left: 30px;
}

.why-we-left {
   position: relative;
}

.why-we-left::after {
   content: "";
   position: absolute;
   top: -15px;
   right: -15px;
   width: 300px;
   height: 300px;
   background-color: #7dc140;
   z-index: -1;

}

.why-we-left::before {
   content: "";
   position: absolute;
   bottom: -15px;
   left: -15px;
   width: 300px;
   height: 300px;
   background-color: #7dc140;
   z-index: -1;

}

/* why-we-end */

/* ingredients-section-start */
.ingredients {
   padding: 100px 0;
   position: relative;
   /* overflow-x: inherit !important; */
}

.ingredients .heading::after {
   content: "";
   background: linear-gradient(to right,
         rgba(62, 58, 108, 0) 0%,
         /* fully transparent at left */
         rgba(62, 58, 108, 1) 50%,
         /* solid color at center */
         rgba(62, 58, 108, 0) 100%
         /* fully transparent at right */
      );
   width: 1050px;
}

.ingredients .heading::before {
   content: "";
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   height: 5px;
   background: linear-gradient(to right,
         rgba(62, 58, 108, 0) 0%,
         /* fully transparent at left */
         rgba(62, 58, 108, 1) 50%,
         /* solid color at center */
         rgba(62, 58, 108, 0) 100%
         /* fully transparent at right */
      );
   text-align: center;
   width: 900px;
   margin-top: -15px;
}

.ingredients .row {
   padding: 100px 0;
}

.ingredients-img {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 150px;
   height: 150px;
   border: 4px solid #c12b00;
   border-radius: 50%;
   margin: 0 auto;
}

.ingredients-img img {
   width: 110px;
   height: 80px;
   object-fit: contain;
}

.ingredients-des {
   text-align: center;
   margin-top: 23px;
}

.ingredients-des h2 {
   font-family: "Montserrat", sans-serif;
   text-transform: uppercase;
   font-weight: 700;
   font-size: 26px;
   color: #c12b00;
}

.ingredients-des p {
   font-family: "Montserrat", sans-serif;
   font-weight: 400;
   font-size: 20px;

}

.ingredients-buttom h3 {
   font-family: "Montserrat", sans-serif;
   font-size: 35px;
   color: #c12b00;
   font-weight: 600;
   text-transform: uppercase;
   text-align: center;
   background: linear-gradient(to right,
         rgba(238, 248, 253, 0) 0%,
         /* fully transparent left */
         rgba(238, 248, 253, 1) 50%,
         /* solid at center */
         rgba(238, 248, 253, 0) 100%
         /* fully transparent right */
      );
   padding: 10px 0;
}

.ingredients::after {
   content: "";
   position: absolute;
   bottom: -370px;
   /* adjust to move image above heading */
   left: 0;
   width: 450px;
   /* image width */
   height: 100%;
   /* image height */
   background-image: url("image/object-3.png");
   background-size: contain;
   background-repeat: no-repeat;
   background-position: center;
}


/* ingredients-section-end */

/* clients-review section */
.clients-reviews {
   padding: 45px 0;
   background: linear-gradient(to left,
         rgba(62, 147, 25, 1) 0%,
         /* solid color on the right */
         rgba(62, 147, 25, 0) 100%
         /* fully transparent on the left */
      );
   z-index: -1;
   position: relative;

}

.clients-reviews .heading:after {
   content: "";
   display: none;
}



.clients-reviews .heading h2 {
   font-size: 45px;
   font-weight: 600;
   text-align: left;
}

.client-des p {
   font-family: "Montserrat", sans-serif;
   font-size: 25px;
   font-weight: 400;
   color: #000000;
   padding: 75px 0;

}

.clients-name-rating {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.clients-name-rating .clients-name h3 {
   font-family: "Montserrat", sans-serif;
   font-size: 26px;
   font-weight: 700;
   color: #000000;
   text-transform: uppercase;
}

.clients-left {
   position: relative;
   z-index: 9;
}

.clients-right {
   text-align: right;
   position: relative;
   z-index: 9;
}

.clients-rating img {
   width: 100%;
   height: 36px;
}

.clients-name h3 {
   margin: 0;
}

.clients-right::after {
   content: "";
   position: absolute;
   top: -15px;
   right: -15px;
   width: 300px;
   height: 300px;
   background-color: #ffffff;
   z-index: -1;

}

.clients-right::before {
   content: "";
   position: absolute;
   bottom: -15px;
   left: 145px;
   width: 300px;
   height: 300px;
   background-color: #ffffff;
   z-index: -1;

}

.footer {
   background-color: #242158;
}

.footer a {
   font-size: 25px;
   color: #ffff !important;
   text-transform: uppercase;
   margin: 0;
   cursor: pointer;
}

.footer-content {
   display: flex;
   padding: 25px 0;
   align-items: center;
   justify-content: center;

}

.footer-left {
   margin-right: 5px;
}

.border-right {
   color: #fff;
   margin: 0 10px;
}

.clients-reviews-bottom {

   padding: 25px 0;
}

.clients-reviews-bottom .container {
   display: flex;
   justify-content: center;
}

/* clients-review section */
[data-aos] {
   transition-property: transform, opacity !important;
   will-change: transform, opacity;
}