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

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    position: relative;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    overflow-x: hidden;
}


/*.container {
    max-width: 1170px;
}*/

@font-face {
    font-family: 'EuroStyle';
    src: url('../fonts/EuroStyleNormal.eot');
    src: url('../fonts/EuroStyleNormal.eot?#iefix') format('embedded-opentype'), url('../fonts/EuroStyleNormal.woff2') format('woff2'), url('../fonts/EuroStyleNormal.woff') format('woff'), url('../fonts/EuroStyleNormal.ttf') format('truetype'), url('../fonts/EuroStyleNormal.svg#EuroStyleNormal') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Eurostile';
    src: url('../fonts/EurostileRegular.eot');
    src: url('../fonts/EurostileRegular.eot?#iefix') format('embedded-opentype'), url('../fonts/EurostileRegular.woff2') format('woff2'), url('../fonts/EurostileRegular.woff') format('woff'), url('../fonts/EurostileRegular.ttf') format('truetype'), url('../fonts/EurostileRegular.svg#EurostileRegular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Eurostile Extended';
    src: url('../fonts/EurostileExtended-Black.eot');
    src: url('../fonts/EurostileExtended-Black.eot?#iefix') format('embedded-opentype'), url('../fonts/EurostileExtended-Black.woff2') format('woff2'), url('../fonts/EurostileExtended-Black.woff') format('woff'), url('../fonts/EurostileExtended-Black.ttf') format('truetype'), url('../fonts/EurostileExtended-Black.svg#EurostileExtended-Black') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Eurostile';
    src: url('../fonts/Eurostile-Bold.eot');
    src: url('../fonts/Eurostile-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Eurostile-Bold.woff2') format('woff2'), url('../fonts/Eurostile-Bold.woff') format('woff'), url('../fonts/Eurostile-Bold.ttf') format('truetype'), url('../fonts/Eurostile-Bold.svg#Eurostile-Bold') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Eurostile';
    src: url('../fonts/Eurostile-Medium.eot');
    src: url('../fonts/Eurostile-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Eurostile-Medium.woff2') format('woff2'), url('../fonts/Eurostile-Medium.woff') format('woff'), url('../fonts/Eurostile-Medium.ttf') format('truetype'), url('../fonts/Eurostile-Medium.svg#Eurostile-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #ffffff;
    --black: #000;
    --gary-color: #727272;
    --lightgary-color: #b2b9bd;
    --theme-color: #0CA4EF;
    --primary-color: #0A68AE;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h2,
h3 {
    font-family: 'Eurostile Extended';
}

h1,
h4,
h5 {
    color: #000;
    font-family: 'Eurostile';
}

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

section {
    padding: 5rem 0;
}

/* Lenis */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.preLoader>img {
    width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* loader */


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary-color);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    opacity: 0.3;
}


/* Cursor End */


/* btn css */

.themeBtn {
    background: var(--theme-color);
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    padding: 0.95em 2.17em;
    border-radius: 7px;
    line-height: normal;
    font-family: 'Eurostile';
    letter-spacing: 1.1px;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    /* padding: 1.04em 2em; */
}


/* btn css */


/* mouse animation css  */

.bounce-element {
    animation: bounce 0.9s infinite alternate;
    -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

.mouse {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    text-align: center;
}


/* mouse animation css  */


/* navigation css */

header {
    position: relative;
    z-index: 11;
}

.topBar {
    background: var(--theme-color);
    padding: 0.37rem 5rem;
}

ul.top-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

ul.top-social li a {
    font-size: 1.2rem;
    color: var(--white);
}

.topBar p {
    font-size: 1.125rem;
    color: var(--white);
    margin: 0;
    font-family: 'Eurostile';
    font-weight: normal;
    text-transform: uppercase;
}

.topBar select {
    font-size: 1rem;
    color: var(--white);
    background: transparent;
    border: 0;
    text-transform: uppercase;
    display: table;
    margin-left: auto;
}

.secondary-top {
    padding: 2rem 5rem;
}

.login-form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.login-form form {
    position: relative;
}

.login-form form input {
    width: 299px;
    height: 49px;
    border: 1px solid var(--primary-color);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0 1.2rem;
}

.login-form form input::placeholder {
    color: var(--primary-color);
}

.login-form form button {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: transparent;
    border: 0;
    height: fit-content;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.login-form a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
}

.navbar-collapse {
    justify-content: center;
}

.navbar-nav {
    align-items: center;
    justify-content: space-between;
    /* width: 100%; */
    gap: 3.8rem;
}

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

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

.an-navbar {
    background: var(--primary-color);
    padding: 0 0;
}

a.contactBtn {
    width: 185px;
    height: 63px;
    /*background: var(--theme-color);*/
    color: var(--white);
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    gap: 6px;
    font-family: 'Eurostile';
    letter-spacing: 1px;
}

a.contactBtn i {
    font-size: 1.3rem;
}

a.top-logo {
    display: table;
    margin: auto;
}

.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 rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

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

.navbar .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
}

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

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

.navbar .drop-down>a:after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 500;
    padding-left: 5px;
}


/* navigation css */


/* slider css */

.mainSlider {
    height: 880px;
    position: relative;
    z-index: 1;
}

.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-container .swiper-slide>.bannerVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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: flex-end;
    align-items: center;
}

