@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
}


/*
@media (max-width: 1200px) {
  legend {
    font-size: calc(1.275rem + 0.3vw);
  }
  h1,
  .h1 {
    font-size: calc(1.375rem + 1.5vw);
  }
  h2,
  .h2 {
    font-size: calc(1.325rem + 0.9vw);
  }
  h3,
  .h3 {
    font-size: calc(1.3rem + 0.6vw);
  }
  h4,
  .h4 {
    font-size: calc(1.275rem + 0.3vw);
  }
  .display-1 {
    font-size: calc(1.725rem + 5.7vw);
  }
  .display-2 {
    font-size: calc(1.675rem + 5.1vw);
  }
  .display-3 {
    font-size: calc(1.575rem + 3.9vw);
  }
  .display-4 {
    font-size: calc(1.475rem + 2.7vw);
  }
  .close {
    font-size: calc(1.275rem + 0.3vw);
  }
}
*/


a:hover{text-decoration: none}
img{
    max-width: 100%;
}
.top-bar{
    background: #083d77;
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
}
.top-bar h4 {
    -webkit-animation: scaleit 1s ease infinite;
    animation: scaleit 1s ease infinite;
}
.top-bar i.fa {
    font-size: 1.2rem;
    vertical-align: middle;
    margin-left: 10px
}
.slider-1 .thumbnail_2{
    position: absolute;
    top: 100px;
    margin-left: auto;
    margin-right: auto;
}
.slider-1 {
    position: relative;
    background: url('../images/pattern-1.jpg') no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -webkit-background-repeat: no-repeat;
    -moz-background-repeat: no-repeat;
    background-repeat: no-repeat;
}
.slider-1 .product {
    margin-top: 50px;
    margin-bottom: 100px;
    max-width: 200px
    -webkit-animation: scaleit 1s ease-in-out infinite;
    animation: scaleit 1s ease-in-out infinite;
}
.slider-1 .logo{
    margin-top: 100px;
}

@-webkit-keyframes scaleit {
    50%{
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}
@keyframes scaleit {
    50%{
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}
.form-sec, .why-sec, .why-saz, .benifit, .faq, .ingredients {
    padding: 50px 20px;
}
.form-sec {
    background: #083d77;
/*    background: rgba(0, 0, 0, 0.1);*/
}
.why-sec {
    background: #f5f3f3;
}
.why-saz {
    background: #fafafa;
}
.benifit {
    background: #083d77;
    color: aliceblue;
}
.ingredients {
    background: #083d77;
    color: aliceblue;
}
.form-bg {
    background: #fff;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 30px;
}
.form-title {
    display: block;
    padding-bottom: 30px;
    text-align: center;
    font-size: calc(22px + (32 - 24) * ((100vw - 300px) / (1200 - 300)));;
    font-weight: 400;
}
.form-input, textarea {
    background: #f5f5f5;
    width: 100%;
    border-radius: 25px;
    border: none;
    outline: none;
    padding: 0 30px;
}
.form-input {
    height: 50px;
}
textarea {
    min-height: 120px;
    padding: 10px 30px;
}
textarea.form-input {
    padding: 10px 30px;
}
.input-effect {
    position: relative;
    widows: 100%;
    z-index: 1;
}
input:focus,textarea:focus{
    background: #b2b2b2;
    transition: 0.5s ease-in-out;
}
input:focus::-webkit-input-placeholder{color: aliceblue}
input:focus::-moz-placeholder{color: aliceblue}
input:focus:-moz-placeholder{color: aliceblue}
input:focus:-ms-input-placeholder{color: aliceblue}

textarea:focus::-webkit-input-placeholder{color: aliceblue}
textarea:focus::-moz-placeholder{color: aliceblue}
textarea:focus:-moz-placeholder{color: aliceblue}
textarea:focus:-ms-input-placeholder{color: aliceblue}
/*
*::-webkit-input-placeholder{color: aliceblue}
*::-moz-placeholder{color:aliceblue}
*:-moz-placeholder{color: aliceblue}
*:ms-input-placeholder{color: aliceblue}
*/
.input-shadow {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: auto;
    box-shadow: 0px 0px 0px 0px;
    color: rgba(87,184,70, 0.5);
}
.input:focus + .input-shadow {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 80px 30px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 80px 30px;
    opacity: 0;
  }
}
.form-btn{
    outline: none;
    border: none;
    min-width: 100%;
    height: 50px;
    border-radius: 25px;
    background: #57b846;
    font-family: Montserrat-Bold;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}
.form-btn i {
    margin-left: 8px;
    -webkite-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.form-btn:hover i{
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    transform: translateX(10px);
}
.form-btn:hover{
    background: #083d77;
}
*:hover{
    -webkite-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.fix-whatsapp, .fix-btn-lan {
    position: fixed;
    z-index: 999;
}
.fix-whatsapp {
    bottom: 20px;
    left: 20px;
}
.fix-btn-lan {
    top: 20%;
    right: 0;
}
.fix-btn-lan span {
    background: #57b846;
    font-size: 1.2rem;
    padding: 5px 30px 5px 20px;
    border-radius: 10px 0 0 10px;
}
.fix-btn-lan span a {
    color: #fff;
}
.whatsapp-img{
    max-width: 70px;
}
.sec-title-hindi {
    font-size: 3em
}

.ml5 {
  position: relative;
  font-weight: 400;
/*  font-size: 4.5em;*/
    font-size:  calc(40px + (72 - 40) * ((100vw - 300px) / (1200 - 300)));
/*    font-size:  calc(2.5em + (5em - 2.5em) * ((100vw - 300px) / (1200 - 300)));*/
  color: #402d2d;
}

.ml5 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.1em;
  padding-right: 0.05em;
  padding-bottom: 0.15em;
  line-height: 1em;
}

.ml5 .line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 3px;
  width: 100%;
  background-color: #402d2d;
  transform-origin: 0.5 0;
}

.ml5 .ampersand {
  font-family: Baskerville, "EB Garamond", serif;
  font-style: italic;
  font-weight: 400;
  width: 1em;
  margin-right: -0.1em;
  margin-left: -0.1em;
}

.ml5 .letters {
  display: inline-block;
  opacity: 0;
}


.ml6 {
  position: relative;
  font-weight: 600;
/*  font-size: 4.5em;*/
font-size:  calc(24px + (72 - 24) * ((100vw - 300px) / (1200 - 300)));
/*    font-size:  calc(40px + (72 - 40) * ((100vw - 300px) / (1200 - 300)));*/
}

.ml6 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.2em;
  padding-right: 0.05em;
  padding-bottom: 0.1em;
  overflow: hidden;
}

