@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px "Montserrat", sans-serif;
    color: #393939;
    overflow-x: hidden;
}

:root {
    --primary-color: #992e4e;
    --sec-color: #f5d136;
}

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 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 400;
    line-height: 25px;
    color: #000000;
    font-size: 14px;
}


/***** Font Files *****/

@font-face {
    font-family: 'Oswald-SemiBold';
    src: url(../fonts/Oswald-SemiBold.ttf);
    font-weight: 600;

}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}


.theme_btn {
    border-radius: 40px;
    color: #fff;
    z-index: 1;
    position: relative;
    font-size: 13px;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: 0.5s;
    overflow: hidden;
    border: 1px solid #fff;
    text-transform: uppercase;
    height: 55px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px 0px 15px;
    font-weight: 400;
    gap: 20px;
    background: #0b0b0b;
}

.theme_btn:hover {
    background: transparent;
    color: #000;
    background: #f5d136;
}

.theme_btn span img {
    width: auto;
    height: auto;
}

.theme_btn span {
    width: 40px;
    height: 40px;
    background: var(--sec-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.theme_btn:hover span {
    background: #fff;
}

.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: 'Oswald-SemiBold';
    font-size: 48px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 17px;
    font-style: italic;
}

h2 {
    font-family: 'Oswald-SemiBold';
    font-size: 75px;
    line-height: 1.2;
    color: #000;
    margin: 0 0 20px;
}

h3 {
    font-family: 'Oswald-SemiBold';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 28px;
}

h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

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 css start */

.menuSec {
    padding: 10px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 40px;
}

.menuSec ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
}

.menuSec li:hover ul {
    opacity: 1;
}

.menuSec ul li a {
    position: relative;
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    text-transform: uppercase;
}

.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: #992e4e;
}

.menuSec li>ul {
    position: absolute;
    z-index: 0;
    background-color: #000000;
    left: 0px;
    width: 200px;
    text-align: left;
    top: -80px;
    opacity: 0;
    transition: 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.menuSec li:hover ul {
    transition: 0.5s ease-in-out;
    top: 40px;
    z-index: 99;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    font-size: 13px;
    line-height: 20px;
    width: 100%;
}

.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;
    width: 100%;
}

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

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */

/* ++++++++++++++++++++++++++++++++++ Home ++++++++++++++++++++++++++++++++++ */
section.banner {
    position: relative;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
    width: 42%;
}

section.banner:before {
    position: absolute;
    content: '';
    background: var(--primary-color);
    width: 48%;
    left: 0;
    height: 64%;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 0 330px 330px 0;
}

section.banner:after {
    position: absolute;
    content: '';
    background: #fff;
    width: 49%;
    left: 0;
    height: 64%;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 0 330px 330px 0;
    z-index: -1;
}

.ban-imgs {
    display: flex;
}

.ban-imgs img:first-child {
    width: 35%;
    border-radius: 0 400px 400px 0;
    border-left: 0;
}

.ban-imgs img {
    height: 740px;
    object-fit: cover;
    border: 10px solid #fff;
    box-shadow: 0 0 10px #ccc;
    z-index: -1;
}

.ban-imgs img:last-child {
    width: 65%;
    border-radius: 400px 0 0 400px;
    border-right: 0;
}

h1 span {
    font-size: 87px;
    display: block;
    text-transform: capitalize;
}

.banner-text p {
    color: #fff;
    width: 80%;
}

section.about-us {
    padding: 80px 0;
}

.abt-text h2 {
    font-size: 90px;
    font-style: italic;
}

section.about-us .row {
    align-items: center;
}

.abt-img img {
    width: 90%;
    height: 630px;
    border-radius: 320px 320px 0 0;
    margin: 0 auto;
    display: block;
    border: 10px solid #fff;
    box-shadow: 0 0 10px #ccc;
    object-fit: cover;
}

.abt-chk {
    background: #992e4e;
    padding: 40px 30px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.abt-chk ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    gap: 30px;
}

.abt-chk ul li {
    width: 47%;
    display: flex;
    gap: 10px;
}

.abt-chk ul li>div h3 {
    color: #fff;
    margin: 0;
    line-height: 1;
    font-size: 22px;
    font-style: italic;
    margin-bottom: 4px;
}

.abt-chk ul li>div p {
    line-height: 19px;
    color: #fff;
    font-size: 13px;
    margin: 0;
}