.homeSlider .slide-inner:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(10 104 174 / 0%) 0%, #0A68AE 100%);
}

.slideContent {
    text-align: center;
    margin-bottom: 7rem;
}

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

.slideContent p {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.9;
    width: 95%;
    margin: 0 auto 1.5rem;
}

.slideContent .d-flex {
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.themeBtn:hover {
    background: var(--theme-color);
    color: var(--white);
    border-color: var(--theme-color);
}


/* slider css */

.pool-card figure {
    position: relative;
}

.pool-card figure img {
    border-radius: 25px;
}

.pool-card figure .poolimg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 0;
}

.pool-card a {
    background: var(--primary-color);
    font-size: 2.125rem;
    color: var(--white);
    font-family: 'Eurostile Extended';
    text-transform: uppercase;
    border-radius: 15px;
    display: table;
    margin: -3.1rem auto 0;
    position: relative;
    z-index: 1;
    padding: 1.35rem 0;
    width: 86%;
    text-align: center;
}

.pool-card:hover a {
    background: var(--theme-color);
}

.pro-main {
    background: url(../images/probg.jpg) no-repeat top center/ cover;
    padding-bottom: 19rem;
}

.section-heading {
    font-size: 3.875rem;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
}

.pro-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.pro-card {
    background: #E6F1F7;
    border-radius: 15px;
    padding: 1.3rem;
    margin-bottom: 2.5rem;
}

.pro-card figure {
    width: 100%;
    height: 212px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-card figure img {
    width: fit-content;
}

.pro-content {
    padding: 1.2rem 0 0;
}

.pro-content span {
    color: var(--theme-color);
    font-size: 1.2rem;
}

.pro-content h3 {
    font-size: 1.0625rem;
    text-transform: uppercase;
    color: var(--black);
    margin: 10px 0 5px;
}

.pro-content p {
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.pro-content .d-flex {
    align-items: center;
    justify-content: space-between;
}

.pro-content .d-flex .themeBtn {
    padding: 0.65em 1.2em;
}

.pro-content .d-flex h2 {
    font-size: 1.0625rem;
    color: var(--primary-color);
    margin: 0;
}

.offer-main {
    padding: 0;
    /* margin-top: -13rem; */
}

.special-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--theme-color);
    border-radius: 25px;
    margin-top: -16rem;
}

.special-card figure img {
    border-radius: 25px;
}

.special-content {
    padding: 6rem 0rem;
    border: 5px solid var(--white);
    border-radius: 56px;
    margin: 0 3rem 0 3rem;
    text-align: center;
    width: 40%;
    margin-left: auto;
}

