@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
   font-family: "Montserrat", sans-serif;
  font-weight: 500;
}


/***** Font Files *****/

@font-face {
  font-family: 'QuarryDigger';
  src: url(../fonts/QuarryDigger-Regular.ttf);
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: 'QuarryDigger';
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'QuarryDigger';
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'QuarryDigger';
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'QuarryDigger';
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'QuarryDigger';
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;
  
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

.logo a {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
}

.menuSec {
  padding: 25px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: unset;
  text-transform: capitalize;
  margin-left: 30px;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 23px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: rgba(255, 255, 255, 0.4);
  display: none;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #fff;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 11px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}
.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}
.droopdwon {
    float: left;
}
.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

.header-btn {
  margin: 0;
}

/*header css end*/


/*banner css start*/

.banner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  /* background-color: #073a4a; */
  background-image: url(../images/banner-bg.png);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center right;
  background-size: 100% 100%;
  height: 900px;
}
.banner-img img {
    width: 100%;
    height: 785px;
    object-fit: contain;
}
.banner-shape-r {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  /* background-color: #17c3d1; */
  z-index: 1;
  display: none;
}

.banner-wave {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 65%;
  height: 210px;
  /* background-image: linear-gradient(100deg, #073a4a 0%, rgba(15, 120, 145, 0.9) 100%); */
  -webkit-mask-image: url(../images/footer-bg.png);
  mask-image: url(../images/footer-bg.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-transform: rotate(180deg);
  /* transform: rotate(180deg); */
  z-index: 1;
  display: none;
}

.banner .container-fluid,
.menuSec .container-fluid {
  position: relative;
  z-index: 2;
  padding-left: 4%;
  padding-right: 4%;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  color: #006382;
  font-family: 'QuarryDigger';
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 30px;
  margin-bottom: 25px;
}

.ban-txt h1,
.ban-txt h2 {
  font-family: 'QuarryDigger';
  font-size: 66px;
  line-height: 60px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.ban-txt h2 {
  margin-bottom: 20px;
  font-size: 47px;
  line-height: 66px;
  margin-bottom: 0px;
}

.ban-txt p {
  font-size: 15px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 660px;
  margin-bottom: 30px;
}

.banner-img {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 77%;
  margin: 0 -60px auto;
  margin-top: 63px;
}

.banner-img img {
  /* max-width: 100%; */
}

.banner-social {
  position: absolute;
  right: 60px;
  bottom: 45px;
  z-index: 3;
  text-align: center;
}

.banner-social h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 15px;
}

.banner-social .footer-social a {
  width: 34px;
  height: 34px;
  font-size: 12px;
}

@media (max-width: 991px) {
  header {
    position: relative;
  }
  .menuSec {
    background-color: #073a4a;
  }
  .banner {
    padding-top: 40px;
    min-height: auto;
  }
  .banner-img {
    margin-top: 30px;
  }
  .banner-social {
    position: static;
    margin-top: 40px;
    text-align: left;
  }
  .banner-wave {
    display: none;
  }
}

/*banner css end*/

/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


.tab_sec .tab {
  overflow: hidden;
  border: 0;
  background-color: #ffffff;
}
/* Style the buttons that are used to open the tab content */
.tab_sec .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}
/* Change background color of buttons on hover */
.tab_sec .tab button:hover {
  background-color: #ddd;
}
/* Create an active/current tablink class */
.tab_sec .tab button.active {
  background-color: #ccc;
}
/* Style the tab content */

.tab_sec .tabcontent {
  display: none;
  padding: 6px 12px;
  border: 0;
}
.tabcontent.active {
  display: block;
}
/*slick slider in tabs css start*/

.nav-item {padding: 10px;}


/*about css start*/

.about-sec {
  padding: 110px 0 90px;
  overflow: hidden;
  padding-bottom: 0;
}

.about-top-row {
  margin-bottom: 50px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-family: 'QuarryDigger';
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 30px;
  margin-bottom: 22px;
  background-image: -webkit-linear-gradient( -90deg, rgb(0,196,218) 0%, rgb(0,99,130) 100%);
}

.about-badge i {
  font-size: 6px;
  margin-right: 10px;
  display: none;
}

.about-title {
  font-family: 'QuarryDigger';
  font-size: 40px;
  line-height: 46px;
  font-weight: 500;
  text-transform: uppercase;
  color: #151515;
  margin: 0 0 10px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  color: #000;
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0px;
  padding-left: 15px;
  border-radius: 100px;
  border: 2px solid #008da8;
  padding-right: revert-layer;
  padding-right: 0;
}

.about-btn .icon {
  width: 40px;
  height: 50px;
  border-radius: 0 22px 22px 0px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: -webkit-linear-gradient( 60deg, rgb(0,196,218) 0%, rgb(0,99,130) 100%);
}

