@charset "utf-8";

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

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

/* font-family: "Spinnaker", sans-serif; font-family: "Jost", sans-serif; font-family: "Inter", sans-serif; */


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* ------Scrollbar CSS Start----- */

/* Firefox */

/* Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 5px;
}
*::-webkit-scrollbar-track {
    background: var(--white);
}
*::-webkit-scrollbar-thumb {
    background-color: var(--black);
    border-radius: 5px;
   border: 0px;
}

/* ------Scrollbar CSS End----- */



/*--- Common Style Start---*/

:root {
    --black: #233038;
    --dark: #101010;
    --white: #fff;
    --blue: #4777FB;
    --menu: #000000;
    --light-gray: #878787;
    --light-white: #F7F8FC;
    --body-font:  "Inter", sans-serif;
    --heading: 'Jost', serif;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 23px;
    color: var(--black);
    font-family: var(--body-font);
}

p {
    padding: 0;
    font-weight: 500;
}
p:last-child {
    margin-bottom: 0;
}
strong{font-weight: 700;}

a {
    display: inline-block;
    text-decoration: none !important;
    -webkit-transition: all 300ms ease-in-out;
   -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

a:hover,
a:focus {
    color: var(--color-black);
}

figure {
    margin: 0;
    padding: 0;
   display: block;
}

img {
    width: 100%;
    height: 100%;
}

h1,
h2,
.heading {
    line-height: normal;
   font-weight: 600;
  margin-bottom: 5px;
}

h3 {
    font-size: 22px;
}


h4 {

    font-size: 20px;

}



h5 {

    font-size: 18px;

}



h6 {

    font-size: 16px;

}



ul {

    padding-left: 0px;

    margin-bottom: 0px;

}



/*--- Common Style End---*/

/* ==========loader common css========== */
.loader-off.loaderWrap {
    opacity: 0;
    visibility: hidden;
}
.loader img {
    width: 50px;
}

.loaderWrap {
  position: fixed;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 300ms ease-in-out; 
}
.loader{
    animation: loader 2s infinite linear;
}
/* ============Loader Two CSS Start=============== */

@keyframes loader {
    0% {
      transform: rotate(-45deg);
    }
    50% {
      transform: rotate(-135deg);
    }
    100% {
      transform: rotate(-225deg);
    }
  }


/*--- Bootstrap Form Start ---*/

.form-control {
    height: 40px;
    border: 1px solid var(--white);
    padding: 10px 15px;
    background-color: var(--white);
    font-size: 13px;
    color: var(--black);
    letter-spacing: 0;
    border-radius: 0;
    box-shadow: none !important;
}

.form-control:focus {
    outline: none !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
}

select.form-control:not([size]):not([multiple]) {
    height: 50px;
}

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

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

.sec-space {
    padding: 60px 0;
}

.sec-space-bottom {
    padding: 0 0 60px;
}

.sec-space-top {
    padding: 60px 0 0;
}

/*- Bootstrap Form End -*/

/*-- Button Start --*/

.btn {
    border-radius: 5px;
    height: 45px;
    line-height: 45px;
    padding: 0 25px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
    border: 1px solid transparent;
    text-transform: uppercase;
    position: relative;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

buton:focus,
.btn:focus,
buton:active,
.btn:active {
    outline: none;
    box-shadow: none !important;
    border: 1px solid transparent;
}

.btn-solid {
    background: #0D9B7A;
    color: var(--white);
    z-index: 9;
    position: relative;
    border: 1px solid transparent;
    transition: all .4s;
}

.btn-solid:hover {
    background: #5d0087;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    z-index: 9;
    position: relative;
    height: auto;
    line-height: normal;
    transition: all .4s;
    padding: 0px;
    font-weight: 600;
}
.btn-outline:before {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--black);
    height: 1px;
    width: 100%;
    content: '';
    z-index: -1;
    transition: all .4s;
}

.btn-outline:hover::before {
    border: 1px solid var(--black);
    border-top: 0px;
    height: 1px;
    width: calc(100% + 15px);
    transition: all .4s;
}

/*-- Button End --*/

/*--- TITLE Start---*/

.section-title h3 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 800;
    margin-bottom: 0px;
    font-family: var(--heading);
}
.section-title h6 {
    font-size: 14px;
    color: var(--green-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.section-title {
    margin-bottom: 30px;
}

/*--- TITLE End---*/

/*----   HEADER  START  ----*/

.main-header {
    margin: 0;
    padding: 0;
    /* position: absolute; */
    width: 100%;
    z-index: 9;
    background: #f9edff00;
    /* display: none; */
}

.navbar {
    padding: 0;
    justify-content: space-between;
}
.navbar-brand {
    padding:10px 0;
}
.brandlogo {

}

.navbar-brand img {
    height:60px;
    width: auto;
}
.navbar-collapse ul li {
    margin-right: 40px;
    position: relative;
}
.navbar-collapse ul li:last-child {
    margin-right: 0px;
}

.navbar-collapse ul li>a {
    color: var(--menu);
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    z-index: 9;
    text-transform: uppercase;
}

.navbar-collapse ul li.active>a,
.navbar-collapse ul li:hover>a {
    color: #0D9B7A;
}

.navbar-collapse ul li>ul.dropdown-menu li a.dropdown-item::before {
    left: 95%;
    background: #3f74f573;
}

.navbar-text {
    padding: 13px 0;
    margin-left: 90px;
}

.navbar-text ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.navbar-text ul li {
    margin-right: 9px;
    position: relative;
    z-index: 9;
}

.navbar-text ul li a {
    display: inline-block;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
}

.navbar-text ul li:hover a img {
    filter: brightness(0) invert(0);
    transition: all .3s;
}

.navbar-text ul li:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--blue);
    height: 0px;
    width: 0px;
    border-radius: 50%;
    content: '';
    z-index: -1;
    transition: all .4s;
}

