@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600&display=swap');
* {
  padding: 0;
  margin: 0;
}

body,
html {
  font-size: 16px;
  font-family: 'Rubik', sans-serif;
  background: #fff;
  padding: 0;
  margin: 0;
}

a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  list-style: none;
  outline: none !important;
  /* font-family: 'Jost', sans-serif; */
  text-decoration: none !important;
  color: #555;
}
a:hover{
  color: #8996dc;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: 'Jost', sans-serif;
  color: #333;
}
::-webkit-scrollbar{
  background-color: #f7f7f7;
  width: 6px;
}
::-webkit-scrollbar-thumb{
  background-color: #004b77;
}

ul {
  list-style: none;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #646464;
  letter-spacing: 0.4px;
}

.btn{
  transition: all 0.4s ease-in-out;
}
.btn:hover{
  background: #ff5956;
  color: #fff !important;
}
label {
  font-size: 15px;
  font-weight: 400;
  margin: 0 0 10px 0;
  position: relative;
  color: #626264;
}

:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus, button:focus, .form-select:focus, .btn:focus, .form-check-input:focus{
  outline: 0;
  box-shadow: none;
}
.form-check-input{
  border-color: #CBCACA;
  background: #efefef;
  width: 18px;
  height: 18px;
  margin-right: 12px;
}
.form-control {
  font-size: 15px;
}
.text-info{
  color: #00C0C9 !important;
}
.text-secondary{
  color: #9FA9B9;
}
.form-check-input:checked {
  background-color: #00C0C9;
  border-color: #00C0C9;
}
/*---------placeholder----------*/

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color:#989898 !important;
  font-size: 14px;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
 color:#989898 !important;
 opacity:  1;
 font-size: 14px;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
 color:#989898 !important;
 opacity:  1;
 font-size: 14px;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color:#989898 !important;
 font-size: 14px;
}
::-ms-input-placeholder { /* Microsoft Edge */
 color:#989898 !important;
 font-size: 14px;
}

::placeholder { /* Most modern browsers support this now. */
 color:#989898 !important;
 font-size: 14px;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
.p-6{
  padding: 42px 120px;
}
.plr-3{
  padding: 0 5px;
}
.p-50{
  padding: 0 50px;
}
/*-------header----------*/

.upper-header{
  position: relative;
  width: 100%;
  padding: 0px 50px;
  background: #462b34;
  border-bottom: 1px solid #eae0d9;
}
.top-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.left-info {
  position: relative;
  padding: 8px 0;
  margin-bottom: 0;
  display: flex;
}
.left-info li {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  font-weight: 600;
  margin-right: 30px;
  /* padding-left: 25px; */
}
.left-info li a{
  color: #fff;
}
.left-info i{
  font-size: 14px;
  margin-right: 4px;
  vertical-align: text-bottom;
}
.right-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8px 0;
}
.list{
  margin-bottom: 0;
  display: flex;
}
.list li {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-right: 15px;
}
.list li a {
  color: #fff;
}
.social-links{
  display: flex;
}
.social-links li {
  position: relative;
  display: inline-block;
  font-size: 15px;
  margin-right: 13px;
}
.social-links li a {
  color: #fff;
}
.social-links li a:hover {
  color: #ff5956;
}
.left-info li p {
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  font-weight: 600;
}

.search_ic{
  /* border-left: 1px dashed #fff; */
  margin-left: 10px;
}
.res_upheader{
  position: relative;
}
.resp_search_input{
  display: none;
  position: absolute;
  top: 47px;
  right: 0;
  padding: 15px;
  background: #0077c0;
  z-index: 999;
  width: 100%;
}

/*--------Footer------------*/
footer{
  padding: 100px 0 10px 0;
  background: #005385;
  position: relative;
  z-index: 1;
}
/* footer::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/pattern-2.png) no-repeat 0 0;
  width: 100%;
  height: 100%;
  background-size: 100%;
  opacity: 0.1;
} */
footer .row{
  position: relative;
  z-index: 1;
}
.us_link{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    padding: 0;
    margin-bottom:0;
}
.us_link li{
  line-height: 24px;
  padding: 0 25px;
}
.us_link li a{
  font-size: 16px;
  font-weight: 400;
  color: rgb(255 255 255 / 75%);
  padding: 5px 0;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: inline-block;
}
.us_link li a:hover{
  color:#8996dc;
}
.f-menu h6 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.f-menu p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
  font-weight: 400;
  color: rgb(255 255 255 / 67%);
  letter-spacing: 0.5px;
  padding-left: 25px;
  position: relative;
}
.f-address p svg{
  width: 18px;
  margin-right: 8px;
  color: rgb(255 255 255 / 80%);
  position: absolute;
  left: 0;
  top: 3px;
}