.services {
    padding: 80px 0;
    background: #f5f6f1;
    border-radius: 110px 110px 0 0;
}

.top-head {
    text-align: center;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 40px;
}

.service-item {
    border: 2px solid #c7929fb0;
    border-radius: 160px;
    margin: 20px 0;
    padding: 20px 10px 20px 20px;
    justify-content: space-between;
    cursor: pointer;
    background: #fafbf8;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.number {
    font-size: 40px;
    color: #f2c300;
    font-family: 'Oswald-SemiBold';
    width: 70px;
    display: block;
}

.title {
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    color: #232323;
}

.arrow {
    background: #f2c300;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transition: all 0.4s ease;
    transform: rotate(45deg);
}

/* Expanded state */
.service-item.active {
    background: #8c1d40;
    color: #fff;
    border-radius: 160px;
    padding: 40px 20px;
}

.service-item.active .number,
.service-item.active .title {
    color: #fff;
}

.service-item.active .arrow {
    background: #fff;
    transform: rotate(337deg);
    color: #8c1d40;
}

.service-content {
    width: 84%;
    display: flex;
    gap: 20px;
    align-items: center;
    text-align: left;
    transition: max-height 0.6s ease, opacity 0.4s ease, padding 0.3s ease;
    padding: 0 10px;
}

.service-item.active .service-content {
    max-height: 400px;
    opacity: 1;
    padding: 20px 10px 0px;
}

.service-content p {
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0;
    color: #fff;
    width: 100%;
}

.service-content img {
    width: 51%;
    border-radius: 20px;
    flex-shrink: 0;
}

.service-content p,
.service-content a,
.service-content img {
    display: none;
}

.service-item.active .service-content p,
.service-item.active .service-content a,
.service-item.active .service-content img {
    display: flex;
}

section.testimonial {
    padding: 80px 0;
}

section.testimonial .container-fluid {
    padding: 0 7%;
}

.testi-box {
    text-align: center;
    padding: 40px;
}

.testi-box span i {
    background: var(--sec-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    margin-bottom: 10px;
    font-size: 20px;
}

.testi-box h4 {
    color: #992e4e;
    font-size: 21px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 20px 0 7px;
}

.testi-box h5 {
    font-size: 16px;
    color: #7c7c7c;
}

.star {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.star i {
    color: #f5d136;
}

.testi-slider .slick-slide {
    opacity: 1;
}

.testi-slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active .testi-box {
    border: 1px solid #992e4e;
    border-radius: 20px;
}

.testi-slider .slick-prev:before,
.testi-slider .slick-next:before {
    position: absolute;
    content: '';
    background-image: url(../images/arr1.png);
    width: 23px;
    height: 11px;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(180deg);
}

.testi-slider .slick-next:before {
    transform: rotate(0deg);
}

.testi-slider .slick-prev,
.testi-slider .slick-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sec-color);
    border-radius: 50%;
}

.testi-slider .slick-prev.slick-disabled,
.testi-slider .slick-next.slick-disabled {
    background: #fff;
    border: 1px solid #ccc;
    opacity: 1;
}

.testi-slider .slick-prev {
    left: 33%;
    z-index: 9999;
}

.testi-slider .slick-next {
    right: 33.33%;
    z-index: 99;
}

section.contact .container-fluid {
    padding: 0;
}

.cnt-img {
    display: flex;
    /* margin: 0 0 80px 0; */
}

.cnt-img img {
    height: 740px;
    object-fit: cover;
    border: 6px solid #fff;
    box-shadow: 0 0 10px #ccc;
    z-index: -1;
}

.cnt-img img:first-child {
    width: 60%;
    border-radius: 0 400px 400px 0;
    border-left: 0;
}

.cnt-img img:last-child {
    width: 40%;
    border-radius: 400px 0 0 400px;
    border-right: 0;
}

section.contact {
    position: relative;
}

.contact-wrap {
    background: #992e4e;
    padding: 70px 100px 70px 190px;
    border-radius: 300px 0 0 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 0;
}

.contact-wrap h2 {
    font-size: 75px;
    color: #fff;
    text-transform: capitalize;
    font-style: italic;
}

.inp-cnt input,
.inp-cnt textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #c28295;
    border-radius: 30px;
    background: #942c4a;
    color: #fff;
    margin-bottom: 13px;
}

.inp-cnt input::placeholder,
.inp-cnt textarea::placeholder {
    color: #ffffff8f;
}

