@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&family=Titillium+Web:wght@400;600;700;900&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #326F68;
    --secondary: #333333;
}

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

body {
    position: relative;
    background: #326F68;
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

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

/* How to add New font */
@font-face {
    font-family: "futura";
    src: url("../fonts/Futura\ Book\ font.ttf");
}


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

p {
    font-size: 18px;
    font-weight: 400;
    line-height: 2;
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'futura', sans-serif;
}

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

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

figure {
    margin: 0;
}

/* 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(--black);
    z-index: 11113;
}

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

/* loader */

/* btn css */

.themeBtn {
    background: var(--white);
    font-size: 1.125rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 11px 28px;
    line-height: normal;
    border: 1px solid var(--white);
}

.themeBtn:hover {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.headingOne {
    font-size: 5rem;
    color: var(--black);
    text-align: center;
    margin-bottom: 2rem;
}

/* navigation css */

header {
    background: linear-gradient(178deg, #98C4CA, #3C847C);
    padding: 5px 0;
}

.form-inline a strong {
    display: inline-grid;
    place-items: center;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: var(--white);
    font-size: 11px;
    color: var(--black) !important;
    box-shadow: 0px 8px 53.1px 5.9px rgb(180 180 180 / 25%);
    color: var(--white);
    line-height: 1;
    position: absolute;
    top: 1rem;
    margin-right: -27px;
}

.form-inline li a:hover {
    color: var(--black);
    background-color: var(--white);
}


.form-inline ul {
    display: flex;
    gap: 1rem;
}

.form-inline ul li a {
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 50%;
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.navbar-nav {
    align-items: center;
    gap: 5rem;
    margin-left: 5rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

.form-inline a span:hover {
    color: var(--primary);
}

.navbar .nav-item.drop-down {
    position: relative;
    z-index: 1;
}

.navbar .drop-down > a:after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    padding-left: 10px;
    color: var(--primary);
}

.navbar .drop-down ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
}

.navbar .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .drop-down li {
    min-width: 200px;
    position: relative;
    list-style: none;
}

.navbar .drop-down ul a {
    padding: 6px 17px;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
    text-transform: uppercase;
}

.navbar .drop-down ul a:hover {
    background: var(--primary);
    color: #fff;
}

/* navigation css */

/* slider css */

.main-slider {
    height: 935px;
}

section#mainSlider h2 {
    font-size: 5.625rem;
    margin: 0;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.main-slider h1 span {
    color: var(--primary);
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}


.homeSlider .swiper-button-next {
    top: 50%;
    right: 2rem;
    width: 47px;;
    height: 47px;;
    border: 2px solid var(--white);
    border-radius: 50%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.homeSlider .swiper-button-next:after {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--white);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.homeSlider .swiper-button-prev {
    top: 50%;
    left: 2rem;
    width: 47px;
    height: 47px;
    border: 2px solid var(--white);
    border-radius: 50%;
    right: inherit;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.homeSlider .swiper-button-prev:after {
    content: '\f104';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--white);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

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

.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: 7.5rem;
    line-height: 1;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
}

.main-slider p {
    color: var(--white);
    font-weight: 400;
    line-height: 1.7;
    font-size: 1.25rem;
    width: 60%;
    margin: 0.5rem auto;
    letter-spacing: 2px;
}

/* slider css */

/* / sraachbar start / */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 11.25rem;
    font-size: 1.25rem;
}

/* / sraachbar end / */

/* Footer Sec Css Start */

footer {
    position: relative;
    padding-top: 5rem;
    background: linear-gradient(179deg, #98C4CA, #3C847C);
}

footer h3 {
    font-size: 1.875rem;
    text-transform: capitalize;
    color: var(--white);
    margin-bottom: 2rem;
}


footer .links li a {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
}

footer ul li a:hover {
    color: var(--primary)
}

footer p {
    font-size: 1rem;
    color: var(--white);
    margin-top: 1rem;
}

.contactInfo li a strong:hover {
    color: var(--primary);
}

.contactInfo li a strong {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 400;
}

.contactInfo li a strong span {
    display: block;
    font-weight: 500;
    text-transform: uppercase;
}

.contactInfo li a {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contactInfo li + li {
    padding-top: 1.5rem;
}

.copyRight p {
    font-size: 1rem;
    text-align: center;
}

.socialLinks {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
}

.socialLinks li a {
    background-color: var(--white);
    color: var(--black);
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 50px;
}

.socialLinks li a:hover {
    background-color: #25938E;
    color: var(--white);
}

.copyRight {
    border-top: 1px solid rgb(238 232 227 / 21%);
    margin-top: 3rem;
    padding: 1rem 0;
}

.footLogo {
    display: block;
    margin-bottom: 1rem;
}

ul.links li {
    margin-bottom: 1rem;
}

/* Footer Sec Css End */

#return-to-top {
    position: absolute;
    right: 30px;
    border: 2px solid var(--white);
    height: 62px;
    width: 62px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
}

#return-to-top:hover {
    background-color: var(--theme-color);
}

#return-to-top i {
    color: var(--white);
}

.subHeading {
    font-size: 5rem;
    color: var(--white);
    text-transform: uppercase;
}

.secHead {
    font-size: 3.75rem;
    color: var(--white);
}

.inspiredWrap {
    position: relative;
    margin-bottom: 1.5rem;
}

.inspiredContent {
    position: absolute;
    bottom: 1rem;
    left: 2rem;
}

.aboutSec {
    padding: 0 0 6rem 0;
}

.aboutSec .row + .row {
    padding-top: 4rem;
}

.aboutHeadings .themeBtn {
    background: var(--white);
    color: var(--primary);
}

.abtContents h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
    background: rgb(255 255 255 / 50%);
    padding: 0.875rem 1.125rem;
}

.mainHeads {
    font-size: 3.125rem;
    color: var(--white);
}

.chooseBoxs {
    background: #98C4CA;
    margin-left: -4rem;
    padding: 2rem 2rem;
}

/* innerpages Start */

.sohpwrap {
    position: relative;
    margin-bottom: 2rem;
    transition: 0.5s ease-in-out;
}

.shopcntnt {
    position: absolute;
    /* top: 0; */
    left: 0;
    right: 0;
    bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shopcntnt h3 {
    font-size: 2.25rem;
    color: #fff;
    opacity: 0;
    text-transform: capitalize;
}

.sohpwrap:hover .shopcntnt h3 {
    opacity: 1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.sohpwrap:hover:before {
    opacity: 1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.sohpwrap:before {
    content: "";
    position: absolute;
    background: rgb(176 176 176 / 50%);
    width: 100%;
    height: 100%;
    opacity: 0;
}

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan {
    position: relative;
}

.roomsec .sohpwrap:before {
    background: rgb(0 0 0 / 20%);
}

.aboutusSec h2 {
    font-size: 4.375rem;
    color: var(--white);
    text-transform: uppercase;
}

.aboutusSec h3 {
    font-size: 1.75rem;
    margin-bottom: 0;
    text-transform: uppercase;
    color: var(--white);
}


.bgcolor {
    position: relative;
    height: 600px;
}

.bgcolor:before {
    content: "";
    position: absolute;
    border: 3px solid var(--white);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    inset: 0;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
}

.bgcolor:after {
    content: "";
    position: absolute;
    background: rgb(255 255 255 / 50%);
    width: 200px;
    height: 200px;
    border-radius: 100%;
    left: 5rem;
    z-index: 1;
    top: 0;
}

.aboutusSec {
    padding: 7rem 0;
}

figure.bgcolor.bgcolor2:after {
    right: 5rem;
    z-index: 1;
    left: unset;
}

figure.bgcolor.bgcolor2:before {
}

.innershop .nav-link {
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: unset;
    width: 200px;
    height: 51px;
    font-size: 1rem;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.innershop .nav-tabs .nav-link.active {
    text-transform: uppercase;
    color: var(--primary);
    background: var(--white);
    font-size: 1rem;

}

.innershop .nav-tabs {
    justify-content: center;
    gap: 1.375rem 1.875rem;
    margin-bottom: 2.5rem;
    border: none;
}

.Shopcolorsection.roomsec.innershop {
    background-color: unset;
}

.contact {
    padding: 6rem 0;
}

.cont-wrap {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    align-items: center;
    justify-content: center;

}

.cont-wrap figure {
    background: var(--white);
    height: 143px;
    width: 143px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 10px rgb(255 255 255 / 70%);
}

.contact .serviceHead {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 1rem;
}

.contact h2.subHeading {
    margin: 0;
    font-size: 23px;
    font-family: 'Poppins';
}

.contact h3.sectionHeading {
    margin: 0;
    font-size: 70px;
    color: var(--white);
    text-transform: uppercase;
}

.contact .form-control {
    border: none;
    border-bottom: 1px solid #FFFFFF;
    border-radius: 0;
    font-size: 28px;
    height: 70px;
    background: transparent;
    padding: 0;
}

.contact .form-control::placeholder {
    color: var(--white);
}

.contact textarea.form-control {
    height: 100px;
}

.contact .form-group {
    margin-bottom: 2.5rem;
}

.tex h3 {
    font-size: 2rem;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
}

.tex p {
    font-size: 1.375rem;
}

.faqSection #accordion .card {
    background: transparent;
    border: 0;
    border-width: 1px;
    border-color: rgb(240, 240, 240);
    border-style: solid;
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 8px 0px rgba(0, 0, 0, 0.03);
    padding: 0;
}

.faqSection #accordion .card .btn-link {
    --height: 5rem;
    --width: 4.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    color: var(--primary);
    padding: 0;
    border: 0;
    font-size: 33px;
    text-decoration: none;
    overflow: hidden;
    padding-left: 1.7rem;
    font-family: 'futura';
}

.faqSection #accordion .card .btn-link span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--width);
    height: var(--height);
    background: #232323;
    margin-right: 2rem;
}

.faqSection #accordion .card .btn-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    width: var(--width);
    height: var(--height);
    margin-left: auto;
    /* background: var(--primary); */
}

.faqSection #accordion .card .btn-link i::before {
    content: "\f0d7";
}

.faqSection #accordion .card .btn-link.collapsed i::before {
    content: "\f0da";
}

.faqSection #accordion .card .btn-link.collapsed i {
    color: var(--black);
    /* background: #232323; */
}

.faqSection #accordion .card + .card {
    margin-top: 2rem;
}

.faqSection #accordion .card .card-body {
    padding: 1rem 4rem 2.5rem 2rem;
}

.faqSection #accordion .card .card-body p {
    color: #9e9e9e;
    font-size: 1rem;
    font-weight: 400;
    padding-left: 1.83em;
    margin: 0;
    line-height: 33px;
    padding-bottom: 10px;
}

.faqSection #accordion .card .card-body ul li {
    font-size: 20px;
    color: #707070;
    line-height: 2;
}

.faqSection #accordion .card .card-body ul {
    list-style: disc;
    list-style-position: inside;
}

.faqSection #accordion .card .card-body ul li + li {
    padding-top: 1rem;
}

.faqSection {
    padding: 5rem 0;
}


section#mainSlider p {
    text-align: center;
}

.sohpwrap figure img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.homeSlider .slide-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.aboutusSec .bgcolor img {
    width: 550px;
    height: 550px;
    border-radius: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}