.navbar-text ul li:hover::before {
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--blue);
    content: '';
    height: 0px;
    width: 0px;
    z-index: -1;
    transition: all .4s;
}

.navbar-text ul li:last-child {
    margin-right: 0px;
}

.navbar-text ul li a img {
    width: auto;
    height: 14px;
}

.navbar-collapse ul li>ul {
    position: absolute;
    min-width: 200px;
    z-index: 99;
    background: #dedede;
    top: 100%;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all .4s
}

.navbar-collapse ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: all .4s;
}

.navbar-collapse ul li>ul>li>a {
    display: inline-block;
    padding: 5px 10px;
}

/*---   HEADER END   ---*/

/*---   BANNER START   ---*/

.allslider .owl-nav {
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -2%;
    width: 104%;
    display: flex;
    justify-content: space-between;
    padding: 0;
}
.allslider .owl-nav button {
    margin: 0 !important;
}
.allslider .owl-nav button i {
    color: #000;
    font-size: 50px;
}
.allslider .owl-nav [class*='owl-']:hover{
    background:transparent !important;
}
.allslider .owl-nav [class*='owl-']:focus{
    outline: none !important;
}

.bannerarea {
    position: relative;
}
.homebanner:after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1f2b45;
    /* background: linear-gradient(172deg, rgba(42, 123, 155, 0) 1%, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.79) 100%); */
    background: linear-gradient(172deg, #2a7b9b00 1%, #ffffff00 0%, #0000009e 100%);
}
.bannerinfo {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    z-index: 1;
    transform: translateY(-50%);
}
.bannertxt {
    width: 60%;
}

.bannertxt h2, .bannertxt h1{
    color: #ffffff;
    font-size: 46px;
    line-height: 50px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: var(--heading);
    text-transform: uppercase;
}
.bannertxt h3, .bannertxt h4{
    color: #ffffff;
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: var(--heading);
/*     text-transform: uppercase; */
}
.bannertxt p{
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
}

.banner-home{
    position: relative;
}

.homebanner {
    position: relative;
    padding-top: 100vh;
}

.homebanner img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}


/*---   BANNER END   ---*/


/*--  Footer Start  --*/

.footer-main {
    background: #1f6b78;
}
.ft-logo .navbar-brand img {
    height: 88px;
    filter: invert(1);
}
.footer-link-wrapper {
    padding: 40px 0 0;
}

.quick-link-box h5 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 10px;
}
.quick-link-box p{
    font-size: 13px;
    line-height: 20px;
}
.contact-book .headsocial {
    margin-top: 30px;
}

.quick-link-box ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.quick-link-box ul li {  
    font-size: 12px;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}
.quick-link-box ul li+li {
    margin-top: 5px;
}

.quick-link-box ul li a {
    color: var(--dark);
    text-transform: uppercase;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
}

.headsocial a {
    width: 48px;
    height: 48px;
    border-radius: 5px;
    line-height: 48px;
    font-size: 42px;
    color: #fff;
}