.about-btn:hover {
}

.about-btn:hover .icon {
  background-color: #fff;
  color: #14213d;
}

.about-right p {
  font-size: 15px;
  line-height: 26px;
  color: #6b7280;
  margin-bottom: 18px;
  width: 92%;
}

.about-right p:last-child {
  margin-bottom: 0;
}

.about-img img {
  border-radius: 12px;
  width: 100%;
  height: 523px;
  object-fit: cover;
}
.row.about-bottom-row {
    align-items: center;
}
.about-stats ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-stats li {
  padding: 40px 0 18px;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
}

.about-stats li:first-child {
  padding-top: 0;
}

.about-stats li:last-child {
  /* padding-bottom: 0; */
  border-bottom: 0;
}

.about-stats h3 {
  font-family: 'QuarryDigger';
  font-size: 70px;
  font-weight: 400;
  color: #006382;
  margin: 0 0 20px;
}

.about-stats p {
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .about-right {
    margin-top: 25px;
  }
  .about-stats {
    margin-top: 30px;
  }
}

/*about css end*/


/*services css start*/

.services-sec {
  padding: 90px 0 60px;
}

.services-sec .container-fluid {
  padding-left: 4%;
  padding-right: 4%;
}

.services-top-row {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.services-top-row .about-badge,
.services-top-row .about-title {
  margin-bottom: 0;
}

.services-top-row .about-badge {
  margin-bottom: 18px;
}

.services-tabs {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-tabs li {
  font-family: 'QuarryDigger';
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #9aa0a8;
  cursor: pointer;
  padding-bottom: 21px;
  margin-bottom: -21px;
  position: relative;
  white-space: nowrap;
}

.services-tabs li.active {
  color: #151515;
}

.services-tabs li.active:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #14b8c4;
}

.services-sec .tabcontent {
  display: none;
}

.services-sec .tabcontent.active {
  display: block;
}

.service-card {
  /* background-color: #fff; */
  border: 1px solid #eef0f2;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
}

.service-img {
  position: relative;
  border-radius: 10px 10px 0 0;
  /* overflow: hidden; */
}

.service-img img {
  width: 100%;
  height: 272px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.service-number {
  position: absolute;
  left: 25px;
  bottom: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #151515;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'QuarryDigger';
  font-weight: 500;
  font-size: 25px;
  border: 5px solid #fff;
  z-index: 999999999;
}

.service-number.teal {
  background-color: #14b8c4;
}

.service-body {
  padding: 45px 25px 20px;
}

.service-body h4 {
  font-family: 'QuarryDigger';
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: #151515;
  margin: 0 0 12px;
}

.service-body p {
  font-size: 14px;
  line-height: 24px;
  color: #6b7280;
  margin: 0;
}

.service-footer {
  border-top: 1px solid #eef0f2;
  text-align: center;
  padding: 16px;
}

.service-footer a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #151515;
  text-decoration: underline;
}

.service-footer a:hover {
  color: #14b8c4;
}

@media (max-width: 991px) {
  .services-tabs {
    justify-content: flex-start;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}

/*services css end*/


/*choose us css start*/

.choose-sec {
  padding: 90px 0 100px;
}

.choose-text {
  padding-bottom: 40px;
}

.choose-text .about-badge,
.choose-text .about-title {
  margin-bottom: 20px;
}

.choose-text p {
  font-size: 15px;
  line-height: 26px;
  color: #6b7280;
  margin: 0;
}

.choose-img-wrap {
  position: relative;
}

.choose-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 15px;
}

.choose-card {
  position: absolute;
  top: -282px;
  left: 80px;
  width: 480px;
  max-width: 90%;
  border-radius: 15px;
  padding: 60px 35px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
  z-index: 2;
  border: 5px solid #fff;
  background-image: -webkit-linear-gradient( 90deg, rgb(1,196,218) 0%, rgb(0,99,130) 100%);
}

.choose-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.choose-card li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.choose-card li:first-child {
  padding-top: 0;
}

.choose-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.check-ic {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -18px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
}

.check-ic img {
  width: 14px;
}

.choose-txt h5 {
  font-family: 'QuarryDigger';
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 6px;
}

.choose-txt p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 23px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  margin-top: 13px;
}