.social_f p a{
  width: 50px;
  height: 50px;
  background: #0576ba;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  color: rgb(255, 255, 255);
  margin-right: 8px;
}
.social_f p a svg{
  width: 24px;
  color: rgb(255, 255, 255);
  margin-right: 0;
}
.social_f p a:hover{
  background: #00304c;
}
footer .border-top{
  border-top: 1px solid #ffffff75 !important;
}
.main-footer .top-info {
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  padding: 20px 0;
  margin-bottom: 45px;
}

.main-footer .top-info .logo {
  position: relative;
  text-align: center;
  padding: 12px 0;
}

.main-footer .top-info .info-block {
  position: relative;
  padding: 5px 0;
  padding-left: 65px;
  margin-left: 30px;
}

.main-footer .top-info .info-block .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-size: 35px;
  color: #fff;
}
.main-footer .top-info .info-block .icon img{
  filter: brightness(0) invert(1);
  max-height: 48px;
}
.main-footer .top-info .info-block p {
  position: relative;
  color: #fff;
  font-size: 16px;
  margin: 0;
}

.main-footer .top-info .info-block .text {
  margin: 0;
}

.main-footer .top-info .info-block p a {
  color: #fff;
  transition: .5s;
}

.main-footer .top-info .info-block p a:hover {
  color:var(--theme_primary);
}

.main-footer .top-info .info-block:before {
  position: absolute;
  content: '';
  top: 0;
  right: -15px;
  bottom: 0;
  width: 2px;
  background: rgb(255 255 255 / 20%);
}

.main-footer .top-info .column:last-child .info-block:before {
  display: none;
}
.footerLogo{
  margin-bottom: 35px;
}
.footerLogo img{
  filter: brightness(0) invert(1);
}












/* Home Banner */
/*.homeBanner{
  z-index: 1;
  position: relative;
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 150px;
  display: flex;
  align-items:center;
  z-index: 1;
}
.bannerVideo{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.homeBanner::after{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(0 0 0 / 60%);
  z-index: 0;
  height: 100%;
  content: "";
}
.bannerVideo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}*/

.homeBanner {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #0077c0 ;
  overflow: hidden;
}

.homeBanner video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.85;
}
.homeBannerTextInner{
  position: absolute;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #777777;
  -moz-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.banner_textslid .swiper-slide h2{
  font-size: 60px;
  font-weight: 900;
  color: #fff;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 60px;
  text-transform: capitalize;
  text-shadow: 1px 1px 0px black;
}
.homeBannerTextInner h1 {
  font-size: 60px;
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}
.homeBannerTextInner p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  letter-spacing: 0.6px;
  margin-bottom: 40px;
}
.videoPlay{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
  background: #0077c0;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: -35px;
  margin: 0 auto;
}
.allBtn{
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
  padding: 14px 35px;
  display: inline-block;
  text-transform: uppercase;
}
.allBtn svg{
  width: 16px;
}
.allBtnBlue{
  background-color: #0077c0;
  color: #fff;
  border: 1px solid #0077c0;
  transition: all 0.4s ease-in-out;
}
.allBtnBlue:hover{
  border: 1px solid #0077c0;
  background: #fff;
  color: #0077c0;
  border-radius: 20px 20px 20px 0;
}



/* .blog__shape img.blog-shape-1 {
  top: 20%;
  left: 0;
  z-index: -1;
} */

.blog__shape img {
  position: absolute;
}