.special-content h4 {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: bold;
    letter-spacing: 1.2px;
    margin: 0 0 0.7rem;
}

.special-content h2 {
    font-size: 3.125rem;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 5rem 1rem;
}

.special-card figure {
    flex-shrink: 0;
}

.video-main figure {
    position: relative;
}

.video-main figure img {
    border-radius: 25px;
}

.video-main figure a {
    position: absolute;
    bottom: 4rem;
    left: 3rem;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
}

.review-main {
    background: url(../images/reviewbg.jpg) no-repeat top center/ cover;
    padding: 5rem 0 8rem;
}

.title {
    text-align: center;
    margin-bottom: 2rem;
}

.sub-heading {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1.4px;
}

.review-card {
    background: var(--primary-color);
    border-radius: 8px;
    padding: 2.5rem;
    border: 1px solid var(--primary-color);
    color: var(--white);
}

.review-card .d-flex {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.review-card .d-flex span {
    color: #EAB529;
    font-size: 1.3rem;
}

.review-card__content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.review-card__content.active {
    display: block;
}

.review-card__content :is(p, span, font) {
    color: var(--white) !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.125rem !important;
    font-style: italic !important;
    line-height: 2.375rem !important;
    margin: 0 0 1.3rem !important;
}

.review-card .readBtn {
    color: var(--white);
    display: block;
    margin: 1rem 0;
    background: var(--theme-color);
    border: none;
    padding: 0.5rem 1rem;
}

.review-card__content::-webkit-scrollbar {
    width: 5px;
}

.review-card__content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.review-card__content::-webkit-scrollbar-thumb {
    background: #888;
}

.review-card__content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.user {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user h2 {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
}

.user p {
    margin: 0;
}

.swiper-slide.swiper-slide-next .review-card {
    background: transparent;
    border-color: var(--white);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

.swiper-button-prev {
    /* left: -6rem; */
    font-size: 3.5rem;
    color: var(--black);
    -webkit-transition: all 0.5s ease !important;
    transition: all 0.5s ease !important;
}

.swiper-button-next {
    /* right: -6rem; */
    font-size: 3.5rem;
    color: var(--black);
    -webkit-transition: all 0.5s ease !important;
    transition: all 0.5s ease !important;
}

.blog-main {
    background: #E6F1F7;
}

.section-heading.text-black {
    color: var(--black);
}

.sub-heading.blue-color {
    color: var(--primary-color);
    margin: 0;
}

p.para {
    text-align: center;
    font-size: 1.125rem;
    color: #54687D;
    width: 67%;
    margin: 0 auto 0;
    font-weight: 500;
    line-height: 1.8;
}

.blog-card figure img {
    border-top-left-radius: 23px;
    border-top-right-radius: 23px;
}

.blog-content {
    background: var(--white);
    padding: 1.8rem 1.7rem;
    border-bottom-right-radius: 23px;
    border-bottom-left-radius: 23px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-content {
    box-shadow: 0 4px 14px 0 rgb(0 0 0 / 6%);
}

.blog-content span {
    font-size: 1rem;
    color: #54687D;
    font-weight: 400;
}

.blog-content h2 {
    font-size: 1.375rem;
    text-transform: uppercase;
    color: var(--black);
    margin: 0.6rem 0;
}

.blog-content p {
    color: #54687D;
    line-height: 1.8;
    margin: 0 0 1rem;
}

.blog-content a {
    font-size: 1rem;
    color: #0CA4EF;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Eurostile';
    letter-spacing: 1px;
}

a.logo-set {
    width: 100%;
    display: block;
    height: 312px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px dashed #000000;
    border-bottom: 1px dashed #000000;
}

a.logo-set img {
    width: fit-content;
}

a.logo-set:hover {
    background: var(--white);
    box-shadow: 0 2px 34px 0 rgb(0 0 0 / 7%);
}


/* footer css start */

footer {
    background: #000;
    position: relative;
    padding-top: 6rem;
}

ul.quicklist {
    display: flex;
    margin-top: 0rem;
    justify-content: space-between;
    /* gap: 148px; */
    align-items: center;
}

ul.quicklist li a {
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-family: 'Eurostile Extended';
    gap: 0;
}

ul.quicklist li a span {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

ul.quicklist li a strong {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

ul.quicklist li {
    width: 30%;
}

ul.quicklist li a {
    font-weight: 400;
}

ul.quicklist li p {
    font-size: 30px;
    color: #fff;
    margin: 0;
    text-align: center;
    font-weight: 400;
    font-family: 'Eurostile Extended';
    display: flex;
    align-items: center;
    flex-direction: column;
    line-height: 1.75;
}

ul.quicklist li p span {
    font-size: 1rem;
    display: block;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.copyRight {
    border-top: 1px solid rgba(112, 112, 112, 0.5);
    padding: 1.7rem 0 87px 0;
    margin-top: 4rem;
    position: relative;
}

.topWraps {
    display: flex;
    gap: 10px;
}

.topWraps li a {
    width: 45px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: #000;
    font-size: 1.125rem;
    background: #fff;
}

.topWraps li a:hover {
    background: var(--primary);
    color: var(--white);
}

.copyRight p {
    font-size: 17px;
    color: #fff;
    margin: 0;
    text-align: center;
}

a.ftrlink {
    font-size: 1rem;
    color: #0CA4EF;
    background: #fff;
    padding: 19px 49px 10px;
    border-radius: 10px 10px 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 270px;
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.quicklist li+li {
    border-left: 1px solid rgb(255 255 255 / 38%);
    border-right: 1px solid rgb(255 255 255 / 38%);
    padding: 0 6rem;
}

a.footerLogo {
    display: table;
    margin: auto;
}

ul.quicklist li+li+li {
    border: 0;
    padding: 0;
}

.footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgb(255 255 255 / 38%);
    border-bottom: 1px solid rgb(255 255 255 / 38%);
    padding: 1.8rem 0;
    gap: 4rem;
    margin: 5rem 0;
}

.footer-menu li a {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-family: 'Eurostile';
    font-weight: bold;
    letter-spacing: 1px;
}

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

ul.quicklist li a:hover {
    color: var(--theme-color);
}


/* footer css end */

a.contactBtn:hover,
.pro-content .d-flex .themeBtn:hover,
.themeBtn.borderBtn:hover {
    background: var(--black);
    color: var(--white);
}

ul.top-social li a:hover {
    color: var(--black);
}

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


/* inner pages css start */

.inner-banner {
    padding: 0;
    position: relative;
}

.inner-banner h2 {
    font-size: 3.875rem;
    color: var(--white);
    position: absolute;
    bottom: 6rem;
    left: 0;
    right: 0;
    text-align: center;
    text-transform: uppercase;
}

.about-page .section-heading.text-black {
    font-size: 3.4375rem;
    margin-bottom: 0.7rem;
}

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

.about-page {
    padding: 5rem 7rem;
}

.about-page.water-page .aboutpg-content {
    background: var(--white);
    box-shadow: 0 4px 20px 0 rgb(0 0 0 / 15%);
    margin-left: -13rem;
    padding: 2.5rem 3rem 2.5rem 14rem;
}

.about-page.water-page .radius {
    position: relative;
    z-index: 1;
}

.about-page.water-page .aboutpg-content p {
    font-size: 1.125rem;
    color: #54687D;
}

.about-page.water-page .aboutpg-content.aboutpg-right {
    margin-right: -13rem;
    padding: 2.5rem 14rem 2.5rem 3rem;
    margin-left: 0;
}

.about-page.water-page .pool-card.poolfltr-page figure img {
    width: 100%;
}

.about-page.water-page .pool-card.poolfltr-page figure .poolimg {
    width: auto;
}

.about-page.water-page .pool-card.poolfltr-page {
    position: relative;
    z-index: 1;
}

.review-page .review-card {
    margin-bottom: 2rem;
    padding: 2.2rem;
}

.review-page {
    padding: 6rem 0;
}

.pro-main.product-page {
    padding: 7rem 0;
}

.blog-main.blog-page .blog-card {
    margin-bottom: 2rem;
}


/* contact page css start */

.contactPage {}

.contactPage .title {
    text-align: left;
    margin-bottom: 1.8rem;
}

.contactPage .title p {
    padding: 0 30px 0 0;
}

.contactPage .title .heading {
    color: var(--black);
    position: relative;
    padding: 10px 0 0;
    font-size: 2.5rem;
}

.contactPage .title .heading:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 1px;
    background: var(--white);
}

.contactForm input {
    width: 100%;
    height: 82px;
    border: 0;
    font-size: 1.125rem;
    font-weight: 400;
    padding: 0 1.8rem;
    margin-bottom: 1.4rem;
    background: #E6F1F7;
    text-transform: uppercase;
}

.contactForm input::placeholder,
.contactForm textarea::placeholder {
    color: #8B93A8;
}

.contactForm textarea {
    width: 100%;
    height: 185px;
    border: 0;
    padding: 1rem 1.5rem;
    margin-bottom: 1.4rem;
    background: #E6F1F7;
    text-transform: uppercase;
    font-size: 1.125rem;
    font-weight: 400;
    resize: none;
}

.contactForm .themeBtn {
    border: 0;
    background: var(--theme-color);
    padding: 1.4em 2.5em;
}

.cdMain {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.icon {
    width: 160px;
    height: 160px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 3.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.locDetails h2 {
    font-size: 1.375rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 0 5px;
    font-family: 'Eurostile';
}

.locDetails p a {
    font-size: 1.625rem;
    color: var(--primary-color);
    font-family: 'Eurostile Extended';
}

.locDetails p {
    font-size: 1.1875rem;
    color: #54687D;
    font-weight: 400;
    margin: 0;
    padding-right: 4rem;
    line-height: 1.7;
}

.contactDetails .cdMain+.cdMain {
    margin-top: 2rem;
}

.contactDetails .cdMain+.cdMain+.cdMain .locDetails p a {
    color: #54687D;
    font-size: 1.1875rem;
    font-family: 'Poppins', sans-serif;
}

.contactForm input::placeholder {
    color: #757575;
}

.mapSec iframe {
    filter: grayscale(100%);
    margin-bottom: -7px;
}


/* inner pages css end */


/* step pages css start */

.step-pages .sellsection {
    display: none;
}


/* product detail css start */


/*PRoduct Details*/

.Proreview h2 {
    text-align: left;
    margin: 0;
    font-size: 3.75rem;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 600;
}

.Proreview ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2rem;
    color: #F7C00C;
    margin-bottom: 1rem;
}

.Proreview ul li span {
    color: #000;
    font-weight: 500;
    padding-right: 1rem;
    font-size: 1.25rem;
}

.Proreview p {
    font-size: 1.75rem;
    color: #000;
}

.Proreview h5 {
    font-size: 1.375rem;
    color: #828282;
    font-weight: 400;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.star {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.star li span::before {
    content: "";
    position: absolute;
    background: #F2F2F2;
    width: 80%;
    height: 25px;
    top: 7px;
    left: 8rem;
    border-radius: 10px;
}

ul.star li {
    margin: 0;
    color: #000;
    font-size: 1.875rem;
}

.star li span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-color);
    top: 7px;
    left: 8rem;
    height: 25px;
    width: 70%;
    border-radius: 10px 0 0 10px;
}

.star2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.star2 li span::before {
    content: "";
    position: absolute;
    background: #F2F2F2;
    width: 80%;
    height: 25px;
    top: 7px;
    left: 8rem;
    border-radius: 10px;
}

.star2 li {
    margin: 0;
    color: #000;
    font-size: 1.875rem;
}

.star2 li span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-color);
    top: 7px;
    left: 8rem;
    height: 25px;
    width: 10%;
    border-radius: 10px 0 0 10px;
}

.star3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.star3 li span::before {
    content: "";
    position: absolute;
    background: #F2F2F2;
    width: 80%;
    height: 25px;
    top: 7px;
    left: 8rem;
    border-radius: 10px;
}

ul.star3 li {
    margin: 0;
    color: #000;
    font-size: 1.875rem;
}

.startProduct ul {
    margin: 1.4rem 0;
}

.reviewSec {
    /* background: #fff; */
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #D2D2D2;
}

.Proreview {
    padding-bottom: 1rem;
}

.reviewImg {
    display: flex;
    align-items: center;
    margin: 3.5rem 0;
}

.content-wraper h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}

.content-wraper {
    margin-left: 2rem;
}

.content-wraper h4 {
    margin: 0.9rem 0;
    font-size: 1rem;
    color: #726f6f;
    font-weight: 600;
}

.content-wraper span {
    margin-left: 21px;
    font-size: 12px;
    color: #A4A4A4;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-wraper p {
    font-size: 1rem;
    margin: 0;
}

.Proreview .row+.row {
    margin: 5rem 0;
}

.reviewSec textarea {
    width: 100%;
    height: 160px;
    padding: 1rem;
    background: #F8F8F8;
    border-color: #EBEBEB;
}

.wishlistPro {
    background: #f8f6f6;
    padding-top: 0;
}

.productSlider-for,
.productSlider-nav {
    overflow: hidden;
}

.productNav {
    background: #FBFBFB;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #E8E8E8;
}

.productNav figure {
    width: 100%;
    background: #FFFFFF;
    /* border-radius: 10px; */
    padding: 0.91rem 0;
    margin: 0.7rem 0;
    border: 2px solid #DBDBDB;
    border-radius: 15px;
}

ul.stckst li {
    font-size: 1.25rem;
    color: var(--theme-color);
    font-weight: 500;
}

.productNav figure:hover {
    /* border: 1px solid var(--theme-color); */
}

.rating-box {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.rating-box .rating-container {
    direction: rtl !important;
}

.rating-box .rating-container label {
    display: inline-block;
    margin: 0;
    color: #d4d4d4;
    cursor: pointer;
    font-size: 2.2rem;
    transition: color 0.2s linear;
}

.rating-box .rating-container input {
    display: none;
}

.rating-box .rating-container label:hover,
.rating-box .rating-container label:hover~label,
.rating-box .rating-container input:checked~label {
    color: gold;
}

.rating-box span {
    font-size: 1.3rem;
    color: var(--theme-color);
    font-weight: 500;
    padding-left: 0.5rem;
}

.prodtl-txt p {
    font-size: 1.125rem;
    color: #7e7e7e;
}

.quantitySec h4 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.quantitySec .number {
    padding: 0;
    font-size: 1rem;
}

.quantitySec .number .minus {
    background: #F7F6FB;
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #CCCCCC;
    border-radius: 7px;
    padding: 0;
    cursor: pointer;
}

.quantitySec .number .plus {
    background: #F7F6FB;
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #CCCCCC;
    border-radius: 7px;
    padding: 0;
    cursor: pointer;
}

.quantitySec .number input {
    width: 60px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #282828;
}

.number {
    background: transparent;
    padding: 1rem 0;
    border: 0;
    border-radius: 7px;
    width: 100%;
    color: #282828;
    display: flex;
    align-items: center;
}

.number input {
    background: transparent;
    border: none;
    height: 2rem;
    width: 50px;
    text-align: center;
    height: 39px;
}

.number .minus {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.number .plus {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.productNav figure img {
    width: 100%;
    /*height: 77px;*/
    object-fit: contain;
}

.btnn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.colorBox option {
    background: var(--color);
}

.productSlider-for figure img {
    height: 459px;
}

.productSlider-for figure {
    margin: 0 0 1.2rem;
    border: 1px solid #DBDBDB;
    border-radius: 15px;
    padding: 3rem 0;
}

.productSlider-nav .swiper-slide.swiper-slide-next figure {
    /* border-color: #2C7B76; */
}

.cardbutton .themeBtn {
    background: var(--theme-color);
}

.cardbutton {
    margin-top: 2rem;
}

.reviewImg figure {
    width: 135px;
    height: 135px;
    background: #E1E1E1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.reviewImg figure img {
    width: fit-content;
}

.star-review {
    display: flex;
    align-items: center;
    margin: 20px 0 15px;
    color: #F5AA27;
    gap: 5px;
}

.reviewImg+hr+h2.sectionHeading {
    font-size: 2.25rem;
    color: var(--black);
    margin: 2rem 0 1rem;
}

.reviewSec .themeBtn.mt-3 {
    background: var(--theme-color);
}

.product-heading {
    margin: 1.5rem 0;
    font-size: 3.4375rem;
    text-transform: uppercase;
    color: #1C225A;
    font-weight: 600;
}


/* product detail css end */


/* cart css start */

.cart-list ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #DCDCDC;
    border-radius: 15px;
    position: relative;
}

.cart-list ul li {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cart-list ul li figure {
    width: 222px;
    height: 214px;
    border: 1px solid #DCDCDC;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-list ul li figure img {
    width: 100%;
}

.cart-list ul li h4 {
    color: var(--black);
    width: 180px;
    line-height: 2.3rem;
    margin: 0 0 0.8rem;
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
}

.cart-list ul li h5 {
    font-size: 1.5625rem;
    color: var(--theme-color);
    font-weight: 400;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.cart-list .quantitySec .number {
    background: #F7F6FB;
    border: 1px solid #CCCCCC;
}

.cart-list .quantitySec .number .minus {
    border: 0;
    background: transparent;
    border-radius: 0;
}

.cart-list .quantitySec .number .plus {
    border: 0;
    background: transparent;
    border-radius: 0;
}

.cart-list .quantitySec {
    padding-right: 4rem;
}

.cart-list .quantitySec h6 {
    font-size: 1.25rem;
    margin: 0 0 20px;
}

.cart-list div {
    position: relative;
}

.cart-list div button.close {
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: #1C225A;
    opacity: 1;
    text-shadow: unset;
    color: var(--white);
    font-size: 15px;
    border-radius: 5px;
}

.cart-list div+div {
    margin-top: 1.5rem;
}

.cart-total {
    border-top: 1px solid #CCCCCC;
    margin-top: 1.5rem;
    padding-top: 2.5rem;
}

.cart-total h4 {
    font-size: 1.875rem;
    display: flex;
    align-items: flex-end;
    margin: 0 0 10px;
    gap: 15px;
    font-family: 'Poppins', sans-serif;
}

.cart-total h4 small {
    font-size: 15px;
    color: #282828;
}

.cart-total p {
    font-size: 22px;
    color: #54687D;
    font-weight: 500;
    font-style: italic;
    margin: 0 0 1.5rem;
    width: 62%;
    line-height: 2.25rem;
}

.cart-total .themeBtn {
    background: var(--theme-color);
}


/* cart css end */


/* checkout css start */

.check-out-form .primary-heading {
    margin-bottom: 40px;
    font-size: 3.75rem;
    font-weight: 600;
    color: #1C225A;
    text-transform: uppercase;
}

.check-out-form p {
    line-height: 16px;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #2d2e37;
}

.check-out-form p {
    font-size: 1.375rem;
    margin-bottom: 15px;
    font-weight: 500;
    color: #6B6B6B;
    font-family: "Jost", sans-serif;
}

.check-out-form .checkout-subheading a {
    color: #388980;
    font-weight: 600;
}

.check-out-form form {
    margin-top: 4rem;
    text-align: left;
}

.check-out-form form label {
    font-size: 1rem;
    text-transform: capitalize;
    color: #0F0F0F;
    font-weight: 500;
}

.check-out-form .form-control {
    min-height: 60px;
    margin-bottom: 26px;
    /* box-shadow: 7px 6px 15px 0px #d2d2d2; */
    border: 1px solid #ebebeb;
    border-radius: 10px;
    background: #EEEEEE;
}

.check-out-section input[type="checkbox"] {
    display: none;
}

.check-out-section input[type="checkbox"]+label {
    display: block;
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    /* font: 14px/20px 'Open Sans', Arial, sans-serif; */
    color: #ddd;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.check-out-section input[type="checkbox"]+label:last-child {
    margin-bottom: 0;
}

.check-out-section input[type="checkbox"]+label:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    border: 2px solid #2C7B76;
    position: absolute;
    left: 0;
    top: 0px;
    opacity: .6;
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
    bottom: 0;
    margin: auto;
}

.check-out-section input[type="checkbox"]:checked+label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.check-out-form form .checkbox label {
    color: #2D2E37;
    font-weight: 400;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
}

.check-out-form form .checkbox {
    margin-bottom: 20px;
}

.check-out-form .order-summery {
    padding: 50px 0px;
}

.chkot-pag .primary-heading {
    margin-bottom: 15px;
    text-align: left !important;
}

.bb-1 {
    border-bottom: 1px solid #f8f8f8;
    padding: 10px 0px;
    margin-bottom: 10px;
}

.order-summery .row span {
    font-size: 18px;
    font-weight: 500;
    color: #2d2e37;
}

.order-summery input.form-control {
    margin-bottom: 10px;
    box-shadow: none;
    background: #EEEEEE;
    padding: 0 20px;
}

.d-btn {
    border-radius: 5px;
    background-color: #388980;
    font-size: 20px;
    color: #ffffff;
    display: inline-block;
    padding: 16px 88px;
    text-transform: uppercase;
    transition: 0.7s;
}

.order-summery .row span {
    font-size: 26px;
    font-weight: 500;
    color: #2D2E37;
}

.order-summery .d-btn {
    padding: 14px 88px;
    background: var(--theme-color);
    font-size: 1rem;
    font-weight: 600;
}

.check-out-section.chkot-pag {
    border-top: 1px solid rgb(112 112 112 / 50%);
    padding-top: 3rem;
}

.check-out-section.chkot-pag hr {
    border-color: #707070;
    margin-top: 3rem;
}

.order-summery .themeBtn {
    background: var(--primary-color);
    font-size: 1rem;
    border: 0;
    font-weight: 600;
}

.order-summery .d-btn:hover {
    background: var(--theme-color);
    color: var(--white);
}

.order-summery .themeBtn:hover {
    background: var(--primary);
    color: var(--white);
}


/* checkout css end */


/* payment  */

.check-out-section.payment-page {
    border-top: 1px solid rgb(112 112 112 / 50%);
    padding: 6rem 0;
}

.check-out-section input[type="checkbox"]+label:last-child {
    padding-left: 50px;
}

.check-out-section.payment-page .form-group label {
    font-size: 1rem;
    color: #0F0F0F;
    text-transform: capitalize;
    font-weight: 500;
}

.check-out-section.payment-page .form-group .form-control {
    border-radius: 0;
}

.check-out-section.payment-page .checkOne h5 {
    font-size: 1.25rem;
    color: #2D2E37;
    text-transform: uppercase;
    margin: 0;
}

.check-out-section.payment-page .checkOne {
    font-size: 1.125rem;
    color: #2D2E37;
    font-weight: 400;
}

.check-out-section.payment-page .themeBtn.w-100 {
    font-size: 1rem;
    border: 0;
    margin-top: 2rem;
    background: var(--theme-color);
}

ul.payment-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 0 0 4rem;
}

ul.payment-card li input {
    width: 28px;
    height: 28px;
    margin: auto;
}

ul.payment-card li label {
    margin: 0;
}

ul.payment-card li {
    display: flex;
    align-items: center;
    gap: 20px;
}


/* payment  */
