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


/**
@File: Hotel Reservation 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
    ## Comfy Section
    ## Amenities Section
	## Enriching Section
    ## Offer Section
    ## Reviews Section
    ## Lodging Section
    ## Exhibition Section
    ## Benefits 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=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&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: #c19a77;
    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: #dee3e1;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: 'Nanum Myeongjo', serif;
    /*  font-family: 'Roboto', sans-serif; */
}

h4 {
    font-size: 23px;
}

@media only screen and (max-width: 991.98px) {
    h4 {
        font-size: 21px;
    }
}

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

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

dl,
ol,
ul {
    margin-bottom: 0;
    list-style: none;
    padding-left: 0px;
}

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;
}

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;
}

img {
    border-radius: 5px;
}

@media only screen and (max-width: 991.98px) {}




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

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

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

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

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

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


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

.text-orange {
    color: #c19a77;
}

.text-black {
    color: #171717 !important;
}

.text-lt-blk {
    color: #52505e;
}


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

.bg-color-gray {
    background-color: #f7f7f7;
}

.bg-color-ltgray {
    background-color: #8a8a8a;
}

.bg-color-gray {
    background-color: rgb(241, 241, 241);
}


/*------ 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:500;
    background-color: transparent;
    font-size: 20px;
    line-height: 0.5;
    padding: 22px 31px;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
     font-family: 'Roboto', sans-serif;
     border-radius: 0;
}

.btn:hover {
    opacity: 0.8;
    color: #fff;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

@media only screen and (max-width: 991.98px) {
    .button {
        text-align: center;
    }
}

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


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

@media only screen and (max-width: 1199px) {}


/*------ 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;
    }
}


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

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

.section-title h2 {
    font-size: 52px;
    line-height: 1.2;
    text-transform: normal;
}

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

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

@media only screen and (max-width: 991.98px) {
    .section-title {
        text-align: center;
    }
    /*.section-title p {
        margin-bottom: 25px !important;
    }*/
}

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

@media only screen and (max-width: 575.98px) {
    .section-title h2 {
        font-size: 26px;
    }
    .section-title p {
        font-size: 16px;
        margin-bottom: 0px;
    }
}


/*--------------------------------------------------------------
# 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: #000;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    opacity:0.8;
}

header .btn {
    padding: 16px 20px;
}

header p {
    font-size: 20px;
}
header .mail a {
    color: #fff;
    position: relative;
}

header .email {
    padding-right: 5px;
}

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

header .btn:hover {
    background-color: #fff;
    color: #171717;
    border: 2px solid #fff;
}
.headerLeft a{
    text-align:center;
}
@media only screen and (max-width: 767px) {
    header .headerLogo {
        width: 165px;
    }
    header .mail {
        margin-top: 5px !important;
    }
    header .rightBlock p {
        margin-top: 0px !important;
    }
    header .headerLeft {
        text-align: center;
    }
    header .headerRight {
        text-align: center;
    }
}


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

footer {
    padding: 0px 0 30px;
    background-color: #fff;
}

footer .footer {
    background-color: #fff;
    padding: 60px 0 20px;
}

footer .copyright {
    font-size: 15px;
}

footer p {
    font-size: 16px;
}

footer .btm-row {
    border-top: 1px solid #ededed;
    padding-top: 30px;
}

footer .footer-menu ul li a {
    font-size: 16px;
}
.footer-links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.footer-links li:first-child {
    padding-right: 10px;
    border-right: 1px solid #000;
}

footer .footer-menu ul li a:hover {
    color: #c19a77;
}

@media only screen and (max-width: 767px) {
    footer .footer-menu .list-inline-item a {
        font-size: 14px;
    }
}

@media only screen and (max-width: 576.98px) {
    .footer-menu {
        text-align: center;
    }
}


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


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

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

.bannerSection .btn {
    background-color: #c19a77;
    color: #ffffff;
    border: 2px solid #c19a77;
}

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


.bannerSection .trans-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #ffffff;
}
.bannerSection .trans-btn:hover {
    background-color: #c19a77;
    color: #fff;
    opacity: 1;
    border: 2px solid #c19a77;
}
.bannerSection h1 {
    font-size:55px;
    line-height: 1.2;
}
.banner-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:33px;
    flex-wrap: wrap;
}
.bannerSection p {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}
.inner-block .sub-text {
    font-size: 24px;
}

h1 span {
    font-size: 24px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 1199.98px) {
    .bannerSection {
        padding-top: 150px;
        padding-bottom: 100px;
    }
    .bannerSection h1 {
        font-size: 52px;
    }
}

@media only screen and (max-width: 991.98px) {
    .bannerSection {
        padding-bottom: 80px;
    }
    .bannerSection h1 {
        font-size: 50px;
    }
    .bannerSection p {
        font-size: 17px;
    }
}

@media only screen and (max-width: 767.98px) {
    .bannerSection {
        padding-top: 165px;
    }
    .bannerSection h1 {
        font-size: 40px;
    }
    .bannerSection p {
        font-size: 16px;
    }
    .bannerSection .inner-block .sub-text {
        font-size: 20px;
    }
}

@media only screen and (max-width: 575.98px) {
    .bannerSection h1 {
        font-size: 28px;
    }
    .bannerSection {
        padding-top: 160px;
        padding-bottom: 85px;
    }
}


/* ----------------------------------
    ## Comfy Section
----------------------------------*/