.headsocial a:hover {
    color: #03989e;
/*     background: #edfeff; */
}
.footer-main .row [class*="col-"] {
    position: relative;
}

.ft-social ul {
    list-style: none;
}

.ft-social ul li {
    margin-right: 12px;
    position: relative;
    z-index: 9;
}

.ft-social ul li:last-child {
    margin-right: 0px;
}

.ft-social ul li a {
    height: 28px;
    width: 28px;
    line-height: 26px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    transition: all .4s;
    -webkit-transition: all .4s;
   -o-transition: all .4s;
    -ms-transition: all .4s;
    -moz-transition: all .4s;
}

.ft-social ul li a img {
    height: 16px;
}

.ft-social ul li a:before {
    position: absolute;
    background: var(--blue);
    width: 0px;
    height: 0px;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
    -moz-transition: all .4s;
}

.ft-social ul li a:hover::before {
    width: 32px;
    height: 32px;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
    -moz-transition: all .4s;
}

.copy-right {
    padding: 15px 0;
    margin-top: 30px;
    background-color: #1f6b78;
    border-top: 1px solid #2c8796;
}

.copy-right p {
    line-height:22px;
    font-size: 14px;
    color:#fff;
    font-weight:500;
}

.copy-right p a {
    color: #fff;
}

.contact-book ul li {
    position: relative;    
    color:#fff;
    font-weight: 500;
}

.contact-book ul li a {
    text-transform: none;
    position: relative;
    color: #b5fdff;
    font-size: 14px;
    line-height: 20px;
}
.contact-book ul li a:not([href]):not([tabindex]){margin-bottom: 10px;}

/*--  Footer End  --*/

