html {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    background-color: #F7F7F5;
    font-size: 16px;
    color: #90969B;
}

a, a:hover{
    color: inherit;
    text-decoration: none;
}

.btn:focus, .btn-close:focus{
    box-shadow: none;
}

/*Top Nav*/
.top-nav{
    background-color: #174A76;
    padding: 13px 0px;
}
.tn-data{
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 12px;
    transition: all 0.2s ease-in-out;
}
.tn-data:hover svg{
    transition: all 0.2s ease-in-out;
}
.tn-data svg path{
    transition: all 0.2s ease-in-out;
}
.tn-data:hover, .tn-data:hover svg path{
    color: #11bcd6;
    fill: #11bcd6;
}
.tn-data:hover svg{
    transform: rotate(45deg);
}

/*Header*/
.header {
    background: transparent;
    z-index: 9;
    width: 100%;
    transition: all 0.2s ease-in-out;
    border-bottom: 1px solid #ffffff99;
    position: sticky;
    top: 0px;
    left: 0px;
}
.sticky-bar{
    background-color: #174a76;
}
.navbar-brand{
    padding: 20px 50px 20px 0px;
    border-right: 1px solid #ffffff99;
}
.navbar-nav .nav-link{
    display: block;
    color: #FFF;
    font-size: 18px;
    padding: 0px !important;
    transition: all 0.2s ease-in-out;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active{
    color: #11bcd6;
}
.navbar-nav .nav-item{
    margin: 0px 27px;
    padding: 9px 0px;
}
.navbar-nav .nav-item:first-child{
    margin-left: 0px;
}
.navbar-nav .nav-item:last-child{
    margin-right: 0px;
}

.logo{
    width: fit-content;
    margin-bottom: 4px;
}
.nav-item .btn-theme{
    padding: 14px 40px;
}
.btn-theme{
    padding: 19px 40px;
    border-radius: 0px;
    background-color: #11bcd6;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}
.btn.btn-theme:hover{
    background-color: #174A76;
    color: #ffffff;
}
.sticky-bar .btn.btn-theme:hover{
    background-color: #174A76;
    color: #ffffff;
    border-color: #ffffff;
}
#navbar-hamburger.show{
    display: block;
}
#navbar-hamburger, #navbar-close{
    display: none;
}
#navbar-close.show{
    display: block;
}           
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0rem;
}

@media all and (min-width: 1200px) {
.navbar .nav-item .dropdown-menu{ display: none; }
.navbar .nav-item:hover .dropdown-menu{ display: block; }
.navbar .nav-item .dropdown-menu{ margin-top:0; }
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 10px;
    margin-top: 0px;
    margin-bottom: -2px;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid !important;
    border: solid #ffffff !important;
    border-width: 0 2px 2px 0 !important;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(45deg);
    border-right: 0em solid transparent; 
    border-bottom: 0; 
    border-left: 0em solid transparent; 
}
.dropdown-menu{
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0px;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    border: 0px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
    background: #fff 0% 0% no-repeat padding-box;
    box-shadow: none;
    border-radius: 0px;
}
.dropdown-item{
    display: block;
    width: 100%;
    padding: 12px 20px;
    clear: both;
    font-weight: 600;
    font-size: 16px;
    color: #174a76;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: 0px;
    border-bottom: 1px solid #e2e2e2;
}
.dropdown-menu li:last-child .dropdown-item{
    border-bottom: 0px;
}
.nav-item .nav-link.active.dropdown-toggle::after{  
    border-top: 0.3em solid !important;
    border: solid #0b2f42 !important;
    border-width: 0 2px 2px 0 !important;
}
.nav-item .nav-link:hover.dropdown-toggle::after{
    border-top: 0.3em solid !important;
    border: solid #11bcd6 !important;
    border-width: 0 2px 2px 0 !important;
}
.dropdown-item:focus, .dropdown-item:hover, .dropdown-item.active {
    color: #11bcd6;
    background-color: #f9f9fb;
}
.dropdown .dropdown-menu{
    -webkit-transition: all 500ms ease-in;
    -moz-transition: all 500ms ease-in;
    -ms-transition: all 500ms ease-in;
    -o-transition: all 500ms ease-in;
    transition: all 500ms ease-in;
}

@media all and (min-width: 1200px) {
.navbar .dropdown-menu-end{ right:0; left: auto; }
.navbar .nav-item .dropdown-menu{ display:block; opacity: 0;  visibility: hidden; transition:.3s; margin-top:0; }
.navbar .dropdown-menu.fade-down{ top:80%; transform: rotateX(-75deg); transform-origin: 0% 0%; }
.navbar .dropdown-menu.fade-up{ top:180%; }
.navbar .nav-item:hover .dropdown-menu{ transition: all 0.3s ease-in-out; opacity:1; visibility:visible;  top: 44px; transform: rotateX(0deg); }
}

