@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,300&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #080914;
    --secondary: #14152D;
    --theme-color: #E93E3A;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: var(--primary);
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1380px;
    }
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
{
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

figure {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/*Menu Start*/
.navbar-brand img {
    transition: 0.3s ease-in-out;
}

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    transition: 0.3s ease-in-out;
}

header.sticky {
    position: fixed;
}

header.sticky .navbar-brand img {
    max-width: 100px;
}

.navbar-nav {
    gap: 1rem 2rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    padding: 0;
    position: relative;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: transform 0.3s ease-in-out;
    background-color: var(--theme-color);
    transform-origin: center;
    transform: scaleX(0);
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
    transform: scaleX(1);
}

.form-inline {
    margin-left: 2rem;
}

.menubtn .themeBtn {
    font-size: 0.8125rem;
    margin: 0;
}

/*Menu End*/

/*ThemeBtn CSS Start*/
.themeBtn span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--primary);
    -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;

}
.themeBtn {
    background-color: var(--theme-color);
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    z-index: 0;
    font-size: 17px;
    color: var(--white);
    font-weight: 600;
    border: 1px solid var(--primary);
    border-color: var(--theme-color);
    padding: 0.9rem 2rem;
    display: inline-block;
    transition: ease all 0.5s;
}

.themeBtn:hover {
    color: var(--theme-color) !important;
    transform: scale(1.03);
}
.themeBtn:hover span, .btn-active:hover span {
    width: 225%;
    height: 562.5px;
}




.themeBtn span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--primary);
    -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;

}
.themeBtn {
    background-color: var(--theme-color);
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    z-index: 0;
    font-size: 17px;
    color: var(--white);
    font-weight: 600;
    border: 1px solid var(--primary);
    border-color: var(--theme-color);
    padding: 0.9rem 2rem;
    display: inline-block;
    transition: ease all 0.5s;
}

.themeBtn:hover {
    color: var(--theme-color) !important;
    transform: scale(1.03);
}
.themeBtn:hover span, .btn-active:hover span {
    width: 225%;
    height: 562.5px;
}
.themeBtn2 {
    background: linear-gradient(to right, var(--theme-color), var(--theme-color));
    background-size: 0 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    font-size: 1.125rem;
    border: 1px solid var(--theme-color);
    padding: 0.9rem 2rem;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    font-weight: 500;
}

.themeBtn2:hover {
    color: #fff;
    background-size: 100% 100%;
    transform: scale(1.03);
}

/*ThemeBtn CSS End*/

/*MainSlider Start*/
.main-slider {
    height: 100vh;
    background-color: #000;
}
.homeSlider .slide-inner:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0.8;
}
.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 26rem;
    width: fit-content;
    left: 5rem;
}

.homeSlider .swiper-prev,
.homeSlider .swiper-next {
    width: 4.35rem;
    height: 4.35rem;
    font-size: 1rem;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-next {
    right: 1rem;
}

.homeSlider .swiper-prev {
    left: 1rem;
}

.homeSlider .swiper-next:hover,
.homeSlider .swiper-prev:hover {
    background: var(--white);
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
    height: 15px;
    width: 15px;
    margin: 0.8rem 0 !important;
    opacity: 1;
    border: 1px solid var(--white);
    background: white;
    display: block;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--theme-color);
    position: relative;
    border-color: var(--theme-color);
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 0;
    color: var(--white);
    font-size: 4.375rem;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}

.main-slider p {
    color: var(--white);
    font-weight: 400;
    line-height: 2.2;
    margin-top: 1rem;
    font-size: 1.125rem;
}

.main-slider h1 span {
    font-size: 3.125rem;
    display: block;
    line-height: 2.3;
    font-weight: 400;
    text-transform: capitalize;
}