.sideimg {
    height: 100%;
    position: relative;
}
/* .sideimg:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: #ffffff4d;
    width: 180px;
    height: 180px;
    border-radius: 50%;
} */
.sideimg img {
    object-fit: cover;
    border-radius:10px;
}
.bg{
    background-color:#f7f7f7;;
}
.bg1{background-color: #03989e;}

.bg1 h2, .bg1 h3, .bg1 h4, .bg1 p, .bg1 ul li{color: #fff;}

.servicebox {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.servicecon {
    border-radius: 10px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #03989e;
    /* background: linear-gradient(to bottom, #f2e9d70b, #233038e6); */
    padding: 20px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform:translateY(-20px);
     transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
}
.servicebox:hover .servicecon{
    opacity: 1;
   transform:translateY(0);
}
.serviceimg {
    position: relative;
    padding-top:56%;
}

.serviceimg img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}
/* .sertext {
    padding: 50px 0;
} */
.sertext h3 {
    font-size: 30px;
    line-height: 36px;
    font-family: var(--heading);
    text-transform: capitalize;
}

.installationbox {
    display: flex;
}

.installationbox li {
    /* border: 1px solid #ccc; */
    border-right: 0;
    padding: 15px;
    flex: 1;
    text-align: center;
}

/* .installationbox li:nth-last-child(1) {
    border-right: 1px solid #ccc;
} */

.instalbox h3 {
    font-size: 17px;
    line-height: 24px;
    color: #008080;
    font-weight: 600;
}
.instalbox h3 strong {
    font-weight: 300;
    font-style: italic;
    color: #000;
    display: block;
}
.instalbox p{
    font-size: 14px;
    line-height: 22px;
}
.iconimg {
    border: 2px dotted #03989e;
    border-radius: 10px;
    padding: 18px;
    width: 100px !important;
    height: 100px !important;
    margin: auto;
    margin-bottom: 20px;
}
.instalbox img {
    /* width: 100px !important;
    height: 100px !important; */
    filter: invert(27%) sepia(51%) saturate(2870%) hue-rotate(159deg) brightness(98%) contrast(101%);
    /* border: 2px dotted #233038;
    border-radius: 50px;
    margin-bottom: 20px; */
    padding: 5px;
}
.stepbox {
    padding: 20px;
    color: #233038;
    box-shadow: 0px 0px 30px 0px #0f495242;
    background: #fff;
    border-radius: 10px;
    margin: 0 26px;
    min-height: 190px;
    height: 100%;
}

.stepbox h4 {
    font-size: 50px;
    line-height: 56px;
    color: #008080;
}
.stepbox h3, .projectcon h3{
    font-family: var(--heading);
    text-transform: capitalize;
    color: #233038;
}
/*  */

.procesec .procesecti{position: relative;}

/* .procesec .procesecti:nth-child(3):after {
    transform: rotate3d(120, 8, -1, 160deg) !important;
} */
.procesec .procesecti+.procesecti:after {
    position: absolute;
    content: "";
    background: url(../images/arow2.png);
    width: 60px;
    height: 20px;
    top: 43%;
    left: -30px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* transform: rotate(-5deg); */
    /* filter: invert(22%) sepia(99%) saturate(2124%) hue-rotate(164deg) brightness(100%) contrast(102%); */
}
/* .procesecti:nth-last-child(2) {order: 1;} */

/* .procesec .procesecti:nth-last-child(2):after {
    display: none;
} */
/* .procesec .procesecti:nth-last-child(1)::after {
    left: inherit;
    right: -30px;
    transform: rotate3d(0, 30, 1, 160deg);
} */

/* .procesecti:nth-child(3)::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 20px;
    top: 220px;
    left: 42%;
    z-index: 1;
    background-position: center;
    transform: rotate3d(4, 8, -1, 160deg);
    filter: invert(22%) sepia(99%) saturate(2124%) hue-rotate(164deg) brightness(100%) contrast(102%);
    background: url(../images/arow1.png);
    background-size: contain;
} */

/*  */
.projectimg {
    position: relative;
    padding-top: 150%;
    border-radius: 10px;
    overflow: hidden;
}
.projectimg:after{
    position: absolute;
    content: "";
    background: linear-gradient(180deg, #2a7b9b00 0%, #ffffff00 0%, #000000 100%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.projectcon p {
    font-size: 14px;
    line-height: 18px;
    font-weight: normal;
    min-height: 120px;
}

.projectimg img {position: absolute;top: 0;left: 0;object-fit: cover;}
.projectbox {
    position: relative;
    /* padding-bottom: 40px; */
}
.projectcon {
    position: absolute;
    bottom: 0;
    left: 0;    
    /* margin: 0 10px; */
    padding: 15px;
    /*box-shadow: 0px 0px 10px 0px #0f495242;
    background: #fff;
     max-height: 80px; */
    border-radius: 10px;
    /* overflow: hidden; */
    transition: 0.5s;
    /* min-height: 240px; */
    z-index: 1;
}
.projectcon h3, .projectcon p{color: #fff;}
.projectbox:hover .projectcon{
    max-height: 100%;
}

.testimonialcon h2 {
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 20px;
    font-family: var(--heading);
    text-transform: uppercase;
    font-weight: 500;
}

.testimonialcon p {
    font-size: 20px;
    line-height: 28px;
}

.linedot .owl-dots button span {
    width: 50px !important;
    height: 5px !important;
}

.linedot .owl-dots {
    text-align: left;
    margin-top: 40px !important;
}

.logobox {
    height: 100px;
    padding: 5px;
}

.logobox img {
    object-fit: contain;
    filter: grayscale(1);
}

.parallaxoverlay{position: relative;}
.parallaxoverlay .container{position: relative;z-index: 1;}
.parallaxoverlay:after{
    position: absolute;
    content: "";
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: #2330389e;
}
.parallaxoverlay p, .parallaxoverlay h2, .parallaxoverlay h3{color: #fff;}
.contact-book ul li a span {
    font-size: 11px;
}

/* .ftrsocial a {
    background: #1c1c1c;
}

.ftrsocial a:hover {
    color: #000;
} */

.lotxt {
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    align-items: center;
}

.lotxt img {
    width: 135px;
    filter: grayscale(1);
}

.lotxt h3 {
    text-align: left;
    flex: 1;
    font-weight: 200;
    font-size: 18px;
    line-height: 25px;
    padding: 0 0 0 20px;
    text-transform: uppercase;
}
.navbar-text .headsocial a {
    color: #000000;
    margin: -3px 10px 0 10px;
}

.blog-content {
    display: block;
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    min-height: 222px;
}

.blog-content h5 {
    font-family: var(--heading);
    text-transform: capitalize;
    color: #233038;
    font-size: 20px;
    line-height: 26px;
}


.inner_banner.parallax:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: #008080a3;
    width: 100%;
    height: 100%;
}

.inner_banner.parallax .container {
    z-index: 1;
    position: relative;
}

.inner_banner.parallax .heading h1 {
    color: #fff;
    font-family: var(--heading);
    font-weight: 600;
}