@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Outfit:wght@100..900&family=Readex+Pro:wght@160..700&display=swap');
/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins',
        color: #393939;
    overflow-x: hidden;
    font-family: "Montserrat", serif;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'times-roman';
    src: url(../fonts/times-roman.ttf);
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.btn10 {
    border: 1px solid #a30000 !important;
    text-align: center;
    position: relative;
    overflow: hidden !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #a30000 !important;
    z-index: 10;
    display: inline-block;
    color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: 17px;
    font-family: Poppins;
    font-weight: 400
}

.btn10:hover {
    border: 1px solid #a30000 !important;
    color: #fff !important
}

.btn10::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #a30000;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000 !important
}

.btn10::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #fff;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000 !important
}

.btn10:hover::before,
.btn1O:hover::before {
    opacity: 1;
    width: 116%
}

.btn10:hover::after,
.btn1O:hover::after {
    opacity: 1;
    width: 120%
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'times-roman';
    font-size: 65px;
    line-height: 90px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 20px;
}


h2 {
    font-family: 'times-roman';
    font-size: 75px;
    line-height: 85px;
    color: #000000;
    font-weight: 500;
    margin: 0 0 5px;
}

h3 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

p {
    color: #333333;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/* Header Start */

header {
    padding: 25px 0;
}

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 8px 30px;
    font-size: 16px;
    text-transform: uppercase;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #b18242;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.header-banner-back {
    background: #212224;
    padding-bottom: 150px;
}

.header-logo a img {
    width: 75%;
}

/* Header End */

/* section heading */

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading p {
    margin: auto;
    width: 50%;
    color: #858585;
}

/* section heading */

/* Banner Start */

.main-banner-sec .container-fluid.add-padding {
    padding: 0 0 0 60px;
}

.main-bar-img-silder-items img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.main-banner-left-img img {
    width: 272px;
    height: 223px;
    object-fit: cover;
}

.main-bar-text-silder-items {
    background: #b18242f0;
    padding: 40px 40px 60px;
    position: relative;
    z-index: 99;
}

.main-bar-text-silder-items h1 span {
    display: block;
}

.main-bar-text-silder-items p {
    color: #d8e4dc;
    font-size: 14px;
    line-height: 25px;
}

.theme-btn-1 {
    background: #b18242 !important;
    padding: 20px 25px;
    font-size: 16px;
    color: #fff !important;
    text-transform: uppercase;
}

.theme-btn-1 i {
    margin-left: 8px;
}

.main-bar-text-silder-items ul {
    margin-top: 45px;
    display: flex;
    align-items: center;
}

.theme-btn-2 {
    padding: 20px 25px;
    font-size: 16px;
    color: #ffffff !important;
    text-transform: uppercase;
    border: 1px solid #ffffff;
}

.theme-btn-2 i {
    margin-left: 8px;
}

.main-bar-text-silder-items ul li .theme-btn-2 {
    border-left: none;
}


.main-bar-text-silder .slick-slide {
    margin: 0px 0px 0px 0px;
}

.main-bar-img-silder .slick-slide {
    margin: 0px 0px;
}

.main-bar-text-silder {
    width: 600px;
    position: relative;
    z-index: 99;
}

.main-bar-text-silder .slick-dots {
    position: absolute;
    bottom: 50%;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: inherit;
    left: -40px;
}

.main-bar-text-silder .slick-dots li {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    margin: 0 0px;
    padding: 0;
    cursor: pointer;
}


.main-bar-text-silder .slick-dots li button {

    width: 20px;
    height: 10px;

}

.main-bar-text-silder .slick-dots li button:before {

    width: 20px;
    height: 4px;
    content: '';
    text-align: center;
    opacity: 5;
    background: #bdbdbe;
}

.main-bar-text-silder .slick-dots li.slick-active button:before {
    opacity: 8;
    color: black;
    background: #fff;
    width: 50px;
}

.main-banner-sec {
    position: relative;
}

.main-banner-scoll-down {
    position: absolute;
    bottom: -30px;
    left: 8px;
}

.main-banner-scoll-down img {
    width: 57px;
    height: 190px;
    object-fit: cover;
}