@media (max-width: 991px) {
  .choose-card {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .choose-text {
    padding-bottom: 0;
    margin-bottom: 30px;
  }
}

/*choose us css end*/


/*process css start*/

.process-sec {
  padding: 0px 0 100px;
}

.process-head {
  max-width: 900px;
  margin: 0 auto 40px;
}

.process-head .about-badge,
.process-head .about-title {
  margin-bottom: 15px;
}

.process-head p {
  font-size: 14px;
  line-height: 24px;
  color: #6b7280;
  margin: 0;
}

.process-row {
  border-top: 1px solid #e5e7eb;
}

.process-card {
  position: relative;
  height: 100%;
  padding: 45px 30px 30px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.process-card:hover {
  background-color: #fff;
  border: 1px solid #eef0f2;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  margin-top: -1px;
  z-index: 2;
}

.process-tab {
  position: absolute;
  top: -1px;
  left: 20px;
  width: 240px;
  height: 3px;
  background-color: #17c3d1;
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.process-card:hover .process-tab {
  opacity: 1;
}

.process-row .col-lg-4:nth-child(2) .process-card,
.process-row .col-lg-4:nth-child(3) .process-card {
  padding-left: 45px;
}

.process-row .col-lg-4:nth-child(3) .process-card {
  border-left: 1px solid #e5e7eb;
}

.process-num {
  font-family: 'QuarryDigger';
  font-size: 30px;
  font-weight: 500;
  color: #006382;
  margin: 0 0 25px;
}

.process-card h4 {
  font-family: 'QuarryDigger';
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
  color: #151515;
  margin: 0 0 10px;
}

.process-card p {
  font-size: 14px;
  line-height: 24px;
  color: #6b7280;
  margin: 0;
}

@media (max-width: 767px) {
  .process-row .col-lg-4:nth-child(3) .process-card {
    border-left: 0;
  }
  .process-row .col-lg-4:nth-child(2) .process-card,
  .process-row .col-lg-4:nth-child(3) .process-card {
    padding-left: 30px;
  }
  .process-card {
    padding-top: 30px;
  }
  .process-card:hover {
    margin-top: 20px;
  }
}

/*process css end*/


/*review css start*/

.review-sec {
  padding: 0px 0 100px;
  overflow: hidden;
}

.review-sec .container-fluid {
  padding-left: 4%;
  padding-right: 4%;
}

.review-head .about-badge,
.review-head .about-title {
  margin-bottom: 12px;
}

.review-head p {
  font-size: 14px;
  line-height: 24px;
  color: #6b7280;
  max-width: 670px;
  margin: 0;
}

.review-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.review-nav button {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.review-nav button:before {
  content: none;
}

.review-nav button.slick-disabled {
  opacity: 1;
  cursor: pointer;
}

.review-nav button img {
  width: 14px;
  max-width: 14px;
}

.review-nav .review-prev img {
  transform: rotate(180deg);
  filter: invert(1);
}

.review-nav .review-next {
  background-color: #14b8c4;
  border-color: #14b8c4;
}

.review-nav button:hover,
.review-nav button:focus {
  background-color: #14213d;
  border-color: #14213d;
  outline: none;
}

.review-nav .review-prev:hover img,
.review-nav .review-prev:focus img {
  filter: invert(0);
}

.review-track-wrap {
  margin-top: 30px;
}

.review-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.review-item {
  flex: 0 0 auto;
}

.review-img-item img {
  width: 370px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.review-img-item.tall img {
  width: 330px;
  height: 520px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
}

.review-card-item {
  position: relative;
  width: 480px;
  padding-left: 34px;
}

.review-tag {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 34px;
  background-image: linear-gradient(180deg, #17c3d1 0%, #0a6f86 100%);
  border-radius: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 0;
}

.review-card {
  background-color: #fff;
  border: 1px solid #eef0f2;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  padding: 30px 25px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-stars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.review-card p {
  font-style: italic;
  font-size: 14px;
  line-height: 24px;
  color: #6b7280;
  margin: 0;
}
section.review-sec .slick-slide {
    margin: 0px 0px;
}

/*review css end*/


/*footer css start*/

.footerSec {
  position: relative;
  color: #fff;
  padding: 250px 0 10px;
  background-image: url(../images/../images/footer-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.footerSec h5 {
  font-family: 'QuarryDigger';
  font-size: 25px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  margin: 0 0 15px;
}

.footer-about p {
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.footerForm {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 5px;
}

.footerForm input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 18px;
  font-size: 13px;
  color: #fff;
}

.footerForm input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footerForm button {
  flex-shrink: 0;
  background-color: #17c3d1;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 26px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.footerForm button:hover {
  background-color: #073a4a;
}

.footer-links-cols {
  display: flex;
  gap: 63px;
}

.footerSec .linkList {
  margin: 0;
}

.footerSec .linkList li {
  margin-bottom: 22px;
}

.footerSec .linkList a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.footerSec .linkList a:hover {
  color: #17c3d1;
}

.footer-contact-list {
  margin: 0px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.footer-contact-ic {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #17c3d1;
}
.footer-links {
    margin-left: 60%;
}

.footerSec .container-fluid {
    padding: 0 4%;
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 40px 0 25px;
}
.footer-contact {
    margin-left: 36%;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  padding-bottom: 10px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

.footer-social a.active,
.footer-social a:hover {
  background-color: #17c3d1;
  border-color: #17c3d1;
  color: #fff;
}

@media (max-width: 991px) {
  .footerSec {
    -webkit-mask-image: none;
    mask-image: none;
    padding-top: 60px;
  }
  .footer-about,
  .footer-links {
    margin-bottom: 40px;
  }
}
.logo a img {
    background-color: #fff;
    padding: 10px;
}
/*footer css end*/

/*service detail page css start*/

.service-detail-sec {
  padding: 100px 0;
}

.service-detail-img {
  margin-bottom: 40px;
}

.service-detail-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.service-detail-body h3 {
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service-detail-body p {
  font-size: 14px;
  line-height: 26px;
  color: #6b7280;
  margin-bottom: 20px;
}

.service-detail-body p:last-child {
  margin-bottom: 0;
}

/*service detail page css end*/


/*services page css start*/

.services-page-sec {
  padding: 100px 0 70px;
}

.services-page-group {
  margin-bottom: 60px;
}

.services-page-group:last-child {
  margin-bottom: 0;
}

.services-page-head {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px;
}

.services-page-head .about-badge {
  margin-bottom: 20px;
}

.services-page-head .about-title {
  margin-bottom: 15px;
}

.services-page-head p {
  font-size: 14px;
  line-height: 24px;
  color: #6b7280;
  margin: 0;
}

/*services page css end*/


/*reviews grid page css start*/

.reviews-grid-sec {
  padding: 100px 0;
}

.reviews-grid-head {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.reviews-grid-head .about-badge {
  margin-bottom: 20px;
}

.reviews-grid-head .about-title {
  margin-bottom: 15px;
}

.reviews-grid-head p {
  font-size: 14px;
  line-height: 24px;
  color: #6b7280;
  margin: 0;
}

.reviews-grid-row > div {
  margin-bottom: 25px;
}

.reviews-grid-row:last-child > div {
  margin-bottom: 0;
}

.reviews-grid-row .review-card-item {
  width: 100%;
  height: 260px;
  padding-left: 30px;
}

.reviews-grid-row .review-card {
  width: 100%;
  height: 100%;
  padding: 22px 18px;
}

.reviews-grid-row .review-card .review-stars {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.reviews-grid-row .review-card p {
  font-size: 12px;
  line-height: 20px;
}

.reviews-grid-row .review-tag {
  width: 30px;
  font-size: 10px;
}

.review-grid-img {
  width: 100%;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
}

.review-grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .reviews-grid-row .review-card-item,
  .review-grid-img {
    height: 320px;
  }
}

@media (max-width: 575px) {
  .reviews-grid-row .review-card-item,
  .review-grid-img {
    height: 280px;
  }
}

/*reviews grid page css end*/


/*contact form css start*/

.contact-sec {
  padding: 100px 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 50px 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 20px 40px rgba(0, 99, 130, 0.18);
  background-image: linear-gradient(135deg, rgb(0, 196, 218) 0%, rgb(0, 99, 130) 100%);
}

.contact-info-card:last-child {
  margin-bottom: 0;
}

.contact-info-ic {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #006382;
}

.contact-info-txt h5 {
  font-family: 'QuarryDigger';
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
}

.contact-info-txt p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 25px;
}

.contact-form .form-group > i {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #393939;
  z-index: 2;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background-color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #393939;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  height: 54px;
  padding: 0 20px 0 62px;
  background-image: url(../images/inp-bf.png);
  background-repeat: no-repeat;
  background-position: 46px center;
}

.contact-form textarea {
  padding: 18px 20px;
  min-height: 150px;
  resize: none;
}

.contact-form .select-group select {
  height: 54px;
  padding: 0 50px 0 22px;
  color: #575757;
  cursor: pointer;
}

.contact-form .select-group i.fa-chevron-down {
  left: auto;
  right: 24px;
  font-size: 12px;
  color: #9aa0a8;
}

.contact-form .select-group:before {
  content: '';
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 54px;
  background-image: url(../images/inp-bf.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
}

.contact-submit-btn {
  margin-top: 5px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .contact-info-list {
    margin-bottom: 40px;
  }
}

/*contact form css end*/


/*inner-banner start */
section.banner.inn {
    height: 500px;
    background-image: url(../images/inn-banner-bg.jpg);
}
section.banner.inn .banner-img img {
    height: 415px;
}
.about-right.sec p {
    width: 100%;
}
section.choose-sec.inn {
    padding-top: 130px;
}
