/*--------------------------------------------------------------
    Theme Name: Herbal Shampoo Template
    Theme URL: https://www.ogwebsolutions.com/
    Author: OG Websolutions Pvt. Ltd.
    Version:  1.0
--------------------------------------------------------------*/


/**
@File: Herbal Shampoo Theme Styles
This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.

# General Style
    ## Google Font
    ## Preloader
    ## Back to top button
    ## Typography
# Header
# Footer
# Home Page
	## Banner Section
	## Awsome Section
    ## No-Limit Section
    ## Testimonial Section
    ## FAQ Section
    ## Best Deal Section
# Upsell/Downsell Page
# Order Page
# Order confirmation(Thank you)/Order Cancelled Page
# Privacy Policy &and Term & Conditions page

**/


/*--------------------------------------------------------------
    # General
--------------------------------------------------------------*/


/* ----------------------------------
    ## Google Font
----------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400;500;600;700&display=swap');

/* ----------------------------------
    ## Prelaoder
----------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #1577da;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* ----------------------------------
    ## Back to top button
----------------------------------*/

.backtotop {
    position: fixed;
    right: 15px;
    bottom: 15px;
    height: 40px;
    width: 40px;
    background-color: #f10f29;
    cursor: pointer;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
    border-radius: 10px;
    opacity: 0.9;
    transition: opacity 200ms linear;
    display: none;
}

.backtotop::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -7px;
    margin-top: -4px;
    transform: rotate(-45deg);
    height: 0px;
    width: 0px;
    border-width: 3px 3px 0 0;
    border-style: solid;
    padding: 5px;
    border-color: #fff;
}

.backtotop:hover {
    opacity: 1;
    transition: opacity 200ms linear;
}


/* ----------------------------------
    ## Typography
----------------------------------*/

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

body {
    background: #fff;
    color: #363636;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Domine', serif;
    font-weight: 700;
    margin: 0;
    padding: 0;
    color: #000;
}

p {
    padding: 0px;
    margin: 0px;
    margin-bottom: 15px;
    line-height: 1.5;
}

p:last-child {
    margin-bottom: 0px;
}

dl,
ol,
ul {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    outline: none;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    color: #3c3c3c;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    /*color: #3c3c3c;*/
}

label {
    font-weight: normal;
}

label.error {
    color: #f00;
    padding-left: 12px;
    font-size: 14px;
    padding-top: 5px;
}

.form-control {
    height: auto;
    padding: 15px 15px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #aaaaaa;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #d5d5d5;
    margin-bottom: 20px;
}

.form-control.error {
    border-color: #f00;
}

.form-select {
    background-image: url(../icons/carrot-icon.png);
    background-size: 10px 8px;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

 ::-webkit-input-placeholder {
    opacity: 1;
    color: #aaaaaa;
}

 :-moz-placeholder {
    opacity: 1;
    color: #aaaaaa;
}

 ::-moz-placeholder {
    opacity: 1;
    color: #aaaaaa;
}

 :-ms-input-placeholder {
    opacity: 1;
    color: #aaaaaa;
}


/*------ Font Weight ------*/

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 500;
}

.fw-700 {
    font-weight: 700;
}

.fw-900 {
    font-weight: 900;
}


/*------ Custom Text Color ------*/

.text-orange {
    color: #f10f29;
}

.text-black {
    color: #363636;
}


/*------ Custom Background Color ------*/

.bg-color-white {
    background-color: #fff;
}

.bg-color-gray {
    background-color: #f7f6f6;
}
.bg-color-skyblue{
    background-color: rgb(229, 243, 248);
}

/*------ Box Shadow ------*/

.box-shadow {
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}


/*------ Button Style ------*/

.btn {
    color: #fff;
    font-weight: 600;
    background-color: #f10f29;
    font-size: 15px;
    line-height: 0.5;
    padding: 20px 40px;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
}

.btn:hover {
    /*opacity: 0.8;*/
    background-color: #FF6251;
    color: #fff;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: none;
}
.leftBlock .btn {
    padding: 15px 30px;
}