.main-banner-left-img {
    position: absolute;
    bottom: -65px;
    right: 0;
    z-index: 9;
}

.main-bar-img-silder .slick-next {
    right: 60px;
}

.main-bar-img-silder .slick-prev {
    left: -25px;
    display: none !important;
}

.main-bar-img-silder .slick-prev,
.slick-next {
    top: inherit;
    bottom: -14px;
    z-index: 9999;
}

.main-bar-img-silder .slick-next:before {
    content: '\f30b';
    background: #b18242;
    opacity: 8;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    font-weight: 900;
    font-family: 'Font Awesome 5 Pro';
    font-size: 25px;
}

.main-bnr-btm-bar-socail ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-banner-bottom-bar {
    background: #b18242;
    padding: 20px 35px;
    position: absolute;
    width: 70.4%;
    z-index: 9;
    left: 150px;
    bottom: -64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-bnr-btm-bar-loction a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
}

.main-bnr-btm-bar-loction a i {
    font-size: 20px;
}

.main-bnr-btm-bar-socail ul li a {
    color: #fff;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
}

.main-bnr-btm-bar-socail ul {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 3px solid #b1cabb;
    padding: 5px 0px 5px 35px;
}


/* Banner End */


/*About Enchanted Allure Start*/


.about-enchanted-allure-sec {
    padding: 100px 0;
}

.about-enchanted-allure-img {
    padding-top: 16px;
    padding-left: 16px;
    position: relative;
}

.about-enchanted-allure-img:before {
    content: "";
    position: absolute;
    border: 2px solid #b18242;
    width: 95%;
    height: 98%;
    top: 0;
    left: 0;
    z-index: -1;
}

.about-enchanted-allure-img img {
    width: 100%;
    height: 818px;
    object-fit: cover;
}

.about-enchanted-allure-text h2 span {
    display: block;
}

.about-enchanted-allure-text p {
    margin-bottom: 45px;
}

.about-enchanted-allure-text {
    margin-left: 20px;
}

.about-enchanted-allure-text a {
    background: #b18242 !important;
}

.about-enc-allure-text-img {
    margin-top: 60px;
    margin-left: 20px;
    padding-top: 15px;
    padding-right: 15px;
    position: relative;
}

.about-enc-allure-text-img:before {
    content: "";
    position: absolute;
    border: 2px solid #b18242;
    width: 95%;
    height: 96%;
    top: 0;
    z-index: -1;
    right: 0;
}

.about-enc-allure-text-img img {
    width: 100%;
    height: 466px;
    object-fit: cover;
}

/*About Enchanted Allure End*/

/*Our Services Start*/


.our-ser-main-box img {
    width: 100%;
    height: 826px;
    object-fit: cover;
}

.our-ser-main-box {
    position: relative;
}

.our-ser-main-box-heading h2 {
    font-size: 45px;
    margin-bottom: 0;
    color: #fff;
}

.our-ser-main-box-heading {
    position: absolute;
    bottom: 5px;
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
}

.our-ser-main-box:before {
    content: "";
    position: absolute;
    background-image: url(../images/sh-1.png);
    width: 100%;
    height: 100%;
    background-size: cover;
}

.our-ser-heading {
    margin-left: 15px;
    margin-bottom: 45px;
}

.our-ser-box img {
    width: 100%;
}

.our-ser-box-row {
    margin-bottom: 15px;
}

.our-services-sec {
    padding-bottom: 100px;
    position: relative;
}

.our-services-sec:before {
    content: "";
    position: absolute;
    background-image: url(../images/our-services-back.png);
    width: 100%;
    height: 850px;
    background-size: cover;
    bottom: 0;
    z-index: -1;
}

.our-ser-box h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 8px;
    line-height: 35px;
    margin-top: 20px;
}

.our-ser-box a {
    padding: 18px 20px;
    font-size: 13px;
    background: #b18242 !important;
}

.our-ser-box p {
    color: #fff;
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 30px;
}

.our-ser-heading h2 {
    color: #fff;
}

.our-ser-heading p {
    color: #fff;
    font-size: 14px;
}

.our-ser-main-box:after {
    content: "";
    position: absolute;
    background: #000;
    width: 50px;
    height: 80px;
    bottom: 0;
    left: -50px;
}