.inp-cnt textarea {
    height: 160px;
}

.contact-wrap:after {
    position: absolute;
    content: '';
    background: transparent;
    width: 100%;
    right: 0;
    height: 100%;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 330px 0 0 330px;
    z-index: -1;
    border-left: 13px solid #fff;
}

section.gallery {
    padding: 80px 0;
}

.gall-img img {
    width: 100%;
    border-radius: 30px;
}

.gall-img.gall-img2 img {
    height: 265px;
    margin-bottom: 20px;
}

.gall-img img {
    height: 550px;
}

/* footer start */

footer.footer-sec {
    position: relative;
    padding: 70px 0 0;
    width: 100%;
    background: #0b0b0b;
}


.footer-text.chg p {
    text-align: left;
    margin-top: 20px;
    color: #ffff;
    font-weight: 300;
}

.footer-text p {
    color: #ffffffc4;
}


ul.footer-link li a {
    font-size: 16px;
    color: #ffffffc4;
    line-height: 40px;
    font-weight: 300;
    text-transform: capitalize;
    font-family: montserrat;
}

ul.footer-link-list li i {
    font-size: 22px;
    color: #ffff;
}

ul.footer-link-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 23px;
}

ul.footer-link-list li p {
    font-size: 14px;
    color: #ffffffc4;
    font-weight: 400;
    line-height: 25px;
    margin: 0;
}

.footer-text.con-info {
    margin-left: 9%;
    width: 80%;
}

.footer-form {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    position: relative;
}

.footer-form input {
    width: 100%;
    height: 60px;
    padding: 15px;
    border: none;
    margin-bottom: 10px;
    color: #000;
    font-weight: 500;
    font-size: 17px;
    border-radius: 40px;
}

.footer-text.con-info {
    margin-left: 9%;
    width: 80%;
}



.footr-btn button {
    border: 0;
    margin: 0;
    width: 100%;
    font-size: 17px;
    color: #fff;
    font-weight: 400;
}


.footer-text.chg:before {
    display: none;
}

.footer-text.chg {
    padding: 0;
    margin: 0;
    padding-top: 0;
}

.footer-text {}



section.bottom-nav {
    padding: 15px 0;
    text-transform: capitalize;
    background: #0b0b0b;
    margin-top: 37px;
    border-top: 1px solid #ffffff78;
}

section.bottom-nav p {
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 30px;
    margin: 0;
    font-weight: 300;
}


.footer-text {
    position: relative;
}

ul.footer-link li {
    border-bottom: 1px solid transparent;
    width: 75%;
    transition: 1s ease-in-out;
}




ul.footer-link {}

ul.footer-link li {
    border-bottom: 1px solid transparent;
    width: 75%;
    transition: 1s ease-in-out;
}

ul.footer-link-list li {
    border-bottom: 1px solid #ffffff8a;
    padding-bottom: 13px;
    transition: 1s ease-in-out;
}

.footer-text ul.hdr-top-right-list {
    justify-content: start;
}



ul.hdr-top-left-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

