html,
body {
    overflow-x: hidden;
}

body {}

/* header start  */


.navbar-toggler:focus {
    box-shadow: 0 0 0 0;
}

.nav-bg {
    background-color: #FFC10005;
}



.backdrop {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(5px);
}

.navbar ul li {
    margin-right: 20px;
}

.navbar ul li:last-child {
    margin-right: 0px;
}

.page {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: #333;
    position: relative;
}

.page::after {
    position: absolute;
    content: '';
    width: 0px;
    height: 2px;
    background-color: #5D2309;
    top: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: 0.3s;
}

.page:hover::after {
    width: 90%;
}

.page.active::after {
    position: absolute;
    content: '';
    width: 90%;
    height: 2px;
    background-color: #5D2309;
    top: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: 0.3s;
}

.primary-btn {
    text-decoration: none;
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    background-color: #5D2309;
    color: #fff;
    padding: 8px 16px;
    transition: 0.5s;
    border: 1.5px solid #5D2309;
}

.primary-btn:hover {
    background-color: transparent;
    color: #5D2309 !important;
    color: #5D2309;
}


/* header end  */

/* banner start  */
.banner {
    padding: 10px 0 50px 0;
    border-top: 2px solid #5D2309;
    background-image: linear-gradient(to bottom, #fff, #ffffffd0, #ffffffcd, #ffffffc9), url(../images/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner-main {
    padding: 80px 0 30px 0;
}

.banner-content h1 {
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 48px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.banner-content h1 span {
    color: #5D2309;
}

.banner-content h2 {
    margin-bottom: 0;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.banner-content h3 {
    font-weight: 700;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    color: #333;
}

.banner-content p {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #333;
}

.banner-content ul {
    margin-top: 20px;
}

.banner-content ul li {
    color: #333;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin: 5px 0;
}

.banner-content ul li i {
    color: #5D2309;
}

.form-wrapper {
    margin-top: 4px;
    background-color: #ffffffa8;
    padding: 40px 30px;
    box-shadow: 0 0 20px #00000044;
}

.form-wrapper h2 {
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #5D2309;
    text-transform: capitalize;
}


.form-wrapper p {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.form-wrapper .form-control {
    background-color: #00000050 !important;
    border: 1px solid transparent;
    height: 60px;
    border-radius: 0px;
    padding-bottom: 0;
    padding-left: 8px;
    color: #fff;
}

.form-wrapper .form-control:focus {
    border-color: #CE1616;
    box-shadow: 0 0 0 0;
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    box-shadow: 0 0 0 0;
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    box-shadow: 0 0 0 0;
}

.form-wrapper label {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #fff !important;
    position: absolute;
    bottom: 0;
}


.form-group {
    position: relative;
    margin-bottom: 8px;
}

.form-control-placeholder {
    position: absolute;
    top: 10px;
    padding: 7px 0 0px 10px;
    transition: all 200ms;
}

.form-control:focus+.form-control-placeholder,
.form-control:valid+.form-control-placeholder {
    font-size: 75%;
    transform: translate3d(0%, -25%, 0);
    opacity: 1;
    color: #333;
}

textarea {
    resize: none;
    padding-top: 20px !important;
    height: 100px !important;
}

textarea::placeholder {
    color: #fff !important;
    font-size: 14px;
}

.form-control:focus+.cc-textarea,
.form-control:valid+.cc-textarea {
    font-size: 75%;
    transform: translate3d(0%, -16%, 0);
    opacity: 1;
    color: #333;
}

.submit-btn {
    margin-top: 15px;
    background-color: #5D2309;
    border: 1px solid #5D2309 !important;
    border: 0;
    width: 100%;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: transparent !important;
    color: #5D2309;
}

/* banner end  */


/* counter start  */

.counter-section {
    padding: 50px 0;
    background-color: #f7f7f7;
    color: #5D2309;
}

.single-counter {
    margin: 15px 0;
    border: 2px solid #5D2309;
    padding: 30px 0;
}

.counter-section span {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #5D2309;
}

.counter-section h3 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #5D2309;
    text-transform: uppercase;
}

/* counter end  */
/*About Start*/

.about {
    padding: 100px 0;
}

.png-bg {
    width: 600px;
    top: 20px;
    left: 60px;
    z-index: -1;
}

.liq-first-img {
    margin-top: 60px;
}

.about-content h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #333;
}

.about h3 {
    margin-top: 20px;
    font-weight: 900;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    color: #5D2309;
}

.about-content h1 {
    font-weight: 700;
    font-size: 30px;
    color: #333;
}

.about-content h1 span {
    color: #5D2309;
}

.about-content p {
    font-weight: 600;
    font-family: "Lato", sans-serif;
    font-size: 16px;

}

.about-content ul li {
    margin: 5px 0;
    font-weight: 600;
    font-family: "Lato", sans-serif;
    font-size: 16px;
}

.about-content ul li span {
    margin-right: 5px;
}

/*About End*/


/*story start*/

.story {
    padding: 50px 0;
    background-color: #5D2309;
    font-family: "Poppins", sans-serif;
}


.story-inner .story-icon i {
    padding: 50px;
    font-size: 50px;
    color: #fff;
    border: 3px solid #fff;
}

.story-comments h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
}

.story-inner .story-comments p {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}

.story-comments .story-comments-author {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.story-comments .story-comments-author span {
    font-family: "Poppins", sans-serif;
    color: #fff !important;
}

/*story End*/

/*Testimonial Start*/

.testimonial {
    padding: 100px 0;
}

.carousel-control-prev,
.carousel-control-next {
    display: flex;
    align-items: self-end;
    bottom: 5%;
}

.carousel-control-prev {
    left: 76%;
}

.carousel-control-prev-icon {
    border: 1px solid #5d5d5d !important;
    border-radius: 50px;
    background-image: none;
    background-color: #5D2309;
}

.carousel-control-next-icon {
    border: 1px solid #5d5d5d !important;
    border-radius: 50px;
    background-image: none;
    background-color: #5D2309;
}

.carousel-control-prev-icon:hover {
    background-color: #5D2309;
}

.carousel-control-next-icon:hover {
    background-color: #5D2309;
}

.carousel-control-next-icon i {
    color: #fff;
    line-height: 32px;
}

.carousel-control-prev-icon i {
    color: #fff;
    line-height: 32px;
}

.divider-btn {
    display: none;
}

.testi-info {
    float: left;
}

.testimonial h1 {
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: #5D2309;
    font-size: 30px;
}

.testimonial h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
}

.testimonial h2 {
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: #5D2309;
    font-size: 20px;
}


.testimonial h3 {
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #333;
    font-size: 18px;
}


.testimonial h5 {
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #5D2309;
}

.testimonial p {
    margin-bottom: 40px !important;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333;
}

/*Testimonial End*/

/* why-choose-us start  */

.why-choose-us {
    padding: 50px 00;
    background-color: #fff;
}

.why-choose-us-wrapper {
    padding: 40px;
    background-color: #5d240915;
    border-radius: 35px;
}

.why-choose-us-wrapper h2 {
    font-family: "Lato", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    color: #333;
}

.why-choose-us-wrapper h1 {
    font-family: "Poppins", sans-serif;
    margin-top: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 22px;
    color: #333;
}

.why-choose-us-wrapper h1 span {
    color: #5D2309;
}

.why-choose-us-wrapper h3 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.why-choose-us-wrapper p {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

/* why-choose-us end */

/* product start  */

.product {
    padding: 100px 0;
}

.product-wrapper h1 {
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #333;
}

.product-wrapper h1 span {
    color: #5D2309;
}

.product-wrapper h2 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.product-wrapper p {
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.product-wrapper li {
    margin: 5px 0;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 16px;
}

/* product end  */

/* .limited-offer start  */

.limited-offer {
    padding: 100px 0;
    background-color: #5d240915;
}

.limited-offer h1 {
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #333;
}

.limited-offer h1 span {
    color: #5D2309;
}

.limited-offer h2 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.limited-offer p {
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.limited-offer ul li {
    margin: 5px 0;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 15px;
}

/* .limited-offer end  */


/*Faq start*/

.faq {
    background-image: linear-gradient(to right, #ffffffc9, #ffffffc9),
        url(../images/white-abs-1.png);
    padding: 100px 0;
}

.faq h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #333;
}

.faq h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #333;
}

.faq h1 span {
    color: #5D2309;
}

.faq p {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    color: #333;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
    color: #5D2309;
    background-color: #ddd;
}

.accordion-body {
    font-family: "Lato", sans-serif;
    background-color: #5d240915;
    padding: 20px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.accordion-button {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 16px;
    color: #333;
    background-color: #f0f0f0;
    padding-left: 20px;
}

.accordion-button:focus {
    border: 0;
    outline: 0;
    box-shadow: none;
}

/*Faq End*/

/* Contact start  */

.contact {
    padding: 100px 0;
    background-image: linear-gradient(to bottom, #fff, #ffffffd0, #ffffffcd, #ffffffc9), url(../images/contact-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.contact h1 {
    margin-top: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #5D2309;
}

.contact h3 {
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    color: #333;
}

.contact ul li {
    margin: 10px 0;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #333;
}

.social-links li a {
    background-color: #5D2309;
    color: #fff;
    text-decoration: none;
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    transition: 0.3s;
}

.social-links li a:hover {
    transform: scale(0.9);
}

/* Contact end  */

/* footer start  */
footer {
    background-color: #5D2309;
    padding: 40px 0 0 0;
}

footer p {
    margin-bottom: 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.imp-link {
    text-align: center;
}

.imp-link li a {
    text-decoration: none;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.copyright {
    background-color: #5D2309;
    padding: 20px 0 20px 0;
    text-align: center;
}

.copyright p {
    margin-bottom: 0;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}

/* footer end  */