.comfy-section .btn {
    background-color: #c19a77 !important;
    border: 0px;
    font-style: normal;
}

.comfy-section .number-row h2 {
    font-size: 48px;
    color: #52505e;
}

.comfy-section .number-row p {
    font-size: 16px;
    color: #52505e;
}

@media only screen and (max-width: 991.98px) {
    .comfy-section .comfy-img {
        margin: 0 auto;
        width: 70%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767.98px) {
    .comfy-section .number-row .col-md-3 {
        width: 25%;
    }
    .comfy-section .number-row p {
        font-size: 15px;
    }
    .comfy-section .number-row h2 {
        font-size: 40px;
    }
    .row.number-row.mt-5.mx-auto {
        gap: 20px 0;
    }
}

@media only screen and (max-width: 575.98px) {
    .comfy-img img {
        width: 100%;
    }
    .comfy-section .number-row .col-md-3 {
        width: 50%;
    }
    .comfy-section .number-row h2 {
        font-size: 35px;
    }
}


/*----------------------------------
	## Amenities Section
--------------------------------*/

.amenities-section ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 0px;
}

.amenities-section ul li {
    list-style-type: none;
}

.amenities-section ul li {
    list-style-type: none;
    width: 25%;
}

.amenities-section ul li span {
    font-size: 20px;
    font-weight: 500;
    display: block;
     font-family: 'Roboto', sans-serif;
    margin-top: 10px;
}

.amenities-section ul li .fa {
    font-size: 56px;
    color: #c19a77;
}
@media (max-width: 991.98px) {
    .amenities-section ul li span {
        font-size: 18px;
    }
}
@media (max-width: 767.98px) {
    .amenities-section ul li span {
        font-size: 16px;
    }
    .amenities-section ul li {
        list-style-type: none;
        width: 50%;
    }
    ul.amenities-listing {
        margin-top: 20px;
    }
}

@media (max-width: 575.98px) {
    .amenities-section ul li {
        list-style-type: none;
        width: 50%;
    }
    .amenities-section ul li:first-child,
    .amenities-section ul li:nth-child(2) {
        margin-top: 20px !important;
    }
}


/* ----------------------------------
    ## Enriching Section
----------------------------------*/

.enriching-section .enrich-box p {
    font-size: 16px;
}