ul.hdr-top-right-list {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.top_bar {
    padding: 15px 0;
    background: #2bbdcf
}

ul.hdr-top-right-list h6 {
    margin: 0;
}

ul.hdr-top-right-list li a {
    background: transparent;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 0;
    border: 1px solid #fff;
    transition: 0.3s ease-in-out;
    border-radius: 50%;
}

ul.hdr-top-right-list li a:hover {
    border: 1px solid #2f2929;
    transition: 0.3s ease-in-out;
    background-color: #f5d136;
    border-color: #000;
}

ul.hdr-top-right-list li a:hover i {
    transition: 0.3s ease-in-out;
    color: #000;
}

ul.hdr-top-right-list li a i {
    font-size: 20px;
}


.footer-text h5 {
    color: #fff;
    position: relative;
    z-index: 1;
    font-size: 30px;
    margin: 0 0 30px 0;
    font-family: 'Oswald-SemiBold';
}

.footr-btn button {
    padding: 0 30px;
    width: fit-content;
    color: #fff;
    height: 50px;
    border-radius: 40px;
    background: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
}

.footer-text.quick-links {
    width: 70%;
    margin: 0 auto;
}


/* footer end */
/*  ++++++++++++++++++++++++++++++++++ end ++++++++++++++++++++++++++++++++++ */



/* Inner Pages */
section.banner.inn-banner .ban-imgs img {
    height: 540px;
}

section.banner.inn-banner .ban-imgs img:first-child {
    width: 50%;
}

section.banner.inn-banner .ban-imgs img:last-child {
    width: 50%;
}

section.banner.inn-banner .banner-text {
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #992e4e;
    padding: 60px 40px;
    border-radius: 500px;
    text-align: center;
    border: 10px solid #fff;
}
section.banner.inn-banner::before {
    display: none;
}

section.banner.inn-banner::after {
    display: none;
}

section.banner.inn-banner .banner-text a {
    margin: 0 auto;
}
section.banner.inn-banner  .banner-text p {
    margin: 0 auto;
}
/*contact */


.contact-form form {
    position: relative;
}

.contact-form .form-group {
    position: relative;
}

.contact-form .form-group::after {
    content: '';
    height: 53px;
    width: 10px;
    position: absolute;
    left: 40px;
    top: 1px;
    background-size: 10px 50px;
    background-image: url(../images/aroow-forward.png);
    background-repeat: no-repeat;
}

.contact-form form input.form-control {
    height: 60px;
    font-size: 15px;
    padding-left: 55px;
    border: 1px solid #c6c6c6;
    line-height: 0;
    box-shadow: none;
    color: black;
    font-weight: 400;
    background-color: transparent;
    margin-top: 20px;
    display: flex;
    border-radius: 10px;
}

.contact-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-form .form-group:before {
    content: "";
    position: absolute;
    background-image: url(../images/contact-line.png);
    width: 50px;
    height: 50px;
}



.contact-form form input.form-control::placeholder {
    color: #909091;
}

.contact-main-sec .them-btn-1:hover {
    background-color: #00006d;
    transition: 0.3s all;

}

.contact-form form textarea.form-control {
    font-size: 15px;
    padding-left: 55px;
    padding-top: 13px;
    border: 1px solid #c6c6c6;
    letter-spacing: 0;
    box-shadow: none;
    resize: none;
    background-color: transparent;
    margin-top: 20px;
    color: #000000;
    border-radius: inherit;
    border-radius: 10px;
}

.contact-form .email {
    padding: 0;
}

.contact-form h4 {
    font-size: 62px;
    line-height: 70px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
}


.contact-form form textarea.form-control::placeholder {
    color: #909091;
}



.contact-form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #909091;
}

.contact-form ::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(18, 28, 42, 0.55);
}

.contact-form :-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(18, 28, 42, 0.55);
}

.contact-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;
    height: 70px;
    width: 70px;
    border-radius: 50px;
    background: #992e4e;
    color: #f5d136;
}

.cicle-icon img {
    margin: 0 auto;

}

.contact-info {
    background: transparent;
    width: 100%;
    display: inline-block;
    padding: 14px;
    margin-bottom: 10px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    margin-bottom: 25px;
    border: 1px solid #c6c6c6;
    border-radius: 20px;
}


.contact-main-sec h4 {
    font-size: 68px;
    color: #000000;
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: 0;
    font-family: 'Oswald-SemiBold';
    font-style: italic;
}

.contact-main-sec p span {
    display: block;
}

.contact-main-sec p {
    font-size: 16px;
    color: #000;
    margin-bottom: -5%;
}

.contact-main-sec h2 {
    margin: 0;
    font-size: 20px;
    color: #000000;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.contact_text {
    padding-top: 0px;
}

.contact_text p {
    font-size: 16px;
    line-height: 25px;
    color: #8b8b8b;
    padding-top: 0px;
    font-weight: 500;
    font-family: 'Montserrat';
    letter-spacing: 1px;
}

.contact_text p a {
    font-size: 16px;
    color: #8b8b8b;
    text-decoration: none;
    transition: 0.5s ease-in-out;
    margin-top: 3px;
    display: block;
}


.mailt {
    padding-left: 30px;
}

.contact_text a:hover {
    color: #8b8b8b;
}

.contact_text p a.email-text {
    font-size: 15px;
    color: #8b8b8b;
}

.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: 50px;
}

.contact-main-sec {
    padding: 100px 0;
}

.contact-main-sec .them-btn-1 {
    margin-top: 20px;
    border: none;
    padding: 12px 20px;
    background-color: #ff0000;
    color: white;
    border-radius: 25px;
}

.b-img img {
    border-radius: 20px;
}