.btnGroup {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

/*MainSlider End*/

/*What We Do Section CSS Start*/
.what-content {
    background: var(--secondary);
    padding: 1.7rem;
    text-align: center;
    height: 320px;
}

.what-content h4 {
    font-size: 1.8rem;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    margin-bottom: 2.5rem;
}

.what-content h4::before {
    content: "";
    position: absolute;
    background: var(--theme-color);
    height: 2px;
    width: 150px;
    bottom: -1.4rem;
    left: 7rem;
}

.what-content p {
    color: #fff;
    text-align: center;
    padding-bottom: 2rem;
}

.what-content a {
    position: absolute;
    bottom: -1.9rem;
    font-size: 1.6rem;
    border: 1px solid var(--theme-color);
    width: 60px;
    height: 60px;
    left: 42%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: var(--theme-color);
}

.we-do-box:hover {
    box-shadow: 0px 0px 30px #ffffff45;
    transition: all 0.3s ease-in-out;
}

.we-do-box:hover .what-content, .we-do-box:hover .what-content a {
    background: var(--primary);
    transition: all 0.2s ease-in-out;
}

.we-do-box:hover .what-content {
    border: 1px solid var(--theme-color);
    border-top: 0;
}

.secHeading {
    font-size: 3.125rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 3rem;
}

/*What We Do Section CSS End*/
/*About Section CSS Start*/
.aboutSec h4 {
    color: #fff;
    font-size: 2rem;
    margin: 1rem 0;
}

.aboutBox {
    padding: 10rem 0 0 16rem;
    z-index: 2;
    position: relative;
}

.aboutSec::before {
    margin: auto;
    content: '';
    position: absolute;
    background-color: #14152D;
    left: 0;
    top: 0;
    bottom: 0;
    width: 53.5%;
    height: 65%;
    z-index: 1;
}

.aboutSec .secHeading {
    text-align: left;
    margin-bottom: 1rem;
}

/*About Section CSS End*/
/*Skills Section CSS Start*/
.skillSec {
    padding-top: 0;
}

.skillBox h4 {
    font-size: 1.75rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    padding: 1.6rem 0 2rem;
}

.skillBox figure {
    position: relative;
    overflow: hidden;
}

.skillBox figure::before {
    position: absolute;
    top: 0;
    left: -83%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(
            left,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 100%
    );
    background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 100%
    );
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.skillBox figure img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    WIDTH: 100%;
}

.skillBox:hover figure::before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

.skillBox:hover figure img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/*Skills Section CSS End*/

/*Reviews Section CSS Start*/
.reviewSec .reviewColr {
    border: 7px solid #14152D;
    padding: 4rem 8rem;
    box-shadow: 0px 5px 30px #ffffff45;
    height: 100%;
}

.reviewSec .quote1 i {
    font-size: 8rem;
    position: absolute;
    z-index: -1;
    left: 0rem;
    bottom: 15rem;
    color: #26262673;
}

.reviewSec .reviewBox {
    text-align: center;
    position: relative;
}

.reviewSec .quote2 i {
    position: absolute;
    right: 0;
    font-size: 8rem;
    bottom: 6rem;
    color: #26262673;
    z-index: -1;
}

.reviewSec .reviewBox p {
    font-size: 1.375rem;
    margin-top: 2rem;
}

.reviewSec .reviewBox h4 {
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 2rem;
}

.reviewSec .reviewBox h4 span {
    display: block;
    font-weight: 300;
}

.reviewSec .swiper-button-next {
    background-color: var(--primary);
    border: 1px solid var(--theme-color);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--theme-color);
    border-radius: 50%;
    right: -1rem;
}

.reviewSec .swiper-button-prev {
    background-color: var(--primary);
    border: 1px solid var(--theme-color);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--theme-color);
    border-radius: 50%;
    left: -1rem;
}

.reviewSec .swiper-button-prev:hover, .reviewSec .swiper-button-next:hover {
    background-color: var(--theme-color);
    color: #fff;
}

.reviewSec .swiper-button-prev, .swiper-container-rtl .swiper-button-next,
.reviewSec .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: none;
}

/*Reviews Section CSS End*/

/*Footer Start*/
footer {
    background-color: var(--secondary);
    padding: 6rem 0 0;
}

footer h3 {
    font-size: 1.5625rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer .links li a {
    color: #fff;
    line-height: 2.3;
    font-size: 1.125rem;
}

footer .links li a:hover {
    color: var(--theme-color);
}

footer .formFoter input {
    width: 100%;
    height: 3rem;
    padding-left: 1rem;
    border: none;
    background: transparent;
}

footer .formFoter {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #fff;
}

footer .formFoter button {
    background: transparent;
    color: #fff;
    border: none;
    margin-right: 1rem;
    font-size: 1.3rem;
}

footer .socialList {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

footer .socialList li a i {
    background: #fff;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 1.2rem;
    color: #000;
    transition: all 0.3s ease-in-out;
}

footer .socialList li a i:hover {
    background: var(--theme-color);
    color: #fff;
}

footer .formFoter input::placeholder {
    color: #fff;
}

footer .copyRight {
    border-top: 1px solid #fff;
    padding-top: 1.5rem;
    text-align: center;
    margin-top: 3rem;
    padding-bottom: 1rem;
}

/*Footer End*/

.reveal {
    visibility: hidden;
    position: relative;
    overflow: hidden;
}


/* loader */
.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--secondary);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--theme-color);
}