.blog__area{
  padding: 100px 0;
  z-index: 1;
  background: #f8f8f8;
}
.section__title span {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.section__title {
  font-size: 46px;
  line-height: 60px;
  margin-bottom: 28px;
  color: #1d233a;
  font-weight: 600;
}
.section__title span::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 12px;
  width: 100%;
  height: 9px;
  background: #f2dac0;
  z-index: -1;
}
.section__sub-title {
  font-size: 20px;
  color: #0077c0;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog__title {
  max-width: 550px;
  margin: 0 auto 50px;
}
.blog__item {
  background: #ffffff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -webkit-box-shadow: 0 0 50px 20px rgb(29 35 58 / 10%);
  -moz-box-shadow: 0 0 50px 20px rgba(29, 35, 58, 0.1);
  box-shadow: 0 0 50px 20px rgb(29 35 58 / 10%);
  margin-bottom: 30px;
  min-height: 509px;
}
.blog__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  height: 235px;
}
.blog__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog__content {
  padding: 40px 35px 25px 42px;
}
.blog__date {
  margin-bottom: 22px;
}
.blog__date i {
  margin-right: 10px;
  font-size: 16px;
  color: #0077c0;
}
.blog__date p {
  margin-right: 55px;
  margin-bottom: 0;
}
.blog__content h3 a{
  color: #242424;
}
.blog__content:hover h3 a{
  color: #0077c0;
}
.blog__content h3 {
  font-size: 23px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.blog__content p{
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.blog__link {
  margin-top: 15px;
  margin-bottom: 16px;
  display: inline-block;
}
.blog__link .arrow-btn {
  color: #1d233a;
  position: relative;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.blog__link i {
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  left: calc(100% + 10px);
}
.blog__link:hover a{
  color: #0077c0;
}
.blog__shape img.blog-shape-2 {
  bottom: 10%;
  left: 14%;
  z-index: -1;
}



/* Our Businesses */
.our__businesses{
  position: relative;
  padding: 80px 0;
  z-index: 1;
}
.our__businesses::after{
  content: "";
  height: 100%;
  width: 45%;
  position: absolute;
  top: 0;
  right: 0;
  background: #0077c0;
  z-index: -1;
}
.service__title h2{
  color: #fff;
}
.service__title .section__title span::after{
  background: #3a3a9c;
}
.service__title p{
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
  font-weight: 400;
}
.our__businessesInner{
  padding-right: 70px;
}
.businessesSliderItem img{
  width: 100%;
}
.businessBtn-prev{
  display: none;
}
.businessBtn-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: #0077c0;
  left: -30px;
  border-radius: 50%;
  color: #fff;
  z-index: 11;
  display: flex;
  justify-content: center;
  align-items: center;
  border:2px solid #fff;
}

/* Share Area */
.share_prices_area{
  background: rgb(242, 245, 251);
  padding: 80px 0;
}
.sharePriceItem{
  background: #ffffff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -webkit-box-shadow: 0 0 50px 20px rgb(29 35 58 / 10%);
  -moz-box-shadow: 0 0 50px 20px rgba(29, 35, 58, 0.1);
  box-shadow: 0 0 50px 20px rgb(29 35 58 / 10%);
  margin-bottom: 30px;
  padding: 40px;
}
.sharePriceItem h4 {
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #2a2a2e;
  text-transform: uppercase;
  font-weight: 600;
}
.sharePriceItem h5 {
  margin-bottom: 45px;
  color: #39478e;
  font-weight: 600;
  letter-spacing: 2px;
}
.sharePriceItem h5 span{
  margin-right: 20px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  letter-spacing: 1px;
  color: #bbb7b4;
}
.sharePriceItem ul{
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #0077c0;
}
.sharePriceItem ul li{
  flex: 0 0 33.33%;
  max-width: 33%;
}
.sharePriceItem li h6{
  font-size: 14px;
  font-weight: 500;
  color: #0077c0;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1.5px;
}
.sharePriceItem li span{
  font-weight: 600;
  color: #2a2a2e;
  font-size: 16px;
}
.sharePriceItem p{
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
}
.sharePriceItem .disclaimerBtn{
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
}
.sustainability_left{
  padding: 200px 160px;
}
.sustainability_right{
  height: 100%;
  width: 100%;
  background-size: cover;
}
.sustainability_left h3 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 35px;
  color: #2a2a2e;
  letter-spacing: 0.5px;
}
.sustainability_left p{
  line-height: 1.7;
  letter-spacing: 0.5px;  
  margin-bottom: 35px;
}
.sustainabilityPanel{
  padding-top: 100px;
}


/* carrerSection */
.carrerSection{
  padding: 100px 0;
}
.carerSectionLeft p{
  margin-bottom: 50px;

}
.carerSectionRight img{
  width: 100%;
}

/* cleanWaterSection */
.cleanWaterSection{
  padding: 50px 0;
}
.sectionTitle{
  margin-bottom: 50px;
}
.sectionTitle30{
  margin-bottom: 30px;
}
.sectionTitle h2{
  font-size: 45px;
  font-weight: 600;
  color: #0077c0;
}
.cleanWaterLeft h3{
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 35px;
  line-height: 1.3;
  color: #0F141E;
  margin-bottom: 25px;
}
.cleanWaterLeft ul {
    margin: 15px 0;
    padding: 0;
}
.cleanWaterLeft ul li {
    display: block;
    line-height: 24px;
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
    position: relative;
    padding-left: 25px;
}
.cleanWaterLeft ul li:before {
    position: absolute;
    content: '*';
    font-size: 24px;
    font-weight: 700;
    left: 0px;
    top: 7px;
    color: #004b77;
}
.cleanWaterRight img{
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.cleanWaterLeft p{
  margin-bottom: 15px;
}
.cleanWaterLeft p b{
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  color: #242424;
}
.our__businessesInner p{
  margin-bottom: 15px;
}
.our__businessesInner ul{
  padding: 0;
  margin: 0 0 30px 0;
}
.our__businessesInner ul li{
  display: block;
  line-height: 26px;
  margin-bottom: 10px;
  color: #646464;
  position: relative;
  padding-left: 25px;
}
.our__businessesInner h5{
  margin: 20px 0;
  font-weight: 600;
}
.our__businessesInner ul li::before{
  content: '*';
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 28px;
  color: #0676ba;
}
.rightImgSticky{
    top:70px;
    position:sticky;
}

/* ==========================
    COMPANY START
 ============================*/

 .company-section {
  background: url("../img/delivary-back.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.company-bg {
  display: block;
  width: 100%;
  background-color:rgb(4 101 160 / 90%);
  padding-top: 120px;
  padding-bottom: 120px;
}
.company-content {
  text-align: center;
  cursor: pointer;
}
.company-content h4 {
  color: #ffffff;
  margin-top: 35px;
  transition: all 300ms ease-in-out;
}
.company-icon {
  height: 100px;
  width: 100px;
  padding: 25px 0px;
  position: relative;
  margin: auto;
  border-radius: 50%;
  transition: 0.5s;
}
.company-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  width: 100px;
  border: 2px dashed #fff;
  border-radius: 50%;
  transition: 0.5s;
}
.company-icon img{
  max-height: 52px;
  filter: brightness(0) invert(1);
}
.company-content:hover .company-icon::after {
  transform: rotate(90deg);
}
.company-content:hover h4{
  color: #0F141E;
}
.company-icon .cls-1 {
  fill: #003463;
  transition: 0.5s;
}

.company-content:hover .company-icon .cls-1 {
  fill: #ffffff;
}
.company-content:hover .company-icon {
  background: #1086ff;
}

/* ==========================
    COMPANY END
 ============================*/

 
/* ==========================
    ORDER START
 ============================*/

.order-section {
  padding-bottom: 120px;
}
.order-content {
  background: #ffffff;
  box-shadow: 0px 5px 10px rgba(20, 20, 20, 0.122);
  margin-top: -155px;
  border-radius: 5px;
  overflow: hidden;
}
.cmemZeroImg{
  height: 100%;
}
.cmemZeroImg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cmemZerotext{
  padding: 50px 70px;
}
.cmemZerotext h3 {
  font-size: 35px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 30px;
}
/* ==========================
    ORDER END
 ============================*/

.blank_sec{
  height: 132px;
}

 /*-------------Aboutus page-------------*/

 .innerheader{
   background:#003a5c url(../img/image26-compressed.png) no-repeat;
   position: relative;
   padding: 143px 0;
   text-align: center;
   background-size: cover;
   background-position: bottom center;
 }
 .innerheader h2 {
  font-size: 47px;
  line-height: 63px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}
.breadcrumb{
  justify-content: center;
}
.breadcrumb-item.active{
  color: #fff;
  font-weight: 500;
}
.breadcrumb-item a, .breadcrumb-item+.breadcrumb-item::before{
  color: #fff;
}
.why-choose-image{
  position: relative;
}
.why-choose-image .shape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 423px;
  height: 477px;
  border: 7px solid #0576ba;
  transform: translate(-50%, -50%);
}
.image-one{
  position: relative;
  z-index: 1;
}
.why-choose-image .image-two {
  position: relative;
  text-align: right;
  margin-top: -120px;
  float: right;
  z-index: 2;
}
.why-choose-image .image-two img{
  width: 436px;
  object-fit: cover;
}

/*-----------Blog_details------------*/

.inner_banner{
  background:#003a5c url(../img/image-26.png) no-repeat;
  position: relative;
  padding: 143px 0 20px 0;
  text-align: center;
  background-size: cover;
  background-position: bottom center;
}

.auto-container {
  position: static;
  /* max-width: 1200px; */
  padding: 0px 15px;
  margin: 0 auto;
}
.inner-box {
  margin: 0 auto;
  margin-bottom: -20px;
  max-width: 770px;
  margin-top: 160px;
  position: relative;
  display: block;
}
.inner-box .inner {
  position: relative;
  margin-top: -135px;
  background: rgb(0 119 192 / 81%);
  padding: 33px 30px 32px 30px;
  border-radius: 10px 10px 0px 0px;
  z-index: 2;
}
.inner p{
  color: #fff;
  margin-bottom: 15px;
  text-align: left;
}
.inner p i{
  color: #fff;
  margin-right: 5px;
  font-size: 18px;
}

.inner h6{
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 30px;
  text-align: left;
}
.inner ul{
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
}
.inner ul li a{
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
.inner ul li{
  margin-right: 10px;
  padding-right: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;

}
.inner ul li svg{
  font-size: 16px;
  color: #fff;
  margin-right: 6px;
}
.inner ul li span{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #004b77;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.inner ul li span img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.inner .b_date{
  position: absolute;
  top: 0;
  right: 0;
  padding: 12px 15px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background:#004b77;
  margin: 10px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  line-height: 25px;
  border-radius: 8px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.inner .b_date span{
  display: block;
  font-weight: 400;
  font-size: 14px;
}
.inner .b_date {
  top: -46px;
  font-size: 20px;
  line-height: 21px;
}

.blog_det img{
  object-fit: cover;
  margin: 0 0 30px 0;
}
.blog_det h6{
  font-size: 22px;
  color: #004b77;
  font-weight: 700;
  margin: 20px 0;
}

.blog_det ul{
  margin: 15px 0;
  padding: 0;
}
.blog_det ul li{
  display: block;
  line-height: 24px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #555;
  position: relative;
  padding-left: 25px;
}
.blog_det ul li:before {
  position: absolute;
  content: '*';
  font-size: 30px;
  font-weight: 700;
  left: 0px;
  top: 7px;
  color: #004b77;
}
.blog_filter .form-select:last-child{
  width: 100px;
  margin-left: 12px;
}
.blog_filter .form-select{
  border: 0;
  border-bottom: 1px solid #86b7fe;
  border-radius: 0;
}
.blog_filter .form-control{
  border: 0;
  border-bottom: 1px solid #86b7fe;
  border-radius: 0;
  margin-right: 12px;
  width: 280px;
  padding-right: 20px;
  padding-left: 0;
}
.ser_div i{
  position: absolute;
  top: 10px;
  right: 17px;
  color: #86b7fe;
}

/*-----------contact_us -------------------*/

.contact_body{
  background: #efefef url(../img/testimonial.png) repeat-y center center;
  background-size: 100%;
}
.add_text h2{
  font-size: 40px;
  margin-bottom: 50px;
  font-weight: 700;
}
.add_text h2 span{
  font-size: 24px;
  font-weight: 500;
}
.cot_address{
  display: flex;
  justify-content: space-around;
  border-radius: 6px;
  box-shadow: rgb(0 0 0 / 10%) 0px 1px 3px 0px, rgb(0 0 0 / 6%) 0px 1px 2px 0px;
  padding: 20px;
  margin-bottom: 10px;
  background: #fff;
}
.cu_flag{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #efefef;
}
.cu_flag img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.cu_text{
  width: calc(100% - 100px);
  padding-left: 20px;
}
.cu_text h6{
  font-size: 20px;
  color: #000;
  margin-bottom: 15px;
  font-weight: 600;
}
.sticky-top{
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  top: 100px;
  background: #fff;
  z-index: 1;
}
.sticky-top h5{
  font-size: 24px;
  color: #fff;
  padding:15px;
  margin-bottom: 25px;
  background: #0077c0;
}
.sticky-top .form-control, .sticky-top .form-select{
  height: 52px;
  border-radius: 0;
}
.service_details h2{
  padding: 20px 0;
}
.service_details p{
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
.service_details h6{
  padding: 20px 0;
}

.service_details ul{
  margin: 15px 0;
  padding: 0;
}
.service_details ul li{
  display: block;
  line-height: 24px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #555;
  position: relative;
  padding-left: 25px;
}
.service_details ul li strong{
    font-weight:500;
}
.service_details ul li:before {
  position: absolute;
  content: '*';
  font-size: 24px;
  font-weight: 700;
  left: 0px;
  top: 7px;
  color: #004b77;
}
.service_details ul li ul li:before {
  content: '\26AC';
  top: -1px;
  left: 5px;
  font-size: 17px;
}
.ps_det{
  margin: 30px 0 15px 0;
  padding: 0;
  list-style: none;
}
.ps_det li{
  position: relative;
  color: #222222;
  border-radius: 5px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
  background-color: #F0F4F9;
  display: block;
  transition: all 300ms ease;
}
.ps_det li a{
  position: relative;
  color: #222222;
  font-weight: 500;
  font-size: 16px;
  padding: 15px 30px;
  display: block;
}
.ps_det li:hover {
  background-color: #0077c0;
}
.ps_det li:hover a{
  color: #fff;
}
/*.ps_det li:before {
  position: absolute;
  right: 30px;
  top: 15px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: "\f061";
  color: #222222;
}*/
.rc_btn{
  font-weight: 500;
  font-size: 16px;
  margin-top: 25px;
}
.rc_btn svg{
  width: 24px;
}


/*------------------------*/
.nav-tabs .nav-link {
  color: #6d6d6d;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: 0;
  margin-right: 8px;
  font-size: 16px;
}
.nav-tabs {
  border-bottom: 0;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border: 0;
  border-bottom: 2px solid #0676ba;
  color: #0177c0;
  background: #ddf2ff;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  background-color: #ddf2ff;
  border: 0;
  border-bottom: 2px solid #0676ba;
  color: #0177c0;
  position: relative;
  font-weight: 600;
}
.responsive-tabs {
  padding: 1rem;
}

.responsive-tabs .nav-tabs {
  display: none;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active::before{
  content: '';
  position: absolute;
  bottom: -12px;
  left: 44%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #0676ba;
}

@media (min-width: 768px) {
  .responsive-tabs .nav-tabs {
      display: flex;
  }

  .responsive-tabs .card {
      border: none;
  }

  .responsive-tabs .card .card-header {
      display: none;
  }

  .responsive-tabs .card .collapse {
      display: block;
  }
}

@media (max-width: 767px) {
  .responsive-tabs .tab-pane {
      display: block !important;
      opacity: 1;
  }
}


/*----------Time Line--------------*/

.swiper-container-wrapper--timeline .swiper-slide {
  /* display: flex;
  background: #fff;
  min-height: 300px;
  align-items: center;
  justify-content: center;
  border-radius: 10px; */
}
/* .swiper-container-wrapper--timeline .swiper-slide .container {
  padding: 0;
  width: 100%;
} */
.swiper-container-wrapper--timeline .swiper-slide{
  font-size: 16px;
  line-height: 24px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.swiper-container-wrapper--timeline .swiper-slide p{
  width: calc(100% - 150px);
  padding-left: 20px;
  margin-bottom: 0;
  color: #fff;
}
.swiper-container-wrapper--timeline .swiper-slide .title {
  font-size: 30px;
  line-height: 36px;
  opacity: 0;
  /* transition: 0.5s ease 0.5s; */
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}
.swiper-container-wrapper--timeline .swiper-slide img{
  width: 150px;
  height: 150px;
  margin: 0 auto;
  margin-bottom: 30px;
  border-radius: 2%;
  object-fit: cover;
}
.swiper-container-wrapper--timeline .swiper-slide-active .title {
  opacity: 1;
}
.swiper-container-wrapper--timeline .swiper-pagination-progressbar {
  position: relative;
  margin-bottom: 70px;
  background-color: transparent;
  height: 4px;
  border-bottom: 1px solid #fff;
  width: 100%;
}
.swiper-container-wrapper--timeline .swiper-pagination-progressbar-fill {
  background-color: #89d3ff;
  height: 3px;
  top: 2px;
}
/* .swiper-container-wrapper--timeline .swiper-pagination-progressbar:before {
  position: absolute;
  top: 2px;
  left: -100%;
  width: 100%;
  height: 3px;
  background-color: #000;
  content: "";
} 
.swiper-container-wrapper--timeline .swiper-pagination-progressbar:after {
  position: absolute;
  top: 3px;
  right: -100%;
  width: 100%;
  height: 1px;
  background-color: #888;
  content: "";
}*/
.swiper-container-wrapper--timeline .swiper-pagination-custom {
  position: relative;
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  display: flex;
  line-height: 1.66;
  bottom: 0;
  z-index: 11;
  width: 100%;
  display: flex;
}
.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch {
  position: relative;
  width: 100%;
  height: 30px;
  line-height: 30px;
  display: block;
}
.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch .switch-title {
  position: absolute;
  font-weight: 400;
  right: 0;
  transform: translateX(50%);
  transition: 0.2s all ease-in-out;
  transition-delay: 0s;
  cursor: pointer;
  z-index: 1;
  color: #fff;
  font-size:24px;

}
.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch .switch-title:after {
  position: absolute;
  top: calc(100% + 19px);
  right: 50%;
  transform: translateX(50%) translateY(-50%);
  width: 12px;
  height: 12px;
  background: #89d3ff;
  border-radius: 2rem;
  content: "";
  transition: 0.2s all ease-in-out;
  transition-delay: 0s;
  z-index: 1;
}

.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch.active .switch-title:after {
  background: #89d3ff;
  width: 25px;
  height: 25px;
  transition-delay: 0.4s;
}
.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch.active ~ .swiper-pagination-switch .switch-title {
  color: #fff;
  font-weight: 16px;
}
.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch.active ~ .swiper-pagination-switch .switch-title:after {
  background: #1491df;
}

.time_line{
  /* background: url(../img/delivary-back.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  background-color: rgb(4 101 160 / 90%);
  background-blend-mode: multiply;
}

/*-----------Award_img-----------*/

.awards_flip .card{
  cursor: pointer;
  width: 100%;
  height:280px;
  border-radius: 6px;
  box-shadow: rgb(0 0 0 / 10%) 0px 1px 3px 0px, rgb(0 0 0 / 6%) 0px 1px 2px 0px;
  outline: 0px;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}
.awards_flip .front, .awards_flip .back{
  width: 100%;
  height:280px;
  overflow:hidden;
  backface-visibility:hidden;
  position:absolute;
  transition: transform .5s linear;
  border-radius: 6px;
    box-shadow: rgb(0 0 0 / 10%) 0px 1px 3px 0px, rgb(0 0 0 / 6%) 0px 1px 2px 0px;
    outline: 0px;
    transition: all 0.4s ease-in-out;
}
.awards_flip .card:hover > .front{
  transform: perspective(600px) rotateY(-180deg);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.awards_flip .card:hover > .back{
  transform: perspective(600px) rotateY(0deg);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.awards_flip .back{
  transform:rotateY(180deg);
  padding: 10px 0;
}
.front{
  padding: 10px 0;
}
.awards_flip .front img, .awards_flip .back img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  
}

.f-address ul {display: flex;
    justify-content: space-evenly;margin: 0 auto 25px;padding: 0;max-width: 1100px;}

.f-address ul li {
    width: 33.33%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align:center;
    font-size:14px;
    line-height:1.5;
    color:rgba(255,255,255,0.8);
}
.f-address ul li a{
    color:#fff;
    font-size:15px;
}
.f-address ul li svg{
    margin-bottom:15px;
}
.res_upheader a:nth-child(2), .res_upheader a:nth-child(3){
  display: none;
}

.main-footer p{
    text-transform: capitalize;
}
.main-footer p small a{
    font-weight:600;
}
.partner .swiper-slide{
  border: 1px solid #e9e9e9;
  padding: 10px;
}
.provider_sec{
  padding: 120px 0;
}

.awards_flip:nth-child(5) .card, .awards_flip:nth-child(6) .card{
  height: 200px;
}
.awards_flip:nth-child(5) .front, .awards_flip:nth-child(6) .front{
  height: 200px;
}
.awards_flip:nth-child(5) .back, .awards_flip:nth-child(6) .back{
  height: 200px;
}
.awards_flip .front a, .awards_flip .back a{
  display: block;
}