.our-ser-main-box:after {
    content: "";
    position: absolute;
    background: #b18242;
    width: 110px;
    height: 190px;
    bottom: -9px;
    left: -10px;
    z-index: -1;
}

.our-ser-box.chg {
    position: relative;
    margin-left: 0;
    margin-right: 10px;
}

/*.our-ser-box.chg:before {
    content: "";
    position: absolute;
    background: #574d47;
    width: 1px;
    height: 100%;
    right: -23px;
}*/

.our-ser-box {
    margin-left: 10px;
}


/*Our Services End*/


/* Inner Faq Start */

.faq-sec.inner {
    padding: 100px 0;
}

.faq-heading.chg h2 {
    color: #23306c;
}


.faq-heading h2 {
    color: #23306c;
}

.faq-heading h2 span {
    display: block;
    color: #a91e23;
}

section.faqs-main {
    padding: 80px 0 100px;
}

.faq-heading p {
    width: 80%;
    margin: 0 auto;
}

.gorilla-content .accordion-button.collapsed {
    padding: 20px 20px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    border: 1px solid #b7b7b7;
    border-radius: 8px !important;
    color: #000;
    font-family: 'Montserrat', sans-serif;

}

.gorilla-content .accordion-button {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    border-radius: 0px !important;
    text-transform: capitalize;
    padding: 25px 30px 10px;
    border-top-right-radius: 30px !important;
    border-top-left-radius: 30px !important;
    color: #000;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
}

.accordion-body-gorrila-page-txt {
    background-color: #b18242;
    padding: 5px 30px 20px;
}

.accordion-body-gorrila-page-txt p {
    color: #fff;
}

.accordion-body-gorrila-page-txt {
    padding: 15px 30px 15px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.accordion-body-gorrila-page-txt p {}

.faq-heading h2 {
    color: #000;
}


.gorilla-content .gorrila-page-txt .color-red {
    color: #A60000;
    font-weight: 500;
    margin-bottom: 7px;
    margin-top: 30px;
}

.gorrila-page-txt ul {
    list-style: disc;
}

.gorrila-page-txt ul li {
    color: #000000;
    font-size: 14px;
    line-height: 23px;

    font-weight: 400;
    margin-bottom: 15px;
    margin-left: 15px;
}

.gorrila-page-txt ul li::marker {
    color: #000;
}

.accordion-body.gorrila-page-txt {
    background: #ffffff;
    border: unset !important;
    border-top: none;
    padding: 0;
}

.accordion-item {
    background-color: #fff;
    border: inherit;
}

.gorilla-content .accordion-item {
    margin-bottom: 20px;
}

.accordion-button::after {
    content: "" !important;
    position: absolute !important;
    background-image: url(../images/faqopen.png) !important;
    width: 23px;
    height: 23px;
    right: 30px;
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(0%) sepia(5%) saturate(7500%) hue-rotate(356deg) brightness(101%) contrast(97%);
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/faqclose.png) !important;
    width: 23px;
    height: 7px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(159deg) brightness(105%) contrast(104%);
}

