@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    overflow-x: hidden;
    word-break: break-word;
    color: var(--textColor);
    background-color: var(--bodyBg);
    font: 15px/25px 'Poppins', sans-serif;
}

:root {
    --black: #000;
    --white: #fff;
    --bodyBg: #f9f8f4;
    --textColor: #7c7c7c;
    --themeColor: #e58b8e;
    --headingColor: #1c1c1c;
    --headingColor2: #1b1b1b;
}

a {
    white-space: initial;
    text-decoration: none;
    display: inline-block;
    color: var(--textColor);
}

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;
}

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;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%
}


/***** 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: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}

@font-face {
    font-family: 'Komrile-Regular';
    src: url(../fonts/Komrile-Regular.otf);
}


/***** 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;
}

.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-size: 78px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    font-family: 'Komrile-Regular';
}

h2 {
    font-size: 55px;
    margin: 0 0 0px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--headingColor);
    font-family: 'Komrile-Regular';
}

h3 {
    font-size: 30px;
    margin: 0 0 0px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--headingColor);
    font-family: 'Komrile-Regular';
}

h4 {
    margin: 0 0 0px;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--headingColor);
    font-family: 'Komrile-Regular';
}

h5 {
    font-size: 20px;
    margin: 0 0 0px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--headingColor);
    font-family: 'Komrile-Regular';
}

h6 {
    font-size: 14px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Poppins';
}

p {
    margin: 0px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0px;
    font-family: 'Poppins';
    color: var(--textColor);
}

.add-padding {
    width: 100%;
    margin: 0px auto;
    max-width: 1500px;
}

.theme-btn-1 {
    font-size: 16px;
    padding: 20px 50px;
    position: relative;
    color: var(--white);
    text-transform: uppercase;
    background-color: transparent;
    border: 1px solid #ffffff3d;
    font-family: 'Komrile-Regular';
}

.theme-btn-1 span {
    z-index: 1;
    position: relative;
}

.theme-btn-1:hover {
    color: #5a4140;
    background-color: #fff;
}

.theme-btn-1:hover::before {
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.theme-btn-1:hover::after {
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.theme-btn-1::before {
    top: 0px;
    left: 0px;
    width: 10px;
    content: '';
    height: 10px;
    position: absolute;
    transition: ease-in;
    background-color: var(--white);
    transition-duration: 0.5s;
    clip-path: polygon(100% 0, 0 0, 0 100%);
}

.theme-btn-1::after {
    right: 0px;
    bottom: 0px;
    width: 10px;
    content: '';
    height: 10px;
    position: absolute;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--white);
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
}

.theme-btn-2 {
    font-size: 16px;
    padding: 20px 50px;
    position: relative;
    color: var(--black);
    text-transform: uppercase;
    border: 1px solid #cdccc9;
    background-color: transparent;
    font-family: 'Komrile-Regular';
}

.theme-btn-2 span {
    z-index: 1;
    position: relative;
}

.theme-btn-2:hover {
    color: var(--white);
    background-color: var(--white);
}

.theme-btn-2:hover::before {
    top: 0;
    left: 0;
    width: 51%;
    height: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.theme-btn-2:hover::after {
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.theme-btn-2::before {
    top: 0px;
    left: 0px;
    width: 10px;
    content: '';
    height: 10px;
    position: absolute;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
    clip-path: polygon(100% 0, 0 0, 0 100%);
}

.theme-btn-2::after {
    right: 0px;
    bottom: 0px;
    width: 10px;
    content: '';
    height: 10px;
    position: absolute;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
}

.section-heading {
    display: flex;
    text-align: center;
    align-items: center;
    margin-bottom: 25px;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    padding: 5px;
    width: fit-content;
    position: relative;
    margin-bottom: 15px;
}

.section-title::before {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    content: '';
    position: absolute;
    background-color: var(--themeColor);
}

.section-heading .section-title {
    margin: 0px auto;
}

.section-heading p {
    width: 80%;
    margin: auto;
    max-width: 820px;
}


/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    gap: 20px;
    padding: 0;
    display: flex;
    font-size: 16px;
    position: relative;
    color: var(--white);
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    justify-content: flex-start;
    font-family: 'Komrile-Regular';
}


/*.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
    display: none;
}
*/


/*.menuSec ul li:last-child a {
    padding-right: 0px;
}*/


/* .menuSec ul li:last-child a:after {
    display: none;
} */

.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: var(--themeColor);
}

.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 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;
    display: none;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.menuSection {
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    padding: 20px 0px;
    position: absolute;
}