/* close */
.navbar-toggler{
    padding: 0px;
    border: 0px;
}
.menu_toggle{
    width: 50px !important;
    height: 50px;
    padding: 9px 12px 9px;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease-in;
    text-align: left;
    position: relative;
    right: 0;
    top: 0px;
    z-index: 90;
    border-radius: 3px;
    line-height: 0px;
}
.menu_toggle span {
    height: 4px;
    width: 100%;
    background: #ffffff;
    display: inline-block;
    transition: all 0.5s cubic-bezier(.62, .43, .35, 1.47);
    margin: 2px 0px;
}

/* toggle icon animation */
#check1:checked~.menu_toggle span:nth-child(1) {
    width: 100%;
    transform: rotate(45deg) translateY(6px) translateX(6px);
}

#check1:checked~.menu_toggle span:nth-child(2) {
    width: 0;
}

#check1:checked~.menu_toggle span:nth-child(3) {
    width: 100%;
    transform: rotate(-45deg) translateY(-6px) translateX(6px);
}

#check1{
    display: none;
}

.navbar-nav .nav-link.show {
    color: #11bcd6;
}
.navbar-nav .nav-link.dropdown-toggle.show::after {
    border-color: #11bcd6 !important;
}

/*Hero Sec*/
.hero-bg{
    width: 100%;
    height: 100%;
    position: relative;
    background-image: url(../img/hero-bg.png);
    background-size: cover;
    background-position:  bottom right;
    margin-top: -116px;
}
.inner-hero-bg{
    width: 100%;
    height: 100%;
    position: relative;
    background-image: url(../img/hero-bg.png);
    background-size: cover;
    background-position: top 40% center;
    margin-top: -116px;
}
.inner-hero-bg::before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #091f3380;
}
.shape01{
    position: absolute;
    bottom: -2px;
    left: 0px;
}
.hero-sec {
    padding: 216px 0px 225px;
}
.hero-title{
    color: #FFF;
    font-family: "Oswald", sans-serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 84px;
}
.hero-text{
    color: #FFF;
    font-size: 22px;
}

/*About*/
.about-bg{
    background-image: url(../img/about-bg.jpg);
    background-size: cover;
    background-position: center;
    margin-top: -206px;
    padding: 286px 0px 80px;
}
.sec-pad{
    padding: 80px 0px;
}
.about-bg .box002{
    background-color: #ffffff;
    padding: 50px;
}
.small-title{
    color: #11bcd6;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.title{
    color: #174A76;
    font-family: "Oswald", sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 56px;
}
.about-img-box{
    position: relative;
}
.sun-icon{
    position: absolute;
    left: -55px;
    bottom: 54px;
}
.br-20{
    border-radius: 20px;
}

/*Services*/
.leaves-bg{
    background-image: url(../img/leaves-bg.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}
.leaves-bg::after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #F0F0F066;
}
.white-box{
    width: 100%;
    height: 100%;
    background-color: #FFF;
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.05);
    padding: 20px 20px 30px;
}
.wb-icon-box{
    max-width: 90px;
    height: 90px;
    border-radius: 50%;
    border-bottom: 3px solid #174A76;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -45px auto 20px;
}
.sub-title{
    color: #174A76;
    font-family: "Oswald", sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
}

/*Why Choose*/
.why-choose-bg{
    background-image: url(../img/why-choose-bg.jpg);
    background-size: cover;
    background-position: center;
}
.right-shadow{
    box-shadow: -10px 10px 0px 0px #174A76;
}
.why-choose-bg .box002{
    background-color: #ffffff;
    padding: 50px 80px 0px 50px;
}
.why-choose-bg .grey-box{
    background-color: #F0F0F0;
    padding: 50px;
    margin-left: -50px;
    position: relative;
}
.grey-box{
    background-color: #F0F0F0;
    padding: 56px 68px 88px 210px;
    margin-left: -210px;
    position: relative;
}
.grey-box .water-tube{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -61px;
}
.grey-box .cust-ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}
.grey-box .cust-ul li{
    display: flex;
    gap: 14px;
    margin-bottom: 35px;
}
.grey-box .cust-ul li img{
    height: fit-content;
    margin-top: 4px;
}
.grey-box .cust-ul li:last-child{
    margin-bottom: 0px;
}

/*Portfolio*/
.portfoli-sec{
    padding: 0px 20px;
}
.gallery-img-box{
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 351px;
}

/*Service Aere*/
.bg-theme{
    background-color: #174A76;
    position: relative;
}
.bg-theme::after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url(../img/shape02.png);
}
.off-white-box{
    width: 100%;
    height: 100%;
    background-color: #F0F0F0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.bg-theme .off-white-box{
    background-color: #F0F0F0;
}
.owb-left{
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #B5CFE9;
}

/*Testimonial*/
.pool-water-bg{
    background-image: url(../img/pool-water-bg.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}
.pool-water-bg::after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #f0f0f033;
}
.testimonial-box{
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    padding: 30px 30px 40px;
}
.comma-box{
    max-width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #11bcd6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.testimonial-box p{
    font-style: italic;
    margin-bottom: 20px;
}
.testi-name{
    color: #174A76;
    font-family: "Oswald", sans-serif;s
    color: #174A76;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    display: flex;
    gap: 9px;
}
.testi-name::before{
    content: '';
    width: 14px;
    height: 2px;
    background-color: #174A76;
    margin-top: 14px;
}