/* innerpages Start */

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
  }
  
  .innerBan h2 {
    font-size: 70px;
    color: var(--white);
    text-transform: uppercase;
  }

  .innerBan {
    position: relative;
}
section.whatweSec h2 {
    font-size: 50px;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 600;
}

section.whatweSec h3 {
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}
.wrapcntnt h2 {
    font-size: 36px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 1rem;
}

.lifewrap {
    margin-bottom: 3rem;
}

.newscontnt h2 {
    font-size: 26px;
    color: #fff;
    margin-top: 2rem;
    text-transform: uppercase;
}

.newscontnt p {
    font-size: 16px;
}

.news-wrap {
    margin-bottom: 5rem;
}

section.reviewSec.reviewinnerSec .reviewBox p {
    font-size: 22px;
}


.reviewSec.reviewinnerSec .reviewBox h4 {
    font-size: 17px;
}


.reviewSec.reviewinnerSec .reviewBox span {
    font-size: 9px;
}

section.reviewSec.reviewinnerSec .reviewBox {
    margin-bottom: 5rem;
}

section.reviewSec.reviewinnerSec .quote1 i {
    bottom: 9rem;
    left: -1rem;
}

section.reviewSec.reviewinnerSec .quote2 i {
    top: 20rem;
}


.contactSec{
    padding: 8rem 0;
}
.contactSec h3 {
    font-size: 70px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #fff;
}
.contactSec p {
    color: #fff;
    margin-bottom: 3rem;
}
ul.detail {
    display: flex;
    flex-direction: column;
    gap: 3rem 0;
}

ul.detail li {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contactSec ul li img {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.2rem;
}

.contactSec ul li strong {
    font-size: 25px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
}

.contactSec ul li strong a {
    display: block;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    text-transform: none;
}

.contactSec .hotelRequest {
    
/* border-radius: 10px; */
    
padding: 3rem 2rem;
    
border: 1px solid #fff;
}

.contactSec .hotelRequest .head h2 {
    text-align: left;
    color: #0060AD;
    font-size: 50px;
    margin-bottom: 2rem;
}

.contactSec .hotelRequest .head h5{
	font-size: 40px;
	font-weight: 300;
}
.contactSec .hotelRequest .head h4{
	font-size: 22px;
	color: #828282;
	margin: 1rem 0;
	font-weight: 400;
}

.contactSec .formStyle .form-control {
    border-radius: 0;
    border: none;
    border: 1px solid #fff;
}

.contactSec .formStyle label {
    color: var(--white);
    font-size: 1.125rem;
    padding-left: 1rem;
}

.contactSec .formStyle textarea.form-control {
    min-height: 10rem;
}


.contactSec .form-control {
    display: block;
    width: 100%;
    height: calc(2.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #E8E8E8;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: 2rem;
}

.contactPage h2 {
    font-size: 18px;
    margin-top: 2rem;
}


.contactPage ul {
    display: flex;
    gap: 1rem;
}

.hotelRequest .themeBtn {
    padding: 1rem 20rem;
    text-transform: uppercase;
}

.contactSec .themeBtn:hover {
    color: #fff!important;
}
.page-content.notfoundPg {
    text-align: center;
}

h1.notfoundHad {
    font-size: 200px;
    color: #e93e3a;
}

input.search-field {
    border: 2px solid #e93e3a;
    height: 50px;
    width: 299px;
}

input.search-submit {
    height: 51px;
    background: #e93e3a;
    border: 2px solid #e93e3a;
    width: 133px;
}

.page-content.notfoundPg {
    margin-bottom: 70px;
}

.notfoundPg .search-form .search-submit:hover, .notfoundPg .search-form .search-submit:focus {
    background: #212529 !important;
    color: #e93e3a;
}