.contact-form .form-group i {
    position: absolute;
    top: 20px;
    left: 13px;
    font-size: 20px;
    background: #992e4e;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form {
    margin-top: 23px;
}

.contact-form button {
    margin-top: 5%;
}

button.theme_btn img {
    width: 30%;
}

/*contact end*/
section.gallery.inn-gallery {
    padding: 80px 0;
}

/*service start*/
section.main_slider.inner-banner img {
    height: 80vh;
}

.banner_text h4 {
    text-align: center;
    font-size: 91px;
    color: #000;
    text-transform: capitalize;
}

.inner-service-img img {
    width: 100%;
    border-radius: 30px;
    height: 660px;
    object-fit: cover;
    /* border: 1px solid #719462; */
    padding: 15px;
    position: relative;
}

.service-img-pos img {
    object-position: right;
}
section.inner-service.all-section {
    padding: 80px 0;
}
.inner-service-img {
    position: relative;
}

section.inner-service .row {
    position: relative;
    padding-bottom: 50px;
}

section.inner-service .row:before {
    content: '';
    position: absolute;
    top: 40%;
    left: -60%;
    width: 75%;
    height: 20%;
    z-index: -1;
    background: #992e4e;
}



.inner-service-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    border: 1px solid #992e4e;
    border-radius: 20px;
    z-index: -2;
}

.inner-service-text h4 {
    font-size: 75px;
    color: #000;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Oswald-SemiBold';
    font-style: italic;
}

.inner-service-text p {
    color: #8d8d8d;
}

.inner-service-text ul {
    margin-bottom: 20px;
    margin-top: 20px;
}

.inner-service-text ul li {
    line-height: 40px;
    color: #565558;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
}

.inner-service-text ul li img {
    margin-right: 15px;
}

.row.d-flex.right-img:before {
    right: -60%;
    left: inherit;
}

section.inner-service .row {
    align-items: center;
}

/*service end*/
.miss-img {
    position: relative;
}

.miss-img img {
    width: 70%;
    margin: 0 0 0 auto;
    display: block;
    border-radius: 52px;
}

section.miss-vis .row {
    align-items: center;
}

.miss-img:before {
    position: absolute;
    content: '';
    background: #992e4e;
    z-index: -1;
    right: -4%;
    width: 60%;
    height: 110%;
    top: -5%;
    border-radius: 30px;
}
.miss-img.vis-img img {
    margin: 0;
}

.miss-img.vis-img:before {
    right: unset;
    left: -4%;
}
/* end */

/*Book Now Start*/

.online-restions-sec input {
    width: 100%;
    height: 65px;
    padding: 0 20px;
    margin-bottom: 5%;
    border: 2px solid #c7c7c7;
    border-radius: 35px;
}

.online-restions-sec input::placeholder {
    font-size: 16px;
    color: #333333;
}

.online-restions-sec select::placeholder {
    font-size: 16px;
    color: #333333;
}

.inp-re:before {
    position: absolute;
    /* content: "\f107"; */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
    color: #a1a0a0;
    padding-right: 10px;
    pointer-events: none;
    right: 9px;
    top: 19px;
}

.inp-ree:before {
    position: absolute;
    content: "\f073";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 22px;
    color: #a1a0a0;
    padding-right: 10px;
    pointer-events: none;
    right: 14px;
    background: #fff;
    top: 19px;
}

.inp-ree {
    position: relative;
}

.inp-re {
    position: relative;
}

.online-restions-sec select {
    width: 100%;
    height: 65px;
    padding: 0 21px;
    margin-bottom: 5%;
    border: 2px solid #c7c7c7;
    color: #333333;
    border-radius: 31px;
    appearance: none;
    font-size: 15px;
}

.online-restions-sec textarea::placeholder,
.online-restions-sec input::placeholder {
    color: #333333;
    font-weight: 400;
    font-size: 15px;

}

.online-restions-sec textarea {
    width: 100%;
    height: 200px;
    padding: 15px 20px;
    margin-bottom: 4%;
    border: 2px solid #c7c7c7;
    resize: none;
    border-radius: 25px;
}

.online-restions-sec {
    text-align: center;
    padding: 80px 0;
}

.online-restions-sec h5.theme-h5,
section.contact_us h5.theme-h5 {
    font-size: 35px;
    margin-bottom: 40px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.online-restions-sec .theme_btn,
section.contact_us .theme_btn {
    width: 220px;
    margin: 0 auto;
}
.header-btn {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}
/*Book Now End*/