.gorilla-content .accordion-button:not(.collapsed) {
    box-shadow: none;

    border-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.faq-sec {
    padding: 30px 0 80px;
}

.accordion-collapse.collapse {


    border-top: 0;
    border-radius: 0 0 10px 10px;

}


.gorilla-content button:focus:not(:focus-visible) {
    box-shadow: none;
}

.gorilla-content .accordion-button::after {
    content: '\f067';
    font-weight: 900;
    font-family: 'Font Awesome 5 free';
    background-image: none;

}

.accordion-button:not(.collapsed) {
    color: #fff;

    background: #b18242;
}

.accordion-button:not(.collapsed)::after {
    content: '\f068';
    font-weight: 900;
    font-family: 'Font Awesome 5 free';
}

.address {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

section.faqs-main p {
    font-weight: 500;
    line-height: 28px;
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}


.faq-heading.text-center {
    margin-bottom: 30px;
}

.faq-heading.text-center h3 span {
    display: block;
}

.faq-heading.text-center h3 {
    line-height: 60px;
}

section.faqs-main {
    padding: 100px 0;
}


.products-box {
    height: 450px;
}

.call-center-sec .row {
    justify-content: center;
}

.call-center-box ul li p a {
    color: #fff;
    font-size: 16px;
}

.faq-heading {
    text-align: center;
}

.faq-heading {
    margin-bottom: 35px;
}

.accordion-body-gorrila-page-txt p {
    color: #fff;
}



/* Inner Faq End*/


/*Book Appointment Start */

.book_your_schedule {
    padding: 100px 0;
    background: url(../images/book-appointment-back.png) no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.schedule-form-input {
    position: relative;
    display: flex;
    align-items: center;
}

.schedule-form-arrow {
    position: absolute;
    right: 15px;
    pointer-events: none;
    top: 20px;
}

.services_heading {
    margin-bottom: 25px;
}

.services_heading h2 {
    color: #fff;
}

.services_heading p {
    color: #a1a1a1;
    width: 60%;
    margin: auto;
}

s .schedule-form-arrow i {
    font-size: 20px;
    color: #000;
}

.submit_btn.text-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit_btn button {
    background: #b18242 !important;
    border: none;
}

.schedule_form form input {
    width: 100%;
    height: 60px;
    padding-left: 15px;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 0 20px #00000021;
}

.schedule-form-input i {
    right: 20px;
    top: 20px;
    font-size: 20px;
    color: #b18242;
    position: absolute;
}

.schedule_form form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 0 20px #00000021;
}



/*Book Appointment End */


/* Gallery Start  */

.gal-wrap {
    position: relative;
    margin-bottom: 20px;
}

img.gall-003 {
    height: 430px;
    object-fit: cover;
}

.gal-wrap:before {
    position: absolute;
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: 0.5s;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    top: 40%;
    color: #fff;
    font-size: 30px;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border: 1px solid #fff;
    align-items: center;
    border-radius: 50%;
    transition: 0.5s;
    transform: scale(0);
    z-index: 9;
}

.gal-wrap:hover:before {
    transform: scale(1);
}

section.gallery {
    padding: 80px 0;
}

section.gallery .aftr-box:hover:after {
    width: 100%;
    transition-delay: 0s;
    height: 100%;
    background: #9b800d61;
    z-index: 0;
}

.gal-wrap.aftr-box img {
    width: 100%;
}


.gal-wrap.aftr-box img {
    width: 100%;
    height: 307px;
    object-fit: cover;
}

.gal-wrap.aftr-box.two img {
    width: 100% !important;
    height: 517px !important;
}

section.gallery .aftr-box:hover:after {
    width: 100%;
    transition-delay: 0s;
    height: 100%;
    background: #397b547d;
    z-index: 0;
}

.aftr-box:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 3px;
    background: #397b547d;
    width: 0;
    transition: 0.4s ease-in-out;
    transition-delay: 0.8s;
}

.aftr-box:hover:after {
    width: 100%;
    transition-delay: 0s;
}

.gal-wrap.aftr-box.three img {
    width: 100%;
    height: 450px !important;
    object-fit: cover;
}


.gal-wrap.aftr-box.four img {
    width: 100%;
    height: 374px;
    object-fit: cover;
}

.gal-wrap.aftr-box.six img {
    width: 100%;
    height: 530px;
    object-fit: cover;
}

.gal-wrap.aftr-box.five img {
    width: 100%;
    height: 295px;
    object-fit: cover;
}

.gallery-heading {
    text-align: center;
    margin-bottom: 45px;
}

.gallery-heading p {
    width: 50%;
    margin: 0 auto;
}

/* Gallery End  */













/* Footer Start */


.footerSec {
    margin-top: 40px;
    padding-top: 80px;
    background: #212224;
}

h5.f-head {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    position: relative;
    margin: 0 0 40px;
    border-bottom: 3px solid #fff;
    display: inline-block;
    line-height: 28px;
    font-family: 'times-roman';
}



.footer-contact ul li img {
    margin: 0px 20px 0 0;
    width: 8%;
}

.footer-contact ul li span {
    font-size: 16px;
    color: #fff;
    font-family: 'Open Sans';
}

.footer-contact ul li {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.foot-links ul li a {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 3;
}

.foot-links ul li {
    height: 35px;
}

.foot-links h5.f-head {
    margin-bottom: 10px;
}

.foot-links h5.f-head {
    margin-bottom: 30px;
}

.news-letter p {
    font-size: 16px;
    color: #fff;
}

.footer-in input {
    width: 100%;
    height: 50px;
    border: none;
    padding: 15px;
    font-weight: 500;
}

.footer-in {
    position: relative;
}

.footer-in button {
    position: absolute;
    width: 35%;
    right: 0;
    background: #b18242;
    border: none;
    color: #fff;
    font-weight: 400;
    padding: 13px 20px;
    transition: .5s;
}

ul.footer-media {
    margin-top: 30px;
}

ul.footer-media li a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    margin: 0 10px 0 0;
    transition: .5s;
}

ul.footer-media li a:hover {
    color: #fff;
    transition: .5s;
    background: #397b54;
}

.copy-txt p {
    margin: 0;
    color: #fff;
    font-family: 'Open Sans';
    font-weight: 400;
}

.footer-btm {
    background: #b18242;
    padding: 20px 0;
    text-align: center;
    margin-top: 30px;
}

/* Footer End*/


/* testimonial sec */

.testimonial-sec .section-heading h2 {
    color: #fff;
}

.testimonial-sec {
    padding: 100px 0px;
    position: relative;
    background-color: rgba(33, 34, 36, 0.836);
}

.testimonial-sec::before {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    background: url(../images/testimonial-bg.png)no-repeat;
    background-size: cover;
}

.testimonial-box {
    display: flex;
    padding: 40px 25px 30px;
    background: #fff;
    text-align: center;
    margin-top: 45px;
    position: relative;
    border-radius: 30px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: rgb(255, 255, 255);
}

.testimonial-box h5 {
    display: none;
}

.testimonial-box h5 span {
    font-weight: 400;
}

.testimonial-box p {
    font-style: italic;
}

.testimonial-slider .slick-slide {
    opacity: 0;
}

.testimonial-slider .slick-active {
    opacity: 1;
}

img.test-img {
    display: none;
}

.test-quote {
    width: 50px;
    height: 30px;
    object-fit: contain;
}

.testimonial-slider .slick-track {
    align-items: center !important;
    display: flex !important;
}

.testimonial-slider .slick-current .testimonial-box {
    margin-top: 50px;
}

.testimonial-slider .slick-current .testimonial-box h5 {
    display: block;
    color: #fff;
}

.testimonial-slider .slick-current .testimonial-box {
    padding-top: 80px;
    background: #b18242;
}

.testimonial-slider .slick-current .testimonial-box p {
    color: #fff;
}

.testimonial-slider .slick-current .testimonial-box img.test-img {
    display: block;
    height: 110px;
    width: 50%;
    position: absolute;
    top: -50px;
    object-fit: cover;
    border-radius: 10px;
    border: 5px solid #fff;
}

.testimonial-slider .slick-prev:before {
    color: #fff;
    opacity: 1;
    font-size: 30px;
}

.testimonial-slider .slick-prev {
    left: 15px;
    z-index: 2;
}

.testimonial-slider .slick-next {
    top: 50%;
    right: 25px;
}

.testimonial-slider .slick-next:before {
    color: #fff;
    opacity: 1;
    font-size: 30px;
}

/* testimonial sec */

/* blog-sec */

.blog-sec {
    padding: 100px 0px;
}


.blog-box {
    gap: 10px;
    padding: 25px;
    display: flex;
    text-align: center;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.blog-box::before {
    top: 10%;
    height: 80%;
    left: 0;
    width: 100%;
    content: '';
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 4px 49px 0px rgba(0, 0, 0, 0.14);
    position: absolute;

}

.blog-box img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    position: relative;
}

.blog-box ul {
    gap: 20px;
    display: flex;
    position: relative;
    align-items: center;
}

.blog-box ul li {
    font-size: 14px;
    color: #8d8d8d;
    position: relative;
    font-family: 'Montserrat';
}

.blog-box ul li::before {
    top: 2px;
    right: -10px;
    width: 1px;
    content: '';
    height: 16px;
    position: absolute;
    background: #8d8d8d;
}

.blog-box ul li:last-child::before {
    content: none;
}

.blog-box h4 {
    width: 100%;
    margin: 0px auto 20px;
    position: relative;
    font-family: 'times-roman';
}

.blog-box a {
    font-size: 13px;
    padding: 18px 20px;
    position: relative;
    background: #b18242 !important;
}

/* blog-sec */
/*inner-banner start*/
.main-banner-sec.inn .main-bar-img-silder-items img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}
.header-banner-back.inn {
    padding-bottom: 70px;
}
.main-banner-sec.inn .main-bar-img-silder-items {
    width: 100%;
}
.main-banner-sec.inn .main-bar-text-silder-items {
    width: 130%;
}
.main-banner-sec.inn .main-bar-text-silder-items.inn {
    width: 150%;
}
/*experience start*/
section.experience {
    margin: 40px 0px 100px;
    padding: 80px 0px;
    background-image: url(../images/exp.jpg);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
.exp-txt {
    text-align: center;
}

.exp-txt h4 {
    font-size: 75px;
    font-weight: 700;
    color: #fff;
    line-height: 90px;
    font-family: 'times-roman';
}
.exp-txt p {
    font-size: 28px;
    color: #fff;
}
section.choose {
    padding-bottom: 100px;
}
.chose-txt h3 {
    font-family: 'times-roman';
    font-size: 75px;
    line-height: 90px;
    font-weight: 400;
}
.chose-txt p {
    width: 85%;
}
section.testimonial-sec.inn {
    background-color: unset;
}

section.testimonial-sec.inn::before {
    display: none;
}
section.testimonial-sec.inn .section-heading h2 {
    color: #111111;
}
section.testimonial-sec.inn .testimonial-box {
    box-shadow: 0 0 3px #0000007d;
}
section.blog.inn {
    padding: 100px 0px;
}
 ul.pagination.pagination-sm {
    margin-top: 40px;
    text-align: center;
    justify-content: center;
}
 ul.pagination.pagination-sm li {
    padding: 0px 5px;
}
 .page-link {
    position: relative;
    display: block;
    color: #fff;
    text-decoration: none;
    background-color: #b18242;
    /* transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; */
    width: 59px;
    height: 56px;
    padding: unset;
    /* clip-path: polygon(25% 0, 100% 0, 75% 100%, 0% 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
}
 .page-link:hover {
    background-color: #000;
}
/*service-page start*/
section.service-page {
    padding: 100px 0px;
}
.ser-img-page img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}
.ser-img-page {
    text-align: center;
    width: 90%;
    margin: 0 auto;
}
.ser-page-txt {
    padding: 80px 0px;
    text-align: center;
}
.ser-page-txt h3 {
    font-size: 50px;
    line-height: 50px;
    color: #000000;
    font-weight: 400;
    font-family: 'times-roman';
    margin-bottom: 15px;
}
.ser-page-txt p {
    width: 87%;
    margin: 0 auto;
    margin-bottom: 25px !important;
}
section.book_your_schedule.inn h2 {
    color: #000;
}

section.book_your_schedule.inn p {
    color: #000;
}
section.book_your_schedule.inn {
  background-image: unset;
}
.schedule-form-input select {
    width: 100%;
    height: 60px;
    padding-left: 15px;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 0 20px #00000021;
    -webkit-appearance: auto;
}
.blog-box.txt::before {
    display: none;
}
.blog-box.txt {
    text-align: unset;
    display: unset;
}
.blog-box.txt ul {
    justify-content: start !important;
    margin-bottom: 15px;
}
section.blog-det {
    padding: 100px 0px;
}
.blog-box.txt h4 {
    font-size: 35px;
    line-height: 38px;
    width: 80%;
    margin: 0;
    margin-bottom: 22px !important;
}
.blog-box.txt  ul li{
  font-size: 22px;
}

.contact_page {
  padding: 100px 0;
}

.contact_form input {
  height: 52px;
  width: 100%;
  border: 2px solid #e4e4e4;
  margin-bottom: 25px;
  /* border-radius: 100px; */
  padding: 0 15px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.contact_form textarea {
  width: 100%;
  height: 250px;
  margin-bottom: 30px;
  width: 100%;
  border: 2px solid #e4e4e4;
  border-radius: 10px;
  padding: 15px 15px;
  resize: none;
}

.section_head {
  margin-bottom: 40px;
}

.section_head p {
    color: #636363;
    width: 70%;
    margin: 0 auto;
    font-weight: 400;
    font-size: 14px;
}

.section_head h3 {
  color: #000;
  font-size: 70px;
  margin-bottom: 26px;
  line-height: 60px;
  text-transform: uppercase;
  font-weight: 300;
}
.faq-heading p {
    width: 48%;
    margin: 0 auto;
}
.br_gradient {
  padding: 2px;
  border-radius: 12px;
}

.contact_detail_box p span {
  display: block;
}
.contact_page h4 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
    line-height: 37px;
    color: #fff;
    font-family: 'times-roman';
}

.contact_detail_box figure img {
  margin: auto;
  height: 53px;
  width: 55px;
  object-fit: cover;
}

.contact_detail_box h2 {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  font-weight: 700;
  margin: 30px 0 10px 0;
}
.contact_detail_box.box-2 {
    padding: 52px 30px;
}

.contact_detail_box p {
  font-size: 15px;
  line-height: 25px;
  color: #fff;
  margin: 0;
  font-weight: 400;
  margin-bottom: 0;
}

.contact_detail_box {
    padding: 40px 30px;
    /* border: 2px solid #9b9ea2; */
    height: 280px;
    border-radius: 0px;
    background-color: #b18242;
}

.contact_form {
  padding-bottom: 7%;
}

.contact_form label {
  font-size: 15px;
  color: #5d5d5d;
  margin-bottom: 7px;
  font-weight: 600;
}

.btn_wrap button {
   font-family: 'Montserrat';
   display: flex;
   align-items: center;
   gap: 10px;
   background: #272f37;
   width: fit-content;
   padding: 12px 40px;
   border-radius: 100px;
   border: 2px solid #fff;
   color: #fff;
   margin: 0 auto;
}
.contact-form-title h3 {
    font-size: 51px;
    line-height: 43px;
    color: #000;
    text-transform: capitalize;
    font-family: 'times-roman';
}

.contact-form-title p {
    font-size: 17px;
    color: #333333;
    line-height: 28px;
}
.btn-contact button {
    padding: 10px 60px;
    border: unset;
    color: #fff;
    width: 100%;
    background-color: #b18242;
}
.contact-form input {
    width: 100%;
    margin-bottom: 20px !important;
    padding: 15px 20px;
    border: 1px solid #c4c4c4;
    border-radius: 5px;
}
.contact-form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px;
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    height: 100px;
    resize: none;
}
section.contact-page-tw {
    padding-bottom: 80px;
}
/*CONTACT END*/
.foot-links ul li a:hover {
    color: #b18242;
    padding-left: 4%;
    transition: 1s;
}
section.testimonial-sec.inn .testimonial-slider .slick-prev:before {
    color: #000;
}

section.testimonial-sec.inn .testimonial-slider .slick-next:before {
    color: #000;
}
.main-bar-text-silder-items.inn h1 {
    margin-bottom: 0;
}
.about-enchanted-allure-text h2 {
    font-size: 50px;
    line-height: 60px;
}
.serviceslid .slick-active {
    opacity: 1.5;
}
.serviceslid .slick-current:before {
    position: absolute;
    content: '';
    background: #574d47;
    width: 2px;
    height: 440px;
    right: -15px;
}
.serviceslid .slick-current {
    position: relative;
}
.blog-det-img img {
    width: 100%;
}
html {
    overflow-x: hidden;
}


@media only screen and (min-width: 1366px) and (max-width: 1920px){}

@media only screen and (min-width: 1200px) and (max-width: 1365px){}

@media only screen and (min-width: 992px) and (max-width: 1199px){}

@media only screen and (min-width: 768px) and (max-width: 991px){}

@media only screen and (min-width: 520px) and (max-width: 767px){}

@media only screen and (min-width: 300px) and (max-width: 519px){

.main-banner-sec .container-fluid.add-padding {
    padding: 0 !important;
}
.main-bar-text-silder-items h1 {
    font-size: 35px;
    line-height: 40px;
}

    
}