.menuSection .row {
    align-items: center;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-btn .theme-btn-2 {
    color: var(--white);
}

.header-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo a,
.header-logo a img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.menu-btn {
    position: relative;
    z-index: 10;
}

.menu-box {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 7;
    width: 100vw;
    height: 100vh;
    display: none;
    background: #0000008a;
    backdrop-filter: blur(4px);
}

.menuSec .menu-box>nav {
    top: 50%;
    gap: 20px;
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transform: translateY(-50%);
}

.menuSec .menu-box>nav a {
    line-height: 1;
    font-size: 20px;
    font-weight: 500;
    position: relative;
    color: var(--white);
    font-family: 'Poppins';
    text-transform: uppercase;
    transition: 0.4s ease-in-out;
}

/* menu-icon */

.menu-btn svg {
    width: 35px;
    height: 35px;
}

.path1,
.path2,
.mline {
    stroke: var(--white);
    stroke-width: 3;
    stroke-linecap: round;
    /* makes line ends rounded */
    stroke-linejoin: round;
    /* smooths corner joins */
    stroke-dasharray: 104;
    stroke-dashoffset: -71;
    transition: all 1s ease;
}

.cross {
    stroke-dashoffset: 68;
    stroke: var(--white);
}

.mline {
    stroke-dasharray: 41;
    stroke-dashoffset: -82;
    transition: 1s all ease;
}

.hide {
    stroke-dasharray: 43;
    stroke-dashoffset: 130;
}

/* menu-icon */





/*header css start */


/*banner css start */

.main_slider {
    position: relative;
    background-image: url(../images/new-banner-img.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.main_slider::before {
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    opacity: 0.9;
    height: 100%;
    position: absolute;
    background-image: url(../images/banner-after.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.main_slider::after {
    left: 0;
    bottom: 0;
    width: 100%;
    content: '';
    height: 250px;
    position: absolute;
    background-image: url(../images/banner-before.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}


.main_slider .container {
    z-index: 1;
    display: flex;
    min-height: 900px;
    padding-top: 150px;
    position: relative;
    align-items: center;
    padding-bottom: 100px;
    flex-direction: column;
    justify-content: center;
}

.main_slider .row {
    width: 100%;
}

.banner-bottom-box {
    position: relative;
}

.banner-bottom-box h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.banner-bottom-box p {
    opacity: 0.7;
    color: var(--white);
}

.banner_text h2 {
    color: var(--white);
}

.banner_text h1 {
    margin-bottom: 5px;
}

.banner_text p {
    opacity: 0.8;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 2px 1px 12px #000;
}

.banner_text .theme-btn-2 {
    color: var(--white);
}

.bannner-before {
    left: -10%;
    bottom: 100px;
    height: 250px;
    position: absolute;
    object-fit: contain;
}

.bannner-after {
    top: 120px;
    right: -13%;
    height: 350px;
    position: absolute;
    object-fit: contain;
}

/*banner css end*/

/* inner-banner */

section.main_slider.inner-banner .container {
    min-height: 450px;
}

section.main_slider.inner-banner::after {
    display: none;
}

/* inner-banner */

/* about-sec */

.about-sec {
    position: relative;
    padding: 100px 0px;
    background-image: url(../images/about-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-sec::before {
    top: 0;
    left: 0;
    width: 100%;
    content: '';
    height: 100%;
    opacity: 0.5;
    position: absolute;
    background-image: url(../images/leaf.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-sec .container {
    z-index: 1;
    position: relative;
}

.about-img {
    width: 100%;
    height: 250px;
    max-width: 250px;
    overflow: hidden;
    border-radius: 10px;
    margin: 0px auto 40px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-sec .section-heading img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-bottom: 20px;
}

.about-sec .section-heading .section-title {
    color: var(--white);
}

.about-sec .section-heading .section-title::before {
    background-color: var(--white);
}

.about-sec .section-heading h2 {
    color: var(--white);
}

.about-sec .section-heading p {
    width: 100%;
    opacity: 0.8;
    font-size: 20px;
    font-weight: 300;
    max-width: 1050px;
    color: var(--white);
    margin-bottom: 30px;
}

.inner-about-sec {
    padding: 100px 0px;
}

.about-text {
    gap: 15px;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    margin-bottom: -10px;
}

.about-text p {
    font-size: 20px;
    line-height: 1.5;
}




/* about-sec */

/* service-sec */


.service-sec {
    padding: 100px 0px 0px;
}

.serviceSlider .slick-slide {
    opacity: 0;
    margin: 0px 10px;
}

.serviceSlider .slick-slide.slick-active {
    opacity: 1;
}

.serviceSlider .slick-list {
    overflow: visible;
}

.service-box {
    height: 550px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.33);
}

.service-box:hover .service-box-img img {
    transition: ease-in;
    transform: scale(1.1);
    transition-duration: 0.5s;
}

.service-box-img {
    width: 100%;
    height: 100%;
}

.service-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-box-text {
    left: 0;
    bottom: 0;
    width: 90%;
    padding: 25px;
    max-width: 340px;
    position: absolute;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.service-box-text h4 {
    overflow: hidden;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    transition: ease-in-out;
    transition-duration: 0.5s;
    -webkit-box-orient: vertical;
}

.service-box-text p {
    height: 50px;
    font-size: 14px;
    overflow: hidden;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    transition: ease-in-out;
    transition-duration: 0.5s;
    -webkit-box-orient: vertical;
}

.service-box-btn {
    padding: 5px;
    font-size: 16px;
    position: relative;
    color: var(--black);
    transition: ease-in-out;
    transition-duration: 0.5s;
    font-family: 'Komrile-Regular';
}

.service-box-btn::before {
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.service-box:hover .service-box-text {
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.service-box:hover .service-box-text h4 {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
}

.service-box:hover .service-box-text p {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
}

.service-box:hover .service-box-text .service-box-btn {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
}

.service-box:hover .service-box-text .service-box-btn::before {
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.inner-service-sec .service-box {
    margin: 13px 0px;
}

.service-sec.inner-service-sec {
    padding: 100px 0px;
}

/* service-sec */

/* secrive-detail-sec */

.secrive-detail-sec {
    padding: 100px 0px;
}

.service-detail img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 0px;
    margin-bottom: 40px;
}

.service-detail h2 {
    font-size: 60px;
    margin-bottom: 5px;
    color: var(--headingColor);
}

.service-detail p {
    margin-bottom: 25px;
}

/* secrive-detail-sec */

/* InnerPage Contact Us start */

.contact-pag-form form {
    position: relative;
}

.contact-pag-form .form-group {
    position: relative;
}

.contact-pag-form .form-group::after {
    content: "";
    height: 53px;
    width: 10px;
    position: absolute;
    left: 46px;
    top: 5px;
    background-size: 10px 50px;
    background-image: url(../images/aroow-forward.png);
    background-repeat: no-repeat;
}

.contact-pag-form .form-group1::after {
    content: "";
    height: 53px;
    width: 10px;
    position: absolute;
    right: 40px;
    top: 5px;
    left: unset;
    transform: rotate(180deg);
    background-size: 10px 50px;
    background-image: url(../images/aroow-forward.png);
    background-repeat: no-repeat;
}

.contact-pag-form form input.form-control {
    height: 60px;
    display: flex;
    line-height: 0;
    font-size: 15px;
    box-shadow: none;
    font-weight: 400;
    margin-top: 26px;
    border-radius: 0px;
    padding-left: 65px;
    color: var(--textColor);
    border: 1px solid #bdbdbd;
    background-color: transparent;
}

.contact-pag-form form select.form-control {
    height: 60px;
    font-size: 15px;
    padding-left: 25px;
    border: 1px solid #bdbdbd;
    box-shadow: none;
    color: black;
    font-weight: 400;
    background-color: transparent;
    margin-top: 20px;
    display: flex;
    border-radius: 5px;
}

.contact-pag-form .form-group:before {
    content: "";
    position: absolute;
    background-image: url(../images/contact-line.png);
    width: 8px;
    height: 47px;
    background-repeat: no-repeat;
    left: 40px;
    top: 5px;
}

.contact-pag-form .form-group:before {
    content: "";
    position: absolute;
    background-image: url(../images/contact-line.png);
    width: 50px;
    height: 50px;
}

.contact-pag-form form input.form-control::placeholder {
    color: #909091;
}

.contact-main-sec .them-btn-1:hover {
    background-color: #00006d;
    transition: 0.3s all;
}

.contact-pag-form form textarea.form-control {
    font-size: 15px;
    padding-left: 65px;
    padding-top: 20px;
    border: 1px solid #c6c6c6;
    letter-spacing: 0;
    box-shadow: none;
    resize: unset;
    background-color: transparent;
    margin-top: 20px;
    color: #000000;
    border-radius: inherit;
    border-radius: 6px;
    height: 150px;
    scroll-behavior: unset;
    position: relative;
}

.contact-pag-form .detailss {
    position: relative;
}

.contact-pag-form .detailss i {
    top: 23px;
    left: 15px;
    font-size: 16px;
    position: absolute;
    color: var(--themeColor);
}

.contact-pag-form .email {
    padding: 0;
}

.contact-pag-form h4 {
    font-size: 62px;
    line-height: 70px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
}

.contact-pag-form form textarea.form-control::placeholder {
    color: #909091;
}

.contact-pag-form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #909091;
}

.contact-pag-form ::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(18, 28, 42, 0.55);
}

.contact-pag-form :-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(18, 28, 42, 0.55);
}

.contact-pag-form :-moz-placeholder {
    /* Firefox 18- */
    color: rgba(18, 28, 42, 0.55);
}

.cicle-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border: transparent;
    height: 70px;
    width: 70px;
    border-radius: 50px;
    color: var(--themeColor);
    background: var(--white);
    border: 1px solid var(--themeColor);
}

.cicle-icon img {
    margin: 0 auto;
}

.contact-info {
    width: 100%;
    padding: 30px;
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    justify-content: flex-start;
    background: var(--themeColor);
    border: 1px solid var(--themeColor);
}

.contact-main-sec h4 {
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 0px;
}

.contact-main-sec p span {
    display: block;
}

.contact-main-sec h2 {
    margin: 0;
    font-size: 23px;
    color: black;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 40px;
}

.contact_text h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    color: var(--white);
    font-family: 'Poppins';
}

.contact_text p {
    font-size: 22px;
    line-height: 25px;
    color: #8b8b8b;
    padding-top: 0px;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact_text p a {
    display: block;
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    transition: 0.5s ease-in-out;
}

.mailt {
    padding-left: 30px;
}

.contact_text a:hover {
    color: #ffffff;
}

.contact_text p a.email-text:hover {
    /*color: #8b8b8b;*/
}

.contact-us {
    padding: 6% 0;
}

.contact-head {
    text-align: center;
}

.contact-head h2 {
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
}

.lg-btn {
    width: 100%;
}

.cp {
    font-size: 17px;
    line-height: 27px;
}

.contact_heading {
    margin-bottom: 30px;
}

.contact_heading h2 {
    font-size: 45px;
    color: #000000;
    font-weight: bolder;
}

.contact-side-bar {
    padding-top: 0;
    margin-left: 20px;
}

.contact-main-sec {
    padding: 100px 60px 100px;
}

.contact-pag-form .form-group i {
    top: 21px;
    left: 17px;
    font-size: 16px;
    position: absolute;
    color: var(--themeColor);
}

.contact-pag-form .form-group1 i {
    right: 13px;
    left: unset;
    color: #7f7f7f;
    pointer-events: none;
}

.contact-pag-form {
    margin-top: 0;
}

.contact-pag-form button {
    margin-top: 30px;
}

.contact-pag-form .detailss::after {
    top: 5px;
    left: 46px;
    content: "";
    width: 10px;
    height: 53px;
    position: absolute;
    background-size: 10px 50px;
    background-image: url(../images/aroow-forward.png);
    background-repeat: no-repeat;
}

.cicle-icon {
    margin: 0 17px 0 0;
}

.contact-side-bar h4 {
    padding: 0 0 26px 0;
}

section.contact-main-sec button.btn-1 {
    margin: unset;
    margin-top: 30px;
    background-color: #1c1c1c;
}

section.contact-main-sec .container-fluid {
    padding: 0 4% !important;
}

/* InnerPage Contact Us end */


/* package-sec */

.package-sec {
    padding: 100px 0px;
}

.section-heading-2 {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    align-items: flex-end;
    justify-content: space-between;
}

.section-heading-2 .section-heading-2-text {
    max-width: 580px;
}

.packageSlider .slick-slide {
    opacity: 0;
    margin: 0px 10px;
}

.packageSlider .slick-list {
    overflow: visible;
}

.packageSlider .slick-slide.slick-active {
    opacity: 1;
}

.package-box {
    overflow: hidden;
    border-radius: 0px;
    border: 1px solid #cccccc;
}

.package-box-heading {
    overflow: hidden;
    padding: 30px 28px;
    position: relative;
    transition: ease-in;
    transition-duration: 0.5s;
}

.package-box-heading::before {
    top: -40px;
    right: -60px;
    content: '';
    width: 200px;
    height: auto;
    filter: blur(10px);
    position: absolute;
    aspect-ratio: 1 / 1;
    animation: opacity 4s ease-in-out infinite;
    background: radial-gradient(circle, #ffffff4a 0%, #ffffff00 74%);
}

.package-box-heading::after {
    left: -40px;
    content: '';
    width: 200px;
    height: auto;
    bottom: -60px;
    position: absolute;
    filter: blur(10px);
    aspect-ratio: 1 / 1;
    animation: opacity 4s ease-in-out infinite;
    background: radial-gradient(circle, #ffffff4a 0%, #ffffff00 74%);
}

@keyframes opacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.package-box-heading h3 {
    margin-bottom: 10px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.package-box-heading h2 {
    font-size: 40px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.package-box-heading h2 span {
    font-size: 14px;
    font-family: 'Poppins';
    transition: ease-in;
    transition-duration: 0.5s;
    color: var(--textColor);
}

.package-box-heading p {
    font-size: 14px;
    transition: ease-in;
    transition-duration: 0.5s;
    margin-bottom: 20px;
}

.package-box-list {
    padding: 30px;
    position: relative;
    transition: ease-in;
    transition-duration: 0.5s;
}

.package-box-list::before {
    left: 0;
    top: -1px;
    z-index: -1;
    content: '';
    height: 1px;
    margin: 0px 17px;
    position: absolute;
    width: calc(100% - 30px);
    background-color: #ccc;
}

.package-box-list h6 {
    margin-bottom: 20px;
}

.package-box-list ul {
    gap: 15px;
    display: flex;
    margin-bottom: 30px;
    transition: ease-in;
    flex-direction: column;
    align-items: flex-start;
    transition-duration: 0.5s;
    justify-content: space-between;
}

.package-box-list ul li {
    padding-left: 30px;
    position: relative;
    transition: ease-in;
    transition-duration: 0.5s;
}

.package-box-list ul li::before {
    left: 0;
    top: 2px;
    width: 20px;
    content: '';
    height: 20px;
    position: absolute;
    transition: ease-in;
    transition-duration: 0.5s;
    background-image: url(../images/star.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.package-box-list ul li p {
    color: var(--black);
    transition: ease-in;
    transition-duration: 0.5s;
}

.package-box:hover,
.packageSlider .slick-slide.slick-current.slick-active.slick-center .package-box {
    transition: ease-in-out;
    transition-duration: 0.5s;
    border: 1px solid var(--white);
    background-color: var(--white);
    box-shadow: 0px 9px 87px 0px rgba(14, 14, 14, 0.13);
}

.package-box:hover .package-box-heading,
.packageSlider .slick-slide.slick-current.slick-active.slick-center .package-box .package-box-heading {
    border-radius: 0px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.package-box:hover .package-box-heading h2,
.package-box:hover .package-box-heading h3,
.package-box:hover .package-box-heading h2 span,
.packageSlider .slick-slide.slick-current.slick-active.slick-center .package-box .package-box-heading h2,
.packageSlider .slick-slide.slick-current.slick-active.slick-center .package-box .package-box-heading h3,
.packageSlider .slick-slide.slick-current.slick-active.slick-center .package-box .package-box-heading h2 span {
    color: var(--white);
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.package-box:hover .package-box-heading p,
.packageSlider .slick-slide.slick-current.slick-active.slick-center .package-box .package-box-heading p {
    opacity: 0.8;
    color: var(--white);
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.package-slider-btn {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.package-slider-btn button {
    width: 55px;
    height: 55px;
    display: flex;
    font-size: 22px;
    border-radius: 50%;
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    transition: ease-in-out;
    color: var(--themeColor);
    transition-duration: 0.5s;
    transition-duration: 0.5s;
    background-color: var(--white);
    border: 1px solid var(--themeColor);
}

.package-slider-btn button:hover {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.package-sec.inner-package-sec {
    padding: 100px 0px;
}

.inner-package-sec .package-box {
    margin-bottom: 24px;
}


/* package-sec */

/* grief-sec */

.grief-sec {
    overflow: hidden;
    position: relative;
    padding: 100px 0px;
    background-image: url(../images/grief-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.grief-sec::before {
    top: 0;
    left: 0;
    width: 100%;
    content: '';
    height: 100%;
    opacity: 0.9;
    position: absolute;
    background-image: url(../images/grief-before.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.grief-text {
    z-index: 1;
    display: flex;
    max-width: 850px;
    padding: 65px 5%;
    margin: 0px auto;
    text-align: center;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
}

.grief-text p {
    max-width: 600px;
}

/* grief-sec */

/* meet-sec */

.meet-sec {
    padding: 100px 0px;
}

.meet-img {
    width: 100%;
    height: 600px;
    min-height: 100%;
}

.meet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meet-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.meet-text p {
    margin-bottom: 20px;
}

/* meet-sec */

/* qualification-sec */

.qualification-sec {
    padding: 100px 0px;
}

.qualification-sec .section-heading h5 {
    margin-bottom: 20px;
}

.qualification-box-img {
    width: 100%;
    height: 240px;
    padding: 24px;
    margin-bottom: 30px;
    border: 1px solid #c1c1c1;
    background-color: var(--white);
}

.qualification-box-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qualification-box h4 {
    font-size: 22px;
    padding-left: 30px;
    position: relative;
}

.qualification-box h4::before {
    top: 0;
    left: 0;
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url(../images/star.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.qualification-box ul {
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

/* qualification-sec */

/* book sec */

.inner-booking-sec {
    padding: 100px 0;
}

.inner-booking-heading {
    text-align: center;
    margin-bottom: 25px;
}

.inner-booking-heading h2 {
    margin-bottom: 10px;
}

.inner-booking-heading p {
    color: #919191;
    font-weight: 500;
    width: 90%;
    margin: 0 auto;
}

.inner-booking-input {
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
}

.inner-booking-input input,
.inner-booking-input select {
    width: 100%;
    height: 60px;
    outline: none;
    font-size: 15px;
    padding: 0 20px;
    border-radius: 0px;
    background: var(--white);
    transition: all 0.3s ease;
    color: var(--headingColor);
    border: 1px solid #bdbdbe;
    background-color: var(--bodyBg);
}

.inner-booking-input textarea {
    width: 100%;
    resize: none;
    padding: 20px;
    height: 160px;
    outline: none;
    font-size: 15px;
    border-radius: 0px;
    background: var(--white);
    color: var(--headingColor);
    transition: all 0.3s ease;
    border: 1px solid #bdbdbd;
    background-color: var(--bodyBg);
}

.inner-booking-input input::placeholder,
.inner-booking-input textarea::placeholder {
    color: #9e9e9e;
}

.inner-booking-input input:hover,
.inner-booking-input select:hover,
.inner-booking-input textarea:hover {
    border-color: var(--headingColor);
}

.inner-booking-input input:focus,
.inner-booking-input select:focus,
.inner-booking-input textarea:focus {
    transform: translateY(-2px);
    border-color: var(--themeColor);
    box-shadow: 0 0 10px #e58b8e52;
}

.inner-booking-input label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 14px;
    pointer-events: none;
    transition: 0.3s ease;
    background: #171717;
    padding: 0 5px;
}

.inner-booking-input input:focus+label,
.inner-booking-input input:valid+label,
.inner-booking-input textarea:focus+label,
.inner-booking-input textarea:valid+label {
    top: 0;
    font-size: 12px;
    color: var(--themeColor);
}

.inner-booking-form-input-icon {
    top: 1px;
    right: 1px;
    width: 60px;
    height: 58px;
    display: flex;
    transition: 0.3s;
    position: absolute;
    align-items: center;
    pointer-events: none;
    justify-content: center;
    color: var(--themeColor);
    background: var(--bodyBg);
}

.inner-booking-input input:focus~.inner-booking-form-input-icon,
.inner-booking-input select:focus~.inner-booking-form-input-icon {
    color: var(--themeColor);
    transform: translateY(-2px);
}

.inner-booking-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-booking-button button:active {
    transform: scale(0.97);
}

/* book sec */

/* privacy-sec */

.privacy-sec {
    padding: 100px 0px;
}

.privacy-text h2 {
    margin-bottom: 5px;
}

.privacy-text p {
    margin-bottom: 30px;
}

.privacy-text p:last-child {
    margin-bottom: 0px;
}

.privacy-text ul {
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.privacy-text ul li {
    padding-left: 25px;
    position: relative;
}

.privacy-text ul li::before {
    left: 0;
    top: 3px;
    width: 20px;
    content: '';
    height: 20px;
    position: absolute;
    background-image: url(../images/star.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* privacy-sec */

/* review sec */

.review-sec {
    padding: 100px 0px;
}

.review-sec .section-heading-2 {
    gap: 0px;
}

.reviewSlider .slick-slide {
    margin: 0px 1px;
}

.reviewSlider .slick-next {
    right: 0;
    top: 30px;
    z-index: 1;
    width: 65px;
    height: 65px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--themeColor);
}

.reviewSlider .slick-prev {
    top: 30px;
    z-index: 1;
    left: unset;
    right: 80px;
    width: 65px;
    height: 65px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--themeColor);
}

.reviewSlider .slick-next::before,
.reviewSlider .slick-prev::before {
    width: 30px;
    content: '';
    height: 20px;
    background-image: url(../images/btn-arrow.png);
    background-size: contain;
}

.reviewSlider .slick-next::before {
    transform: rotate(180deg);
}

.reviewProfileSlider .slick-slide {
    margin: 0px 1px;
}

.reviewSliderSlider .slick-slide {
    opacity: 1;
    margin: 0px 10px;
}

.review-profile-main-box {
    gap: 10px;
    display: flex;
}

.reviewProfileSlider {
    max-width: 330px;
}

.reviewSliderSlider {
    max-width: 400px;
}

.review-box>img {
    height: 70px;
    opacity: 0.1;
    width: fit-content;
    margin-bottom: 10px;
    object-fit: contain;
}

.review-box-text {
    height: 100px;
    margin-top: 30px;
    overflow-y: auto;
}

.review-box-text p {
    font-size: 18px;
    font-style: italic;
}

.review-box-star {
    gap: 3px;
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: flex-start;
}

.review-box-star i {
    color: #f9ae0e;
}

.review-profile-box {
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
}

.review-profile-box::before {
    left: 0;
    bottom: 0;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    background: linear-gradient(0deg, #000000ba 0%, #00000000 70%);
}

.review-profile-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-profile-box h3 {
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 35px 20px;
    text-align: center;
    position: absolute;
    color: var(--white);
    text-transform: uppercase;
}

.review-slider-side-box h3 {
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    padding: 35px 20px;
    text-align: center;
    position: absolute;
    color: var(--white);
    align-items: center;
    writing-mode: sideways-lr;
    text-transform: uppercase;
}

.review-slider-side-box {
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
}

.review-slider-side-box::before {
    left: 0;
    bottom: 0;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    background: linear-gradient(0deg, #000000ba 0%, #00000000 70%);
}

.review-slider-side-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* review sec */

/* footer  */

.footerSec {
    padding: 80px 0px 0px;
    background-color: var(--headingColor2);
}

.footer-logo,
section#media_image-2 a img {
    height: 130px !important;
    display: block;
    width: fit-content;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 100%;
    width: fit-content;
    object-fit: contain;
}

.footer-text p {
    opacity: 0.8;
    font-size: 14px;
    max-width: 520px;
    color: var(--white);
    margin-bottom: 30px;
}

.footer-text ul {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-text ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    border: 1px solid #ffffff91;
    background-color: var(--headingColor2);
}

.footer-text ul li a:hover {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    border: 1px solid var(--themeColor);
    background-color: var(--themeColor);
}

.foot-links {
    padding-left: 20%;
}

.foot-links h3,
.footer-contact h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.foot-links ul {
    gap: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.foot-links ul li a {
    opacity: 0.8;
    line-height: 30px;
    color: var(--white);
}

.foot-links ul li a:hover {
    opacity: 1;
}

.footer-contact ul {
    gap: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.footer-contact ul li a {
    gap: 10px;
    opacity: 0.8;
    display: flex;
    line-height: 30px;
    color: var(--white);
    align-items: baseline;
    justify-content: flex-start;
}

.footer-contact ul li a:hover {
    color: var(--white);
}

.footer-contact ul li a i {
    font-size: 20px;
}

.copy-txt {
    margin-top: 40px;
    padding: 30px 0px;
    border-top: 1px solid #ffffff71;
}

.copy-txt p {
    text-align: center;
    color: var(--white);
}

/* footer  */

html {
    overflow-x: hidden;
}

/*Media Query Start*/

@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) {


    .theme-btn-2 {
        font-size: 14px;
        padding: 18px 30px;
    }

    h1 {
        font-size: 45px;
    }

    h2 {
        font-size: 40px;
    }

    .menuSection {
        padding: 10px 0px;
    }

    .header-logo {
        height: 80px;
    }

    p {
        font-size: 13px;
    }

    .banner_text p {
        margin-bottom: 10px;
    }

    .main_slider .container {
        padding-top: 130px;
        padding-bottom: 60px;
    }

    .meet-sec {
        padding: 70px 0px;
    }

    .about-text p {
        font-size: 16px;
    }

    .inner-about-sec {
        padding: 70px 0px;
    }

    .grief-sec {
        padding: 70px 0px;
    }

    .grief-text {
        padding: 45px 5%;
    }

    .footer-contact ul li a {
        font-size: 12px;
    }

    .foot-links ul li a {
        font-size: 12px;
        line-height: 25px;
    }

    .footerSec {
        padding: 60px 0px 0px;
    }

    .review-sec {
        padding: 70px 0px;
    }

    .contact-main-sec {
        padding: 70px 0px;
    }

    .inner-booking-sec {
        padding: 70px 0px;
    }

    .package-sec.inner-package-sec {
        padding: 70px 0px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .theme-btn-2 {
        font-size: 14px;
        padding: 18px 30px;
    }

    h1 {
        font-size: 45px;
    }

    h2 {
        font-size: 40px;
    }

    .menuSection {
        padding: 10px 0px;
    }

    .header-logo {
        height: 80px;
    }

    p {
        font-size: 13px;
    }

    .banner_text p {
        margin-bottom: 10px;
    }

    .main_slider .container {
        padding-top: 130px;
        padding-bottom: 60px;
    }

    .meet-sec {
        padding: 60px 0px;
    }

    .about-text p {
        font-size: 16px;
    }

    .inner-about-sec {
        padding: 60px 0px;
    }

    .grief-sec {
        padding: 60px 0px;
    }

    .grief-text {
        padding: 45px 5%;
    }

    .footer-contact ul li a {
        font-size: 12px;
    }

    .foot-links ul li a {
        font-size: 12px;
        line-height: 25px;
    }

    .footerSec {
        padding: 60px 0px 0px;
    }

    .review-sec {
        padding: 60px 0px;
    }

    .contact-main-sec {
        padding: 60px 0px 60px;
    }

    .inner-booking-sec {
        padding: 60px 0px;
    }

    .package-sec.inner-package-sec {
        padding: 60px 0px;
    }





}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    h1 {
        font-size: 35px;
    }

    p {
        font-size: 12px;
        line-height: 20px;
    }

    .banner_text p {
        margin-bottom: 10px;
    }

    h2 {
        font-size: 30px;
    }

    .main_slider .container {
        min-height: 600px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .menuSection {
        padding: 10px 0px;
        position: relative;
        background: var(--headingColor);
    }

    .theme-btn-2 {
        font-size: 12px;
        padding: 12px 20px;
    }

    .menuSection .custom-order-1 {
        order: 2;
    }

    .menuSection .custom-order-2 {
        order: 1;
    }

    .menuSection .custom-order-3 {
        order: 3;
    }

    .header-logo {
        height: 80px;
        margin-bottom: 15px;
    }

    .main_slider .row .col-12 {
        padding: 0px;
    }

    .meet-sec {
        padding: 40px 0px 0px;
    }

    .meet-img {
        height: 500px;
    }

    .meet-text {
        margin-top: 15px;
    }

    .meet-text p {
        margin-bottom: 10px;
    }

    .footerSec {
        padding: 40px 0px 0px;
    }

    .foot-links {
        padding-left: 0%;
        margin: 15px 0px;
    }

    .footer-contact ul li a {
        font-size: 12px;
    }

    .footer-contact ul li a i {
        font-size: 14px;
    }

    .foot-links ul li a {
        font-size: 12px;
        line-height: 25px;
    }

    .copy-txt {
        margin-top: 30px;
        padding: 20px 0px;
    }

    section.main_slider.inner-banner .container {
        min-height: 350px;
    }

    .inner-about-sec {
        padding: 40px 0px;
    }

    .about-img {
        max-width: 290px;
    }

    .about-text p {
        font-size: 12px;
        line-height: 20px;
    }

    .grief-sec {
        padding: 40px 0px;
    }

    .grief-text {
        padding: 35px 3%;
    }

    .review-sec {
        padding: 40px 0px;
    }

    .reviewSlider .slick-next,
    .reviewSlider .slick-prev {
        width: 45px;
        height: 45px;
    }

    .reviewSlider .slick-next::before,
    .reviewSlider .slick-prev::before {
        width: 20px;
        height: 13px;
    }

    .reviewSlider .slick-prev {
        right: 55px;
    }

    .review-box>img {
        height: 50px;
    }

    .review-box-text p {
        font-size: 12px;
    }

    .review-box-star {
        margin-top: 10px;
    }

    .inner-booking-sec {
        padding: 40px 0;
    }

    .inner-booking-input {
        margin-bottom: 15px;
    }

    .inner-booking-input input,
    .inner-booking-input select {
        height: 50px;
        font-size: 12px;
        padding: 0 20px;
    }

    .inner-booking-form-input-icon {
        width: 50px;
        height: 48px;
    }

    .service-sec.inner-service-sec {
        padding: 40px 0px;
    }

    .service-box-text p {
        height: 40px;
    }

    .service-detail h2 {
        font-size: 30px;
    }

    .secrive-detail-sec {
        padding: 40px 0px;
    }

    .service-detail p:last-child {
        margin-bottom: 0px;
    }

    .privacy-sec {
        padding: 40px 0px;
    }

    .privacy-text p {
        margin-bottom: 15px;
    }

    .privacy-text ul li::before {
        top: 2px;
        width: 15px;
        height: 15px;
    }

    .package-sec.inner-package-sec {
        padding: 40px 0px;
    }

    .package-box-heading {
        padding: 20px 18px;
    }

    .package-box-list {
        padding: 20px;
    }

    .qualification-sec {
        padding: 40px 0px;
    }

    .qualification-box h4 {
        font-size: 16px;
    }

    .menuSec .menu-box>nav a {
        font-size: 14px;
    }

    .menuSec ul li a {
        gap: 10px;
        font-size: 16px;
    }

    .contact-main-sec {
        padding: 40px 0px 40px;
    }

    .contact-side-bar {
        padding-top: 30px;
        margin-left: 0px;
    }

    .contact-info {
        padding: 10px;
    }

    .contact_text h2 {
        font-size: 18px;
        line-height: 25px;
    }

    .contact_text p a {
        font-size: 12px;
    }

    .cicle-icon i {
        font-size: 16px;
        height: 50px;
        width: 50px;
    }







}

@media only screen and (min-width: 0px) and (max-width: 575px) {

    h1 {
        font-size: 35px;
    }

    p {
        font-size: 12px;
        line-height: 20px;
    }

    .banner_text p {
        margin-bottom: 10px;
    }

    h2 {
        font-size: 30px;
    }

    .main_slider .container {
        min-height: 600px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .menuSection {
        padding: 10px 0px;
        position: relative;
        background: var(--headingColor);
    }

    .theme-btn-2 {
        font-size: 12px;
        padding: 12px 20px;
    }

    .menuSection .custom-order-1 {
        order: 2;
    }

    .menuSection .custom-order-2 {
        order: 1;
    }

    .menuSection .custom-order-3 {
        order: 3;
    }

    .header-logo {
        height: 80px;
        margin-bottom: 15px;
    }

    .main_slider .row .col-12 {
        padding: 0px;
    }

    .meet-sec {
        padding: 40px 0px 0px;
    }

    .meet-img {
        height: 500px;
    }

    .meet-text {
        margin-top: 15px;
    }

    .meet-text p {
        margin-bottom: 10px;
    }

    .footerSec {
        padding: 40px 0px 0px;
    }

    .foot-links {
        padding-left: 0%;
        margin: 15px 0px;
    }

    .footer-contact ul li a {
        font-size: 12px;
    }

    .footer-contact ul li a i {
        font-size: 14px;
    }

    .foot-links ul li a {
        font-size: 12px;
        line-height: 25px;
    }

    .copy-txt {
        margin-top: 30px;
        padding: 20px 0px;
    }

    section.main_slider.inner-banner .container {
        min-height: 350px;
    }

    .inner-about-sec {
        padding: 40px 0px;
    }

    .about-img {
        max-width: 290px;
    }

    .about-text p {
        font-size: 12px;
        line-height: 20px;
    }

    .grief-sec {
        padding: 40px 0px;
    }

    .grief-text {
        padding: 35px 3%;
    }

    .review-sec {
        padding: 40px 0px;
    }

    .reviewSlider .slick-next,
    .reviewSlider .slick-prev {
        width: 45px;
        height: 45px;
    }

    .reviewSlider .slick-next::before,
    .reviewSlider .slick-prev::before {
        width: 20px;
        height: 13px;
    }

    .reviewSlider .slick-prev {
        right: 55px;
    }

    .review-box>img {
        height: 50px;
    }

    .review-box-text p {
        font-size: 12px;
    }

    .review-box-star {
        margin-top: 10px;
    }

    .inner-booking-sec {
        padding: 40px 0;
    }

    .inner-booking-input {
        margin-bottom: 15px;
    }

    .inner-booking-input input,
    .inner-booking-input select {
        height: 50px;
        font-size: 12px;
        padding: 0 20px;
    }

    .inner-booking-form-input-icon {
        width: 50px;
        height: 48px;
    }

    .service-sec.inner-service-sec {
        padding: 40px 0px;
    }

    .service-box-text p {
        height: 40px;
    }

    .service-detail h2 {
        font-size: 30px;
    }

    .secrive-detail-sec {
        padding: 40px 0px;
    }

    .service-detail p:last-child {
        margin-bottom: 0px;
    }

    .privacy-sec {
        padding: 40px 0px;
    }

    .privacy-text p {
        margin-bottom: 15px;
    }

    .privacy-text ul li::before {
        top: 2px;
        width: 15px;
        height: 15px;
    }

    .package-sec.inner-package-sec {
        padding: 40px 0px;
    }

    .package-box-heading {
        padding: 20px 18px;
    }

    .package-box-list {
        padding: 20px;
    }

    .qualification-sec {
        padding: 40px 0px;
    }

    .qualification-box h4 {
        font-size: 16px;
    }

    .menuSec .menu-box>nav a {
        font-size: 14px;
    }

    .menuSec ul li a {
        gap: 10px;
        font-size: 16px;
    }

    .contact-main-sec {
        padding: 40px 0px 40px;
    }

    .contact-side-bar {
        padding-top: 30px;
        margin-left: 0px;
    }

    .contact-info {
        padding: 10px;
    }

    .contact_text h2 {
        font-size: 18px;
        line-height: 25px;
    }

    .contact_text p a {
        font-size: 12px;
    }

    .cicle-icon i {
        font-size: 16px;
        height: 50px;
        width: 50px;
    }

.review-box-text {
    height: 130px;
}


}

/*Media Query End*/