/*Map & Contact Form*/
.right-shadow iframe{
    width: 100%;
    height: 762px;
}
.form-label{
    color: #174A76;
    font-size: 18px;
    font-weight: 600;
}
.form-control{
    background-color: #ECECEC;
    border-radius: 0px;
    border: 0px;
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
}
.form-control:focus {
    color: #174A76;
    background-color: #ECECEC;
    border: 0px;
    box-shadow: none;
}
.form-select{
    --bs-form-select-bg-img: url(../img/icon/select-icon.svg);
    background-color: #ECECEC;
    border-radius: 0px;
    border: 0px;
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    cursor: pointer;
}
.form-select:focus{
    box-shadow: none;
}
textarea{
    resize: none;
}

/*About Page*/
.white-box.services{
    padding: 30px;
}
.services-box{
    display: flex;
    gap: 10px;
}
.services-box img{
    height: fit-content;
    margin-top: 3px;
}
.mini-title{
    color: #174A76;
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
}
.box001{
    width: 100%;
    height: 100%;
    background-color: #F0F0F0;
}
.box001 .top{
    padding: 30px;
    background-color: #B5CFE9;
    text-align: center;
}
.box001 .bottom, .white-box .bottom{
    padding: 20px;
}
.bg-theme .shape06{
    position: absolute;
    right: 0px;
    top: -99px;
}

/*Pool Construction*/
.video-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.btn-close{
    background-color: #fff;
    padding: 10px;
    border-radius: 50px;
    position: absolute;
    right: -10px;
    top: -20px;
    opacity: 1 !important;
}
.shape04{
    position: absolute;
    top: -98px;
    left: 0px;
    z-index: 1;
}
.shape05{
    position: absolute;
    right: 0px;
    bottom: 262px;
}

/*Contact Us Page*/
.git-box{
    width: 100%;
    height: 100%;
    background-color: #F0F0F0;
    padding: 30px 20px 54px;
}
a.git-box .sub-title, a.git-box p{
    transition: all 0.2s ease-in-out;
}
a.git-box:hover .sub-title, a.git-box:hover p{
    color: #11bcd6;
}
.leaves-bg .shape05{
    top: -98px;
    z-index: 1;
}
.water-tube.cust-po{
    top: -83px;
    transform: translateY(0px);
    right: -138px;
}

/*Store Front*/
.visit-sec{
    background-image: url(../img/visit-us-img.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 150px 0px;
}
.visit-sec::after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #08162199;
}
.visit-title{
    color: #FFF;
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-size: 76px;
    font-weight: 700;
}

/*Portfolio Page*/
.nav-pills{
    gap: 15px;
    justify-content: center;
}
.nav-pills .nav-link{
    background-color: #DADADA;
    color: #000;
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    font-weight: 700;
    border-radius: 0px;
    padding: 11px 40px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link, .nav-pills .nav-link:hover{
    color: #FFFFFF;
    background-color: #11bcd6;
}
.img-box{
    overflow: hidden;
}

/*Footer*/
.footer.bg-theme::after{
    background-image: url(../img/shape03.png);
}
.p-footer-top{
    padding-top: 47px;
    /*border-bottom: 1px solid #ffffff33;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 65px;
}
.footer hr{
    width: 1046px;
    opacity: 1;
    border-color: #ffffff33;
    margin: 40px 0px;
}
.f-ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}
.f-ul li{
    margin-bottom: 12px;
}
.f-ul li:last-child{
    margin-bottom: 0px;
}
.f-ul li a{
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.2s ease-in-out;
}
.f-ul li a:hover{
    color: #11bcd6;
}
.social{
    display: flex;
    align-items: center;
    gap: 11px;
}
.social-box{
    min-width: 55px;
    height: 55px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}
.social-box:hover{
    background-color: #11bcd6;
}
.social-box svg path{
    transition: all 0.2s ease-in-out;
}
.social-box:hover svg path{
    fill: #ffffff;
}
.s-footer{
    padding: 25px 0px;
    text-align: center;
    color: #FFF;
    font-weight: 400;
}

.text-theme{
    color: #174A76;
}
.fw-400{
    font-weight: 400;
}
.fw-600{
    font-weight: 600;
}
.fw-700{
    font-weight: 700;
}
.o-fw-700{
    font-family: "Oswald", sans-serif;
    font-weight: 700;
}

.ft-22{
    font-size: 22px;
}
.ft-20{
    font-size: 20px;
}
.ft-18{
    font-size: 18px;
}

.z-1{
    position: relative;
    z-index: 1;
}
.z-2{
    position: relative;
    z-index: 2;
}

.mb-50{
    margin-bottom: 50px;
}
.mb-40{
    margin-bottom: 40px;
}
.mb-30{
    margin-bottom: 30px;
}
.mb-20{
    margin-bottom: 20px;
}