@media (max-width: 991.98px) {
    .enrich-box .w-100 {
        width: 70% !important;
    }
    .enrich-box {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .enrich-box img {
        margin-top: 20px;
    }
}


/* ----------------------------------
    ## Offer Section
----------------------------------*/

.offerSection .offer-box p {
    font-size: 16px;
}

@media (max-width: 991.98px) {
    .offer-box .w-100 {
        width: 70% !important;
    }
    .offer-box {
        text-align: center;
    }
}


/* ----------------------------------
    ## Reviews Section
----------------------------------*/

.reviewsSection h2 {
    font-size: 52px;
}

.reviewsSection p {
    font-size: 18px;
}
.reviewsSection .test-container .row {
    gap: 24px 0;
}
.reviewsSection .card-parent {
    padding: 30px;
    box-shadow: aliceblue;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    border-radius: 5px;
    height:100%;
}
p.r-name {
    margin-bottom: 0;
    color: #000;
    font-weight: 700;
}
/* .card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

.card-top {
text-align: center;

}

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

.reviewsSection .card-text {
    font-size: 16px;
    line-height: 1.1;
}

.reviewsSection h5 {
    font-size: 14px;
    line-height: 1;
}

.reviewsSection .rating-row h4 {
    font-size: 22px;
    color: #52505e;
}

.reviewsSection .left-image img {
    border-radius: 50%;
    width: 100px;
}

.reviewsSection .rating-row h2 {
    font-size: 48px;
}

.reviewsSection .rating-row p {
    font-size: 16px;
    color: #52505e;
}

.reviewsSection .fa {
    font-size: 48px;
    color: #c19a77;
    font-weight: 500;
}

.reviewsSection .fa-facebook {
    color: #000;
    background-color: #c19a77;
}

@media only screen and (max-width: 1199.98px) {
    .reviewsSection h2 {
        font-size: 45px;
    }
}

@media only screen and (max-width: 991.98px) {
    .reviewsSection h2 {
        font-size: 40px;
    }
    .reviewsSection .card-parent {
        padding: 15px;
    }
    .reviewsSection .card-text {
        margin-top: 15px !important;
    }
    .reviewsSection .fivestar {
        margin-bottom: 0px !important;
    }
    .reviewsSection p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767.98px) {
    .reviewsSection h2 {
        font-size: 35px;
    }
    .reviewsSection p {
        font-size: 16px;
    }
    .reviewsSection .rating-row .col-12 {
        width: 50% !important;
    }
}

@media only screen and (max-width:575.98px) {
    .reviewsSection h2 {
        font-size: 30px;
    }
    .reviewsSection .card-text {
        font-size: 15px;
    }
}


/* ----------------------------------
    ## Lodging Section
----------------------------------*/

.lodgingSection {
    padding-bottom: 50px;
}

.lodgingSection .fa {
    font-size: 30px;
    text-align: center;
    color: #c19a77;
}

.lodgingSection span {
    font-size: 20px;
    text-align: center;
    display: block;
     font-family: 'Roboto', sans-serif;
    margin-top: 15px;
}

.lodgingSection .alert-text {
    font-size: 16px;
}

.lodgingSection h4 {
    font-size: 20px;
    font-weight: 900;
}

.lodgingSection ul {
    display: flex;
    align-items: center;
    justify-self: center;
    flex-wrap: wrap;
   
}

.lodgingSection ul li {
    width: 33.33%;
    margin-top: 22px;
    margin-bottom: 20px;
}
.lodgingSection ul li p{
    color:#8f8f8f;
    font-size:16px;

}


@media only screen and (max-width:991.98px) {
    .lodgingSection ul {
        padding-left: 0px;
    }
}

@media only screen and (max-width:575.98px) {
    .lodgingSection ul li {
        width: 50%;
    }
}


/* ----------------------------------
    ## Exhibition Section
----------------------------------*/
@media only screen and (max-width:991.98px) {
    .exhibition-section .w-100 {
        width: 70% !important;
    }
}

/*----------------------------------
	## Benefits Section
--------------------------------*/

.benefitSection.bannerSection {
    background: url(../images/banner-cta.jpg);
    padding-top: 100px;
    padding-bottom: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat !important;
}

.benefitSection .call-btn .fa {
    font-size: 30px !important;
}

.benefitSection .call-btn .headerCall {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    margin-left: 10px;
}

@media only screen and (max-width: 1199.98px) {
     .benefitSection.bannerSection {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}
/* ----------------------------------
    ## Modal/Popup Style
----------------------------------*/

.modal-lg {
    max-width: 650px !important;
}

.modal-body {
    padding: 40px 35px 40px;
}

.modal .btn-close {
    position: absolute;
    z-index: 1155;
    top: 5px;
    right: 5px;
}

.modal-body h2 {
    font-size: 40px;
}

.modal-body p a:hover {
    text-decoration: underline;
}

.modal-body h3 {
    font-size: 18px;
}

.modal-body P {
    font-size: 14px;
    line-height: 1.5;
}

.modal-body .title {
    font-size: 20px;
}

.modal-bottom p {
    display: inline-block;
    margin-left: 5px;
}

@media only screen and (max-width: 767.98px) {
    .form-control {
        font-size: 14px;
    }
}

@media only screen and (max-width: 575.98px) {
    .modal-body h2 {
        font-size: 28px;
    }
    .modal-body h3 {
        font-size: 16px;
    }
    .modal-body P {
        font-size: 12px;
    }
    .form-control {
        font-size: 13px;
    }
    .modal-body .title {
        font-size: 16px;
    }
}


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

.up-downsell .bannerSection {
    padding-top: 150px;
    padding-bottom: 110px;
}

.up-downsell h1 {
    font-size: 60px;
}

.up-downsell .bannerSection p {
    font-size: 18px;
}

.up-downsell .comeSection h3 {
    font-size: 34px;
}

.video-poster {
    background-image: url(../images/video-poster-image.jpg);
    padding-top: 300px;
    padding-bottom: 300px;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
}

.video-downsell {
    background-image: url(../images/video-poster-image-downsell.jpg);
}

.video-poster .btn {
    background-color: transparent !important;
    font-size: 0px;
    border: transparent;
    padding: 0;
    margin: 0 auto;
}

.video-poster .btn img {
    border-radius: 100%;
}

.modal-body .video {
    width: 100%;
    overflow: hidden;
}

.modal .btn-close {
    position: absolute;
    z-index: 1155;
    top: 5px;
    right: 5px;
}

.video-sec .modal-body {
    padding: 0px !important;
    background-color: transparent;
    line-height: 0;
}

.order-btn {
    background-color: #c19a77 !important;
    padding: 18px 40px;
    border: 0px solid #fff;
}

.order-btn span {
    display: block;
    line-height: 1.4;
}

.order-btn .btn-sub {
    font-size: 14px;
    line-height: 1.4;
}

.small-text {
    font-size: 14px;
}

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

@media only screen and (max-width: 767.98px) {
    .up-downsell .bannerSection {
        padding-top: 150px;
        padding-bottom: 100px;
    }
    .up-downsell h1 {
        font-size: 45px;
    }
    .up-downsell .bannerSection p {
        font-size: 16px;
    }
    .video-poster {
        padding-top: 225px;
        padding-bottom: 225px;
    }
}

@media only screen and (max-width: 575.98px) {
    .order-btn {
        background-color: #c19a77 !important;
        padding: 18px 40px;
    }
    .up-downsell h1 {
        font-size: 34px !important;
    }
    .video-poster {
        padding-top: 160px;
        padding-bottom: 160px;
    }
    .video-poster {
        width: 90%;
    }
    .up-downsell .comeSection h3 {
        font-size: 25px;
    }
    .up-downsell .bannerSection {
        padding-top: 110px;
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 414.98px) {
    .order-btn {
        padding: 18px 10px;
        width: 100%;
    }
    .order-btn .btn-sub {
        font-size: 12px;
        line-height: 1.4;
    }
}


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


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

.order-page .bannerSection {
    padding-top: 150px;
    padding-bottom: 100px;
}

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

.order-page .bannerSection p {
    font-size: 20px;
    color: #fff;
}

.formcontentSec {
    border: 1px solid #d9d9d9;
    max-width: 1010px;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    -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: #d9d9d933;
    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: #c19a77;
    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: 20px 90px;
    border-radius: 5px;
    width: 100%;
    line-height: 1.2;
    background-color: #c19a77;
}

@media only screen and (max-width: 1199.98px) {
    .order_Section .pay-btn.btn {
        padding: 25px 125px;
    }
}

@media only screen and (max-width: 991.98px) {
    .order-page .bannerSection h1 {
        font-size: 45px;
    }
    .order-page .bannerSection p {
        font-size: 18px;
    }
    .order_Section h2.headingsec {
        font-size: 18px;
    }
    .order_Section .container {
        max-width: 720px;
    }
}

@media only screen and (max-width: 767px) {
    .order-page .bannerSection h1 {
        font-size: 34px;
    }
    .order-page .bannerSection p {
        font-size: 16px;
    }
    .formcontentSec {
        padding: 25px;
    }
    .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;
    }
}

@media only screen and (max-width: 575px) {
    .order-page .bannerSection {
        padding-top: 125px;
        padding-bottom: 65px;
    }
    .order_Section .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .order-page .bannerSection h1 {
        font-size: 30px;
    }
    .order_Section .pay-btn.btn {
        font-size: 16px;
        padding: 18px 35px;
    }
}


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

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

.order-cancelled .bannerSection p,
.thank-you .bannerSection p {
    font-size: 20px;
}

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


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

.thank-you .bannerSection p {
    font-size: 18px;
}

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

footer.border-white {
    border-top: 3px solid #3c3c3c;
}

@media only screen and (max-width: 1199.98px) {
    .thank-you .bannerSection h1 {
        font-size: 55px;
    }
    .thankyouContentSec p {
        font-size: 19px;
        line-height: 1.5;
    }
}

@media only screen and (max-width: 991.98px) {
    .thank-you .bannerSection h1 {
        font-size: 45px;
    }
    .thank-you .bannerSection p {
        font-size: 18px;
    }
    .thankyouContentSec p {
        font-size: 18px;
    }
    .facebook-logo {
        text-align: center;
    }
    .facebook-logo img {
        width: 260px;
    }
}

@media only screen and (max-width: 767.98px) {}

@media only screen and (max-width: 575.98px) {
    .thank-you .bannerSection h1 {
        font-size: 38px;
    }
    .thank-you .bannerSection p {
        font-size: 16px;
    }
    .thankyouContentSec p {
        font-size: 16px;
    }
    .thank-youSection .fb-logo img {
        width: 100%;
    }
    .thank-youSection p{
        font-size:16px;
    }
    .footer-links {
        margin-top: 0 !important;
    }
}


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

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

.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: 140px;
    padding-bottom: 90px;
}

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

.privacypolicyterms ul {
    list-style-type: disc;
}

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

@media only screen and (max-width: 767px) {
    .termcond_privacypilocy {
        padding-top: 145px;
        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: 575.98px) {
    .termcond_privacypilocy {
        padding-top: 130px;
        padding-bottom: 55px;
    }
    .termcond_privacypilocy h1 {
        font-size: 35px;
    }
}

header.error {
    background: #000;
    opacity: .8;
}


/* 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('../images/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;
}
.paypal-card-group label{
    color: #757575;
}
.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 */