.ml6 .letter {
  display: inline-block;
  line-height: 1em;
}
h2.sub-heading {
/*    font-size: calc(22px + (42 - 22) * ((100vw - 300) / (1200 - 300));*/
    font-size:  calc(22px + (48 - 22) * ((100vw - 300px) / (1200 - 300)));
}
.accordion {
  background-color: #f5f3f3;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}
.panel {
  padding: 3px 20px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
    font-size: 1.2em;
    color: #424141;
  transition: max-height 0.3s ease-in-out;
}
.active, .accordion:hover {
    background-color: #083d77;
    color: aliceblue;
}
.accordion:after {
  content: '\002B';
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
    color: aliceblue;
}
button.accordion:hover .active:after{color: aliceblue}
button.accordion{
    font-size:  calc(16px + (24 - 16) * ((100vw - 300px) / (1200 - 300)));

}
.ingredients-col, .ingredients-col-2 {
    position: relative;
    width: 50%;
    top: 50px;
    height: 100px;
    background: #fff;
    color: #000;
    font-size: calc(16px + (28 - 16) * ((100vw - 300px) / (1200 - 300)));
    font-weight: 500;
    padding: 10px 20px;
/*    border: 5px solid #083d77;*/
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.5);
}
.ingredients-col-2 {
    right: 0;
}
.ingredients-circle-left, .ingredients-circle-right{
    position: absolute;
    top: 0px;
    width: 100px;
    height: 100px;
    color: aliceblue;
    background: #083d77;
    border: 5px solid #083d77;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    box-shadow: 1px 1px 10px;
}
.ingredients-circle-right {
    right: -80px;
}
.ingredients-circle-left {
    left: -80px;
}

.clip-ellipse {
  clip-path: ellipse(100px 60px at 175px 90px);
  /* OLD VALUE example: ellipse(245px, 80px, 75px, 30px); */
}

footer {
    background: #f5f3f3;
}
@media screen and (max-width:768px){
/*
    .ml5, .ml6 {
        font-size: 3.5em;
    }
*/
    .sec-title-hindi {
        font-size: 2.2em
    }
}
@media screen and (max-width:576px){
/*
    .ml5, .ml6 {
        font-size: 3em;
    }
*/
}
@media screen and (max-width:400px){
/*
    .ml5, .ml6 {
        font-size: 2.5em;
    }
*/
}

/*
.contact-popup {}
#popup {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}*/