@media only screen and (max-width: 991.98px) {
    .btn {
        font-size: 17px;
    }
    .bannerSection .leftBlock {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767.98px) {
    .btn {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575.98px) {
    .btn {
        font-size: 15px;
    }
}


/*------ image width ------*/

@media only screen and (max-width: 991.98px) {
    .w-100 {
        width: 63% !important;
    }
}


/*------ Custom Container ------*/

@media only screen and (min-width: 1400px) {
    .container {
        max-width: 1170px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 991.98px) {
    .container {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (max-width: 575.98px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/*------ Section Spacer ------*/

.sectionPadding {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media only screen and (max-width: 1199.98px) {
    .sectionPadding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 991.98px) {
    .sectionPadding {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 767.98px) {
    .sectionPadding {
        padding-top: 45px;
        padding-bottom: 45px;
    }
}


/*------ Section Title ------*/

.section-title {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.section-title h2 {
    font-size: 43px;
    line-height: 1.3;
    text-transform:none;
}

.section-title p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

@media only screen and (max-width: 1199.98px) {
    .section-title h2 {
        font-size: 37px;
    }
    .section-title p {
        font-size: 15px;
    }
}

@media only screen and (max-width: 991.98px) {
    .section-title p {
        margin-bottom: 25px !important;
    }
    .section-title p br{
        display: none;
    }
}

@media only screen and (max-width: 767.98px) {
    .section-title h2 {
        font-size: 30px;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

header {
    padding: 0px 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: transparent;
}

header.fixed {
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

header .headerLogo {
    width: 170px;
}

header .mail a {
    color: #000;
    position: relative;
}

header .header-mail {
    width: 18px;
}

header .mail a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 767px) {
    header .headerLogo {
        width: 165px;
    }
    header .mail {
        margin-top: 5px !important;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

footer {
    padding: 40px 0 40px;
    background-color: rgb(27, 55, 70);
}

.footer .footer-logo {
    width: 170px;
}

footer .footer-bottom .list-inline-item {
    line-height: 1;
}

footer .footer-bottom .list-inline-item a {
    font-size: 15px;
    line-height: 1;
    color: #fff;
    display: inline-block;
}

footer .footer-bottom .list-inline-item a:hover {
    text-decoration: underline;
}

footer .footer-bottom .list-inline-item:not(:last-child) {
    border-right: 1px solid #fff;
    padding-right: 10px;
    margin-right: 10px;
}

footer .footer-bottom {
    font-size: 15px;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    footer {
        padding: 30px 0 30px;
    }
    footer .footer-top .list-inline-item a {
        font-size: 14px;
    }
    footer .footer-bottom p {
        font-size: 14px;
    }
}


/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/


/* ----------------------------------
    ## Banner Section
----------------------------------*/

.bannerSection {
    background: url(../images/banner-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 115px;
    background-attachment: fixed;
}


/*---- Left Section ----*/

.bannerSection h1 {
    font-size: 60px;
    line-height: 1.1;
    text-transform: capitalize;
    font-family: 'Domine', serif;
}

.bannerSection h1 span {
    font-size: 20px;
    display: block;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    color: #3c3c3c;
    margin-bottom: 25px;
    line-height: 1.4;
    font-weight: 700;
}

.bannerSection .right-col p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.bannerSection h3 {
    font-size: 19px;
}

.bannerSection h3 {
    font-family: 'Montserrat', sans-serif;
}

.bannerSection h3 span {
    font-size: 44px;
    display: block;
    text-transform: none;
    font-family: 'Domine', serif;
    color: #f10f29;
    margin-bottom: 15px;
    line-height: 1.4;
}

@media only screen and (max-width: 1199.98px) {
    .bannerSection h1 {
        font-size: 50px;
    }
    .bannerSection .right-col {
        padding: 0px !important;
    }
    .bannerSection h3 span {
        font-size: 40px;
    }
}

@media only screen and (max-width: 991.98px) {
    .bannerSection {
        padding-top: 130px;
        padding-bottom: 60px;
    }
    .bannerSection .banner-img {
        text-align: center;
    }
    .bannerSection h1 {
        font-size: 45px;
    }
    .bannerSection .right-col {
        text-align: center;
        margin-top: 0px !important;
    }
    .bannerSection h3 span {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767.98px) {
    .bannerSection h1 {
        font-size: 35px;
    }
    .bannerSection h3 span {
        font-size: 25px;
    }
}

@media only screen and (max-width: 575.98px) {
    .bannerSection h1 {
        font-size: 34px;
    }
    .bannerSection h3 span {
        font-size: 20px;
    }
}


/* ----------------------------------
    ## Awsome Section
----------------------------------*/

.feature-detail .item {
    border: 1px solid #f0f0f0;
    background-color: #fff;
    height: 100%;
    padding: 28px 24px;
    border-radius: 15px;
    box-shadow: 0 1px 5px rgb(0 0 0 / 10%);
}

.feature-detail .item .icon {
    width: 80px;
}

.feature-detail h4 {
    font-size: 24px;
    color: #363636;
    text-transform: none;
    margin: 20px 0 15px;
}

.feature-detail p {
    color: #717171;
    font-size: 18px;
    font-weight: 500;
}
@media only screen and (max-width:1199px){
    .feature-detail p {
        font-size: 16px;
    }
}
@media only screen and (max-width: 991.98px) {
    .feature-detail .item {
        padding: 28px 22px;
    }
    .feature-detail h4 {
        font-size: 20px;
    }
    .feature-detail p {
        font-size: 15px;
    }
}

@media only screen and (max-width: 575.98px) {
    .feature {
        margin-top: 25px;
    }
}


/* ----------------------------------
    ## No Limit Section
----------------------------------*/

@media only screen and (max-width: 991.98px) {
    .no-limitSection h2,
    .no-limitSection .details,
    .no-limitSection .btn-sec {
        text-align: center;
    }
}

@media only screen and (max-width: 767.98px) {
    .no-limitSection h2 {
        font-size: 30px;
        margin-top: 15px !important;
    }
}

@media only screen and (max-width: 576.98px) {
    .no-limitSection .rightBlock .img-fluid {
        max-width: 60%;
    }
}


/* ----------------------------------
    ## Testimonial Section
----------------------------------*/

.testimonialSection .card-parent {
    background-color: #ffffff;
    padding-bottom: 25px;
    padding-top: 40px;
    padding-right: 30px;
    padding-left: 42px;
    box-shadow: 0 1px 5px rgb(0 0 0 / 10%);
    border-radius: 15px;
}

.card-top {
    display: flex;
    justify-content: space-between;
}

.testimonialSection .card .fivestar {
    max-width: 107px;
}

.testimonialSection .card-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.5;
    font-family: 'Domine', serif;
}

.left-content h4 {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 3px;
}

.left-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 1px;
}
.card-parent .card-top .right-image img {
    border-radius: 50%;
}
@media only screen and (max-width: 1199.98px) {
    .testimonialSection .card-parent {
        padding-right: 5px;
        padding-left: 10px;
    }
}
@media only screen and (max-width:991.98px){
    .left-content p {
        font-size: 11px;
    }
}
@media only screen and (max-width: 767.98px) {
    
    .testimonialSection .card-parent {
        padding-right: 25px;
        padding-left: 38px;
    }
    .test-container {
        margin-top: 15px !important;
    }
}

/* ----------------------------------
    ## FAQ Section
----------------------------------*/

.faq-section {
    padding-top: 30px;
}

.faq-section .item-single h5 {
    font-size: 20px;
}

.faq-section .item-single {
    margin-bottom: 60px;
}

.faq-section .item-single p {
    font-size: 16px;
}

.faq-section .item-single:nth-child(3),
.faq-section .item-single:nth-child(4) {
    margin-bottom: 0px;
}

.mid-border {
    border-color: #f8b5b5;
    max-width: 145px;
    border-top-width: 2px;
    border-top-style: solid;
}

@media only screen and (max-width: 1199.99px) {
    .faq-section .item-single h5 {
        font-size: 18px;
    }
    .faq-section .item-single p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding-top: 0px;
    }
    .faq-section .item-single {
        text-align: center;
    }
    .mid-border {
        margin-left: auto;
        margin-right: auto;
    }
    .faq-section .item-single {
        margin-bottom: 40px;
    }
    .faq-section .item-single:last-child {
        margin-top: 40px;
    }
}


/* ----------------------------------
    ## Best Deal Section
----------------------------------*/

.bestdealSection {
    padding-top: 80px;
    padding-bottom: 80px;
}

.bestdealSection h2 {
    font-size: 43px;
}

@media only screen and (max-width: 1199.98px) {
    .bestdealSection h2 {
        font-size: 37px;
    }
    .bestdealSection {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 991.98px) {
    .bestdealSection {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .bestdealSection h2 {
        font-size: 34px;
    }
}

@media only screen and (max-width: 767.98px) {
    .bestdealSection h2 {
        font-size: 30px;
    }
}
@media only screen and (max-width: 575.98px) {
    .bestdealSection h2 br {
        display: none;
    }
}

/*--------------------------------------------------------------
# Upsell/Downsell Page
--------------------------------------------------------------*/

.upsell .bannerSection,
.downsell .bannerSection {
    padding-top: 135px;
    padding-bottom: 100px;
}

.upsell h1,
.downsell h1 {
    font-size:40px;
}

.upsell .bannerSection p,
.downsell .bannerSection p {
    font-size: 22px;
}

.upsell .text-box {
    padding: 35px 0px 70px;
    outline: none;
    width: 90%;
    max-width: 100%;
    border: 5px solid #7fbacf;
}

.upsell .text-box h2,
.downsell .text-box h2 {
    font-size: 28px;
}

.upsell .text-box p,
.downsell .text-box p {
    font-size: 16px;
}

.upsell ul,
.downsell ul {
    list-style: none;
    padding-left: 0;
}

.upsell .check-icon p,
.downsell .check-icon p {
    font-size: 15px;
}

.check-icon .fa {
    color: #ff6251;
    font-size: 16px;
    padding-left: 5px;
}

.bottom-text {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #363636 !important;
}

.bottom-text a:hover {
    text-decoration: underline;
    color: #363636 !important;
}

.downsell .text-box {
    padding: 60px 0px 60px;
    width: 90%;
    max-width: 100%;
    border: 5px solid #7fbacf;
    outline: none;
}

@media only screen and (max-width: 1199.98px) {
    .upsell .text-box h2,
    .downsell .text-box h2 {
        font-size: 23px;
    }
    .upsell .text-box .right-col,
    .downsell .text-box .right-col {
        margin-top: 50px;
    }
    .downsell .text-box {
        width: 80%;
    }
}

@media only screen and (max-width: 991.98px) {
    ul.check-icon {
        text-align: left;
        margin: 0 auto;
        max-width: 300px;
    }
    .upsell .w-100 {
        width: 60% !important;
    }
    .upsell .text-box .right-col,
    .downsell .text-box .right-col {
        margin-top: 20px !important;
    }
    .upsell .text-box,
    .downsell .text-box {
        padding: 35px 0px 35px;
    }
    .upsell .bannerSection p,
    .downsell .bannerSection p {
        font-size: 17px;
    }
}

@media only screen and (max-width: 767.98px) {
    .upsell .bannerSection,
    .downsell .bannerSection {
        padding-top: 160px;
    }
    .downsell .left-col .img-fluid {
        width: 55%;
    }
}

@media only screen and (max-width: 575.98px) {
    ul.check-icon {
        max-width: 280px;
    }
    .upsell .text-box,
    .downsell .text-box {
        width: 94%;
    }
    .upsell .bannerSection,
    .downsell .bannerSection {
        padding-bottom: 70px;
    }
    .upsell h1,
    .downsell h1 {
        font-size: 28px;
    }
    .upsell .bannerSection p,
    .downsell .bannerSection p {
        font-size: 16px;
    }
    .upsell .text-box h2,
    .downsell .text-box h2 {
        font-size: 18px;
    }
    .upsell .btn-sec,
    .downsell .btn-sec {
        margin-top: 25px !important;
    }
    .text-box .right-col p {
        margin-bottom: 15px;
    }
    .check-icon .fa {
        padding-left: 0px;
    }
    .upsell .w-100 {
        width: 70% !important;
    }
}


/*--------------------------------------------------------------
# Order Page
--------------------------------------------------------------*/


/* ----------------------------------
    ## Secure Section
----------------------------------*/

.order_Section {
    padding-top: 0px;
    background-color: #f7f6f6;
}

.secure-section .securewrapper {
    background-color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 1010px;
    width: 100%;
    margin: 0 auto;
    margin-top: -90px;
}

.secure-section h3 {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

.secure-section ul {
    display: flex;
    list-style: none;
    padding-left: 0px !important;
}

.secure-section ul li {
    width: 33.33%;
}
.secure-section .securewrapper figure {
    min-height: 55px;
}
@media only screen and (max-width: 575.98px) {
    .secure-section h3 {
      font-size: 13px;
    }
}


/* ----------------------------------
## Order Section
----------------------------------*/

.order-page .bannerSection {
    padding-bottom: 180px;
}


/*.order-page .banner-row {
    padding-left: 150px;
    padding-right: 150px;
}*/

/*.order-page .bannerSection h1 {
    font-size: 36px;
    line-height: 1.3;
}*/

.order-page .bannerSection p {
    font-size: 16px;
}

.formcontentSec {
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    max-width: 1010px;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    -webkit-box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
}

.formcontentSec .form-status {
    margin-top: 40px;
    display: none;
}

.your_productlist {
    background: #DBF3FA;
    padding: 15px;
    float: left;
    width: 100%;
    border: 1px solid #d9d9d9;
    margin-bottom: 30px;
}

.order_Section .left-col .your_productlist ul {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.order_Section .left-col .your_productlist li {
    background: none;
    float: left;
    width: 100%;
    font-size: 14px;
    color: #757575;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.order_Section .left-col .your_productlist li:not(:last-child) {
    border-bottom: 1px solid #b0d2de;
    padding: 0 0 20px;
    margin: 0 0 20px;
}

.order_Section .left-col .your_productlist li:first-child,
.order_Section .left-col .your_productlist li:last-child {
    color: #000;
    font-size: 15px;
}

.order_Section .left-col .your_productlist li:last-child {
    font-size: 18px;
    padding-left: 0;
}

.order_Section .left-col .your_productlist li .pull-left {
    float: left;
}

.order_Section .left-col .your_productlist li .pull-right {
    float: right;
}

.order_Section h2.headingsec {
    color: #3c3c3c;
    font-size: 20px;
    line-height: 30px;
    border-bottom: 2px dotted #c7c7c7;
    padding: 0 0 20px;
    margin: 0 0 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: capitalize;
}

.order_Section .btn-outer {
    text-align: center;
}

.declaration p {
    font-size: 14px;
    color: #9b9b9b;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0 15px;
}

.order_Section .cards {
    text-align: center;
}

.order_Section .cards img {
    display: inline-block;
}

.order_Section .pay-btn.btn {
    font-size: 22px;
    padding: 28px 146px;
    border-radius: 0px;
}

.guaranteeSection h4 {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}

.guaranteeSection .money-logo {
    width: 20%;
    margin: auto;
}

@media only screen and (max-width: 1199.98px) {
    /*.order-page .bannerSection {
        padding-bottom: 110px;
    }*/
    .secure-section .securewrapper {
        margin-top: -85px;
    }
    .order_Section .pay-btn.btn {
        padding: 25px 125px;
    }
}

@media only screen and (max-width: 991.98px) {
    .order_Section .container {
        max-width: 720px;
    }
    .order_Section .pay-btn.btn {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .formcontentSec {
        padding: 15px;
    }
    .order_Section h2.headingsec {
        font-size: 18px;
    }
    .order_Section .left-col .your_productlist li {
        font-size: 12px;
    }
    .order_Section .left-col .your_productlist li:first-child,
    .order_Section .left-col .your_productlist li:last-child {
        font-size: 14px;
    }
    .declaration p {
        font-size: 13px;
    }
    .order_Section .pay-btn.btn {
        font-size: 18px;
    }
}

@media only screen and (max-width: 575px) {
    /*.order-page .bannerSection {
        padding-bottom: 20px;
    }*/
    .order_Section .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .order-page .bannerSection h1 {
        font-size: 28px;
    }
    .order_Section .pay-btn.btn {
        font-size: 16px;
        padding: 18px 50px;
    }
    .guaranteeSection br {
      display: none;
    }
    /*.secure-section .securewrapper {
        margin-top: 60px;
    }*/
}


/*--------------------------------------------------------------
# Order confirmation(Thank you)/Order Cancelled Page
--------------------------------------------------------------*/

.order-cancelled .bannerSection,
.thank-you .bannerSection {
    padding-top: 115px;
    padding-bottom: 85px;
}

.order-cancelled .bannerSection p,
.thank-you .bannerSection p {
    font-size: 20px;
}
@media only screen and (max-width:1199px){
    .order-cancelled .bannerSection p,
    .thank-you .bannerSection p {
        font-size: 18px;
    }
}
@media only screen and (max-width: 767.98px) {
    .order-cancelled .bannerSection,
    .thank-you .bannerSection {
        padding-top: 128px;
        padding-bottom: 75px;
    }
    .order-cancelled .bannerSection p,
    .thank-you .bannerSection p {
        font-size: 16px;
    }
}


/* ----------------------------------
    ## Thank You Content Section
----------------------------------*/

.thank-you .bannerSection h1,
.order-cancelled .bannerSection h1 {
    font-size: 60px;
}

.thankyouContentSec p {
    font-size: 18px;
    line-height: 1.5;
}

.thankyouContentSec .supportItem {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.thankyouContentSec .supportItem .imageBlock {
    flex-shrink: 0;
    margin-right: 20px;
}

.thankyouContentSec .supportItem .imageBlock img {
    width: 90px;
}

@media only screen and (max-width: 1199.98px) {
    .thank-you .bannerSection h1,
    .order-cancelled .bannerSection h1 {
        font-size: 50px;
    }
}

@media only screen and (max-width: 991.98px) {
    .thank-you .bannerSection h1,
    .order-cancelled .bannerSection h1 {
        font-size: 42px;
    }
    .thankyouContentSec p {
        font-size: 16px;
    }
    .thankyouContentSec .supportItem .imageBlock img {
        width: 70px;
    }
    .facebook-logo {
        text-align: center;
    }
    .facebook-logo img {
        width: 260px;
    }
}
@media only screen and (max-width: 575.98px) {
    .thank-you .bannerSection h1,
    .order-cancelled .bannerSection h1 {
        font-size: 34px;
    }
    .thankyouContentSec p {
        font-size: 16px;
    }
    .thankyouContentSec .supportItem {
        flex-direction: column;
        text-align: center;
        max-width: 320px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .thankyouContentSec .supportItem .imageBlock img {
        margin-bottom: 12px;
    }
}


/*--------------------------------------------------------------
#  Privacy Policy and Term & Conditions page
--------------------------------------------------------------*/

.termcond_privacypilocy h1 {
    font-size: 60px;
}

.privacypolicyterms h2 {
    font-size: 40px;
}

.privacypolicyterms h3 {
    font-size: 24px;
}

.privacypolicyterms h4 {
    font-size: 22px;
}

.privacypolicyterms p {
    font-size: 18px;
}

.privacypolicyterms p a {
    color: #1577da;
}

.privacypolicyterms li {
    font-size: 18px;
}

.privacypolicyterms .highlight {
    font-weight: 500;
}

.privacypolicyterms p,
.privacypolicyterms li,
.privacypolicyterms h2,
.privacypolicyterms h3,
.privacypolicyterms h4 {
    font-weight: 500;
}

.termcond_privacypilocy {
    padding-top: 115px;
    padding-bottom: 85px;
}

.termcond_privacypilocy .section-title {
    padding-bottom: 0;
}

@media only screen and (max-width: 991.99px) {
    .termcond_privacypilocy h1 {
        font-size: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .termcond_privacypilocy {
        padding-top: 128px;
        padding-bottom: 75px;
    }
    .privacypolicyterms h2 {
        font-size: 28px;
    }
    .privacypolicyterms h3 {
        font-size: 22px;
    }
    .privacypolicyterms h4 {
        font-size: 20px;
    }
    .privacypolicyterms p,
    .privacypolicyterms li {
        font-size: 16px;
    }
}

@media only screen and (max-width: 576.98px) {
    .termcond_privacypilocy {
        padding-top: 128px;
        padding-bottom: 50px;
    }
    .termcond_privacypilocy h1 {
        font-size: 38px;
    }
}

/* stripe card */
.payment-outer{
    display: flex;
    flex-wrap: wrap;
    padding: 22px 15px 5px;
    background-color: #e9e9e9;
    position: relative;
    margin-top:10px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.payment-outer:before{
    content: "";
    position: absolute;
    left: 35px;
	top: -8px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #e9e9e9;
}
.payment-outer .form-group{
    width: 33.33%;
    padding: 0 7px;
}
.payment-outer .form-group.card-number-group{
    width: 100%;
}
.payment-outer .form-group #card_number{
    background-image: url('../icons/cards.png');
    background-repeat: no-repeat;
    background-size: 120px;
    background-position: right 10px center;
    padding-right: 140px;
}
.paypal-card-group{
    display: flex;
    flex-direction: column;
    margin-bottom:15px;
}
.paypal-card-group label:first-child{
    margin-bottom: 10px;
}
.form-group.btn-outer{
    position: relative;
}
.form-group.btn-outer #loader{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background-color: rgba(0,0,0,0.4);
	border-radius: 5px;
}
form #loader img{
    width: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
}
@media only screen and (max-width: 390px) {
    .payment-outer{
   	 padding: 15px 10px 0px;
    }
    .payment-outer .form-group #card_number{
   	 padding-right: 100px;
   	 background-size: 80px;
    }
    form select{
   	 background-size: 12px;
    }
}
/* stripe card end */
