:root {
  --blackcolor:#000;
  --bluecolor: #0266A9;
  --darkgreycolor: #282828;
  --lightbluecolor: #66B2E5;
  --seagreen: #E8EEED;
  --lightgreycolor: #F1F3F4;
  --fontlight: 100;
  --fontregular: 400;
  --fontmedium: 600;
  --fontbold: 700;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: var(--fontregular);
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

.w-full {
  width: 100% !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.flex {
  flex-wrap: wrap;
}

img {
  display: block;
}

hr {
  border: solid 1px;
}

p {
  font-size: 15px;
  margin: 10px 0 !important;
  line-height: 32px;
}

::-moz-placeholder {
  font-size: 16px;
  color: var(--darkgreycolor) !important;
  font-weight: var(--fontmedium);
}

::placeholder {
  font-size: 16px;
  color: var(--darkgreycolor) !important;
  font-weight: var(--fontmedium);
}

.common-heading {
  font-size: 50px;
  line-height: 120%;
  font-weight: var(--fontmedium);
}
.common-heading.sub-title {
  font-size: 35px;
  line-height: 120%;
  font-weight: var(--fontmedium);
}
.common-heading.sub-sub-title {
  font-size: 22px;
  line-height: 120%;
  font-weight: var(--fontmedium);
}

.container {
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
  max-width: 1430px !important;
}

.common-sec {
  padding: 70px 0;
}

.common-btn {
  display: inline-block;
  font-size: 16px;
  background: #fff;
  font-weight: var(--fontmedium);
  color: #000;
  padding: 1px 30px 1px 1px;
  border: solid 1px var(--bluecolor);
  border-radius: 100px;
  transition: all linear 0.3s;
  align-items: center;
  display: inline-flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.common-btn .arrow {
  position: relative;
  width: 46px;
  display: inline-flex;
  background: var(--bluecolor);
  height: 39px;
  transition: all linear 0.3s;
  border-radius: 30px;
  margin-bottom: 0;
}
.common-btn .arrow:before {
  position: absolute;
  width: 22px;
  height: 13px;
  transition: all linear 0.3s;
  content: "";
  background: url("../images/icon-arrow.png") no-repeat center center;
  filter: brightness(0) invert(1);
}
.common-btn.no-text {
  padding: 0;
}
.common-btn:hover {
  background: var(--bluecolor);
  color: #fff;
}
.common-btn:hover .arrow {
  background: #fff;
}
.common-btn:hover .arrow:before {
  filter: none;
}

.text-link {
  font-size: 16px;
  padding-right: 32px;
  position: relative;
}
.text-link:after {
  position: absolute;
  content: "";
  width: 22px;
  height: 13px;
  background: url("../images/icon-arrow.png") no-repeat 0 0;
  right: 0;
  top: 4px;
  filter: brightness(0) invert(1);
}
.text-link.blue {
  color: var(--bluecolor);
}
.text-link.blue:after {
  filter: none;
}

.header {
  background: #fff;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.header .logo-container {
  width: 22%;
}
.header ul li {
  font-size: 16px;
  font-weight: var(--fontmedium);
  margin-right: 44px;
  position: relative;
}
.header ul li.close {
  display: none;
}
.header ul li a {
  color: var(--blackcolor);
  padding: 30px 0;
  display: block;
  transition: all linear 0.3s;
}
.header ul li:last-of-type {
  margin-right: 0;
}
.header ul li:hover a, .header ul li.active a {
  color: var(--bluecolor);
}
.header ul li .sub-dropdown {
  position: absolute;
  right: auto;
  left: 0;
  top: 73px;
  min-width: 300px;
  background: #fff;
  z-index: 111;
  padding: 10px 23px;
  display: none;
  border-top: 4px solid var(--bluecolor);
}
.header ul li .sub-dropdown li {
  margin-right: 0;
}
.header ul li .sub-dropdown li a {
  padding: 15px 18px;
  border-bottom: 1px solid #ccc;
  color: var(--blackcolor);
  padding-left: 50px;
}
.header ul li .sub-dropdown li a:hover {
  background-color: #eee;
  border-bottom: 1px solid var(--bluecolor);
}
.header ul li .sub-dropdown li a:before {
  content: "";
  position: absolute;
  width: 32px;
  height: 20px;
  background: url(../images/arrow.png) no-repeat;
  left: 13px;
  top: 18px;
}
.header ul li .sub-dropdown li:last-child a {
  border-bottom: 0;
}
.header ul li:hover .sub-dropdown {
  display: block;
}
.header .menu-bar {
  display: none;
  width: 35px;
  cursor: pointer;
  flex-wrap: wrap;
  row-gap: 5px;
}
.header .menu-bar span {
  width: 100%;
  height: 3px;
  background-color: #000;
}
.header .compnay-profile a {
  padding: 4px 12px;
  margin-left: 14px;
  -moz-column-gap: 4px;
       column-gap: 4px;
  font-size: 15px;
}
.header .search-bar {
  position: relative;
  cursor: pointer;
}
.header .search-bar .search-input {
  position: absolute;
  min-width: 300px;
  right: 0;
  top: 60px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transition: width 0.3s ease;
}
.header .search-bar .search-input input {
  height: 50px;
  border: 1px solid #ccc;
  padding: 10px;
}
.header .search-bar .search-input input:focus, .header .search-bar .search-input input :focus-visible {
  border: 1px solid var(--bluecolor);
  outline: 0;
}
.header .search-bar .search-input input::-moz-placeholder {
  opacity: 0.3;
  font-size: 14px;
}
.header .search-bar .search-input input::placeholder {
  opacity: 0.3;
  font-size: 14px;
}
.header .search-bar .search-input button {
  background-color: var(--bluecolor);
  color: #fff;
  padding: 12px 20px;
}

.banner-sec {
  color: #fff;
  position: relative;
}
.banner-sec .content {
  bottom: 60px;
  z-index: 2;
}
.banner-sec .content .inner {
  max-width: 700px;
}
.banner-sec .heading {
  font-size: 56px;
  line-height: 60px;
  font-weight: var(--fontbold);
}
.banner-sec .heading span {
  display: block;
  font-weight: var(--fontlight);
}
.banner-sec p {
  font-size: 20px;
}
.banner-sec .image {
  position: relative;
}
.banner-sec .image:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 27.73%, rgba(0, 0, 0, 0.35) 70.8%, rgba(0, 0, 0, 0.2) 99.5%);
  left: 0;
  top: 0;
  z-index: 1;
}
.banner-sec .owl-nav-dots-container {
  position: absolute;
  padding: 0 20px;
  bottom: 100px;
  right: 20%;
  justify-content: flex-end;
}
.banner-sec .owl-nav-dots-container .owl-nav button {
  position: absolute;
  top: -9px;
  font-size: 45px !important;
  line-height: 16px !important;
}
.banner-sec .owl-nav-dots-container .owl-nav button.owl-prev {
  left: 2px;
}
.banner-sec .owl-nav-dots-container .owl-nav button.owl-next {
  right: 2px;
}
.banner-sec .owl-nav-dots-container .owl-dots {
  display: flex;
  gap: 7px;
}
.banner-sec .owl-nav-dots-container .owl-dots button {
  width: 25px;
  height: 6px;
  background: #fff;
  border-radius: 6px;
  opacity: 0.6;
}
.banner-sec .owl-nav-dots-container .owl-dots button.active {
  opacity: 1;
}

.overview-sec .left {
  width: 48%;
}
.overview-sec .right {
  width: 48%;
}

.company-history {
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  margin-bottom: 70px;
}
.company-history .items {
  border-left: solid 1px #ccc;
  border-right: solid 1px #ccc;
}
.company-history .item {
  width: 25%;
  padding: 25px 40px;
  border-right: solid 1px #ccc;
  color: #000;
  background: #fff;
  transition: all linear 0.3s;
  border-collapse: separate;
}
.company-history .item:last-of-type {
  border: none;
}
.company-history .item .description {
  margin-top: 10px;
  font-size: 22px;
  font-weight: var(--fontregular);
}
.company-history .item .description .title {
  font-size: 35px;
  font-weight: var(--fontmedium);
}
.company-history .item:hover {
  color: #fff;
  background: var(--bluecolor);
}
.company-history .item:hover img {
  filter: brightness(0) invert(1);
}

.expertise-sec-homepage {
  background: var(--seagreen);
}
.expertise-sec-homepage .left {
  width: 25%;
  padding-right: 50px;
}
.expertise-sec-homepage .left .common-heading {
  margin: 20px 0 0;
}
.expertise-sec-homepage .right {
  width: 75%;
}

.overlay-image-effect .item {
  width: 100%;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.overlay-image-effect .item .image {
  height: 100%;
}
.overlay-image-effect .item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.overlay-image-effect .item .title-sec {
  position: absolute;
  width: 100%;
  bottom: 0;
  color: #fff;
  left: 0;
  font-size: 18px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-weight: var(--fontbold);
  background: var(--lightbluecolor);
  padding: 5px 20px;
  line-height: 24px;
  min-height: 55px;
}
.overlay-image-effect .item .title-sec .title {
  font-size: 17px;
}
.overlay-image-effect .item .title-sec span {
  width: calc(100% - 50px);
}
.overlay-image-effect .item .title-sec span.icon {
  width: 22px;
}
.overlay-image-effect .item .title-sec img {
  filter: brightness(0) invert(1);
}
.overlay-image-effect .item .product-desc {
  position: absolute;
  transition: all linear 0.3s;
  bottom: -100%;
  padding: 15px 20px 45px;
  background: #fff;
}
.overlay-image-effect .item .product-desc .common-heading {
  font-size: 17px;
}
.overlay-image-effect .item .product-desc .title-sec {
  font-size: 16px;
  background: var(--bluecolor);
  min-height: 0;
}
.overlay-image-effect .item .product-desc .product-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--bluecolor);
  font-weight: var(--fontbold);
  line-height: 24px;
}
.overlay-image-effect .item .product-desc ul {
  margin-left: 15px;
  font-size: 16px;
  color: var(--bluecolor);
  font-weight: var(--fontregular);
}
.overlay-image-effect .item .product-desc ul li {
  list-style: number;
  margin-top: 5px;
}
.overlay-image-effect .item .product-desc p {
  font-size: 16px;
  color: var(--bluecolor);
  line-height: 24px;
}
.overlay-image-effect .item:hover .product-desc {
  bottom: 0;
  left: 0;
  right: 0;
}
.overlay-image-effect.hotels-sec .owl-stage-outer {
  padding: 30px 0;
}
.overlay-image-effect.hotels-sec .owl-item {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.overlay-image-effect.hotels-sec .owl-item .title-sec {
  width: 100%;
  transition: all linear 0.3s;
  height: 50%;
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
  border-left: 0;
  border-right: 0;
}
.overlay-image-effect.hotels-sec .owl-item .title-sec .title span {
  display: block;
  font-size: 16px;
  margin-top: 10px;
  font-weight: var(--fontregular);
}
.overlay-image-effect.hotels-sec .owl-item .top-links {
  width: 100%;
}
.overlay-image-effect.hotels-sec .owl-item .image {
  height: 400px;
}
.overlay-image-effect.hotels-sec .owl-item .image img {
  height: 250px;
}
.overlay-image-effect.hotels-sec .owl-item .product-desc {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  height: 100%;
}
.overlay-image-effect.hotels-sec .owl-item .product-desc span {
  font-size: 18px;
}
.overlay-image-effect.hotels-sec .owl-item .product-desc p {
  font-size: 15px;
  color: #fff;
}
.overlay-image-effect.hotels-sec .owl-item:hover .title-sec {
  opacity: 1;
}
.overlay-image-effect.hotels-sec .owl-item:nth-of-type(even) .title-sec {
  bottom: auto;
  top: 0;
}
.overlay-image-effect.hotels-sec .owl-item:nth-of-type(even) .image img {
  position: relative;
  bottom: -50%;
}
.overlay-image-effect.detail-page .owl-item .image {
  height: 370px;
}
.overlay-image-effect.detail-page .owl-item .image img {
  position: relative;
  height: 60%;
  bottom: 0;
}
.overlay-image-effect.detail-page .owl-item .image .title-sec {
  height: 40%;
}
.overlay-image-effect.detail-page .owl-item:nth-of-type(even) .image img {
  position: relative;
  bottom: 0;
}
.overlay-image-effect.detail-page .owl-item:nth-of-type(even) .image .title-sec {
  height: 40%;
}

.mission-vision .card {
  width: 49%;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
  background: var(--bluecolor);
  color: #fff;
}
.mission-vision .card .image-container {
  width: 100%;
}
.mission-vision .card .text-content {
  padding: 35px 70px;
}
.mission-vision .card .text {
  position: relative;
  margin-top: 30px;
  padding-left: 60px;
}
.mission-vision .card .text:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 35px;
  background: url("../images/quote-icon.png") no-repeat 0 0;
  top: 0px;
  line-height: 1;
  left: 0;
  filter: brightness(0) invert(1);
}
.mission-vision .card:nth-of-type(2) {
  background: #BAE0F2;
  color: #000;
}
.mission-vision .card:nth-of-type(2) .text-content {
  order: -1;
}
.mission-vision .card:nth-of-type(2) .image-container {
  order: 2;
}
.mission-vision .card:nth-of-type(2) .text:before {
  filter: none;
}
.mission-vision.about-page-mission .card {
  width: 49.5%;
  border-radius: 0px;
  overflow: auto;
  background: transparent;
}
.mission-vision.about-page-mission .card .text-content {
  margin-bottom: 15px;
  text-align: center;
  background: var(--bluecolor);
  min-height: 450px;
}
.mission-vision.about-page-mission .card .text-content img {
  margin: 0 auto 30px;
}
.mission-vision.about-page-mission .card .text-content .text {
  padding-left: 0;
}
.mission-vision.about-page-mission .card .text-content .text:before {
  display: none;
}
.mission-vision.about-page-mission .card:nth-of-type(2) {
  background-color: transparent;
}
.mission-vision.about-page-mission .card:nth-of-type(2) .text-content {
  margin-bottom: 0;
  order: 2;
  background: #BAE0F2;
  margin-top: 15px;
}

.needs-meet-sec {
  background: #EDEDED;
}
.needs-meet-sec .tabbs-sec li {
  font-size: 18px;
  color: #000;
  font-weight: var(--fontbold);
}
.needs-meet-sec .tabbs-sec li a {
  padding: 12px 25px;
  background: #fff;
  border-radius: 100px;
  transition: all linear 0.3s;
  border: 1px solid var(--bluecolor);
  background-color: #0266a9;
  font-size: 16px;
  color: #fff;
}
.needs-meet-sec .tabbs-sec li.active a, .needs-meet-sec .tabbs-sec li:hover a {
  background: #fff;
  color: var(--bluecolor);
}
.needs-meet-sec .tabbs-sec .hospitality-slider .owl-stage-outer .owl-stage {
  margin: 0 auto;
}

.md-testimonial-sec {
  background: var(--lightgreycolor);
}
.md-testimonial-sec .heading-sec {
  max-width: 55%;
  margin-top: 15px;
  background: #f1f3f4;
  z-index: 2;
}
.md-testimonial-sec .left {
  width: 55%;
  padding-bottom: 80px;
  padding-top: 160px;
}
.md-testimonial-sec .left .message {
  position: relative;
  padding-left: 60px;
}
.md-testimonial-sec .left .message:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 35px;
  background: url("../images/quote-icon.png") no-repeat 0 0;
  top: 0px;
  line-height: 1;
  left: 0;
}
.md-testimonial-sec .left .message .author-detail {
  margin-top: 20px;
  font-weight: var(--fontbold);
}
.md-testimonial-sec .left .message .author-detail span {
  display: block;
  font-weight: var(--fontregular);
}
.md-testimonial-sec .right {
  width: 31%;
  border-radius: 30px;
  overflow: hidden;
}
.md-testimonial-sec .right img {
  max-height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
}

.setup-part .middle-sec {
  width: 480px;
  border-radius: 100%;
  padding: 100px;
  height: 480px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--bluecolor);
}
.setup-part .middle-sec::after, .setup-part .middle-sec::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  background: #4092C9;
  border-radius: 50%;
  z-index: -1;
  animation: grow 2s ease-in-out infinite;
}
.setup-part .middle-sec::after {
  background: #4092C9;
  opacity: 0.4;
}
.setup-part .middle-sec::after::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  background: rgb(138, 162, 241);
  border-radius: 50%;
  z-index: -1;
  animation: grow 2s ease-in-out infinite;
}
.setup-part .middle-sec::before {
  background: #4092C9;
  opacity: 0.2;
  animation-delay: -20.5s;
}
@keyframes grow {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.086, 1.086);
    opacity: 0;
  }
}
.setup-part .middle-sec .common-heading, .setup-part .middle-sec .description {
  color: #fff;
}
.setup-part .middle-sec img {
  margin: 40px auto 0px;
  position: relative;
  z-index: 111;
  pointer-events: none;
}
.setup-part .middle-sec .main-circle .circle {
  position: absolute;
  left: 50%;
  bottom: 50%;
  top: 0;
  right: 0;
  border-radius: 0px 100% 0px 0px;
  z-index: 11;
  transition: 0.2s ease-in-out;
}
.setup-part .middle-sec .main-circle .circle:nth-of-type(1):hover {
  transform: translate(12px, -10px);
  background: #4092C9;
}
.setup-part .middle-sec .main-circle .circle:nth-of-type(2) {
  border-radius: 0px 0 100% 0px;
  bottom: 0;
  top: 50%;
}
.setup-part .middle-sec .main-circle .circle:nth-of-type(2):hover {
  transform: translate(12px, 20px);
  background: #4092C9;
}
.setup-part .middle-sec .main-circle .circle:nth-of-type(3) {
  border-radius: 0px 0 0px 100%;
  bottom: 0;
  top: 50%;
  left: 0;
  right: 50%;
}
.setup-part .middle-sec .main-circle .circle:nth-of-type(3):hover {
  transform: translate(-12px, 20px);
  background: #4092C9;
}
.setup-part .middle-sec .main-circle .circle:nth-of-type(4) {
  border-radius: 0px 0 0px 100%;
  border-radius: 100% 0px 0px 0px;
  left: 0;
  right: 50%;
}
.setup-part .middle-sec .main-circle .circle:nth-of-type(4):hover {
  transform: translate(-12px, -10px);
  background: #4092C9;
}
.setup-part .services {
  -moz-column-gap: 30%;
       column-gap: 30%;
  position: relative;
  z-index: 111;
  pointer-events: none;
  flex-wrap: wrap;
  top: -40px;
}
.setup-part .services .service-item {
  width: 30%;
  margin-top: 80px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.setup-part .services .service-item .icon {
  width: 129px;
  order: 2;
  position: relative;
  right: -43px;
}
.setup-part .services .service-item .icon img {
  border-radius: 50%;
  cursor: pointer;
}
.setup-part .services .service-item .icon img:hover {
  box-shadow: 0 0 0 1rem transparent;
  animation: swing 2s ease infinite;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.setup-part .services .service-item .text {
  width: calc(100% - 150px);
}
.setup-part .services .service-item:nth-of-type(even) {
  text-align: left;
}
.setup-part .services .service-item:nth-of-type(even) .icon {
  order: -1;
  right: 34px;
}
.setup-part .common-heading {
  color: var(--bluecolor);
}

.success-stories {
  background: url(../images/hvac-solution-bg.jpg) no-repeat 0 0;
  background-size: cover;
}
.success-stories .container {
  max-width: 1200px !important;
}
.success-stories .owl-stage-outer {
  padding: 15px 0;
}
.success-stories .owl-stage {
  height: 100%;
}
.success-stories .owl-item {
  height: 100%;
}
.success-stories .item {
  width: 90%;
  margin: 0 auto;
  padding: 25px 50px 95px;
  border-radius: 10px;
  border: solid 1px #ccc;
  position: relative;
  height: 100%;
  background-color: #fff;
}
.success-stories .item .author {
  position: absolute;
  bottom: 25px;
  left: 50px;
}
.success-stories .item:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 170px;
  background: var(--lightbluecolor);
  top: 40px;
  left: -15px;
}
.success-stories .item:after {
  position: absolute;
  content: "";
  width: 40px;
  height: 35px;
  background: url("../images/quote-icon.png") no-repeat 0 0;
  top: -15px;
  line-height: 1;
  left: 20px;
}
.success-stories .item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.success-stories .item a img {
  border: solid 1px #000;
  border-radius: 10px;
  min-height: 200px;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.success-stories .item a:after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background: url("../images/icon-zoom.png") no-repeat 0 0;
  right: -40px;
  bottom: -10px;
}
.success-stories .item .content {
  margin-bottom: 40px;
}
.success-stories .item .author {
  font-weight: var(--fontbold);
  color: var(--bluecolor);
}
.success-stories .item .author span {
  font-weight: var(--fontregular);
}
.success-stories.inner-page .item {
  width: 47%;
  margin: 0;
}

.partner-sec {
  background: #F1F3F4;
}
.partner-sec .container {
  padding: 20px 0;
}
.partner-sec .item {
  height: 100px;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 10px;
}
.partner-sec .item img {
  width: auto !important;
  max-height: 90px;
}
.partner-sec .owl-nav, .partner-sec .owl-dots {
  display: none;
}

.hvac-solution-sec {
  background: url("../images/hvac-solution-bg.jpg") no-repeat 0 0;
  background-size: cover;
}
.hvac-solution-sec .container {
  max-width: 1200px !important;
}
.hvac-solution-sec .left {
  width: 68%;
}
.hvac-solution-sec .left .item {
  width: 49%;
  border-radius: 6px;
  padding: 25px 50px;
  background: rgba(255, 255, 255, 0.85);
}
.hvac-solution-sec .left .date {
  font-size: 12px;
  font-weight: var(--fontbold);
  margin-bottom: 7px;
}
.hvac-solution-sec .left .title {
  font-size: 18px;
  font-weight: var(--fontbold);
}
.hvac-solution-sec .left p {
  font-size: 16px;
}
.hvac-solution-sec .right {
  width: 31%;
  padding: 30px;
  border-radius: 6px;
  color: #fff;
  background: rgba(2, 102, 169, 0.8);
}

.footer {
  margin-top: 10px;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: var(--fontregular);
  background-color: var(--darkgreycolor);
  background-image: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-position: 100% 70%;
  color: #fff;
}
.footer .left {
  width: 55%;
}
.footer .right {
  width: 32%;
}
.footer .right .common-heading {
  font-size: 40px;
  font-weight: 100;
  margin-bottom: 20px;
}
.footer .right li {
  width: 49%;
  opacity: 1;
}
.footer .right li.w-full {
  width: 100%;
}
.footer .right li input, .footer .right li select, .footer .right li textarea {
  width: 100%;
  padding: 7px 0 7px 20px;
  display: block;
  font-size: 16px;
  color: var(--darkgreycolor);
  font-weight: var(--fontmedium);
  border-radius: 6px;
}
.footer .right li input:focus, .footer .right li select:focus, .footer .right li textarea:focus {
  border: none;
  outline: none;
}
.footer .footer-bottom {
  margin-top: 30px;
  font-size: 12px;
  font-weight: var(--fontbold);
  padding: 20px 0;
  width: 100%;
  color: #000;
  background: #fff;
}
.footer .footer-bottom a {
  transition: all linear 0.3s;
}
.footer .footer-bottom a:hover {
  color: var(--bluecolor);
}
.footer li {
  margin-bottom: 10px;
}
.footer li a {
  transition: all linear 0.3s;
}
.footer li a:hover {
  color: var(--bluecolor);
}
.footer li ul {
  margin-top: 8px;
}
.footer li ul li {
  font-size: 14px;
  font-weight: var(--fontregular);
  opacity: 0.7;
  transition: all linear 0.3s;
}
.footer li ul li:hover {
  opacity: 1;
}
.footer li ul li:hover a {
  color: #fff;
}
.footer .social-media {
  margin-top: 50px;
}

.common-form-sec input, .common-form-sec select, .common-form-sec textarea {
  width: 100%;
  padding: 7px 0 7px 20px;
  display: block;
  font-size: 16px;
  color: var(--darkgreycolor);
  font-weight: var(--fontmedium);
  border-radius: 6px;
}
.common-form-sec input:focus, .common-form-sec select:focus, .common-form-sec textarea:focus {
  border: none;
  outline: none;
}

.common-slide-btn {
  padding-bottom: 70px;
  position: relative;
}
.common-slide-btn .owl-carousel .owl-stage-outer, .common-slide-btn .owl-carousel {
  position: static;
}
.common-slide-btn .owl-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  left: 0;
  gap: 15px;
  margin: 0 auto;
  width: 100%;
}
.common-slide-btn .owl-nav button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  transition: all linear 0.3s;
  background: #BBBBBB !important;
  border-radius: 50%;
  justify-content: center;
}
.common-slide-btn .owl-nav button span {
  background: url("../images/icon-arrow.png") no-repeat 0 0;
  width: 22px;
  font-size: 0;
  transform: rotate(-180deg);
  height: 13px;
  filter: brightness(0) invert(1);
}
.common-slide-btn .owl-nav button.owl-next {
  transform: rotate(180deg);
}
.common-slide-btn .owl-nav button:hover {
  background: var(--bluecolor) !important;
}
.common-slide-btn .owl-dots {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  left: 0;
  gap: 15px;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
}
.common-slide-btn .owl-dots button {
  width: 25px;
  height: 6px;
  background: #BBBBBB !important;
  border-radius: 6px;
}
.common-slide-btn .owl-dots button.active {
  background: var(--bluecolor) !important;
  width: 35px;
}
.common-slide-btn.right .owl-nav {
  justify-content: flex-end;
}
.common-slide-btn.center .owl-nav {
  justify-content: center;
}

.sustainbility-section .sustainbility-row .left {
  width: 48%;
}
.sustainbility-section .sustainbility-row .left img {
  position: relative;
  bottom: -40px;
  z-index: 1;
}
.sustainbility-section .sustainbility-row .right {
  width: 48%;
}
.sustainbility-section .sustainbility-row .right p {
  margin-bottom: 40px !important;
}

.project-det-sec .right .item {
  margin-bottom: 40px;
}
.project-det-sec .right .item .left-image {
  width: 14%;
  padding-right: 10px;
}
.project-det-sec .right .item .left-image img {
  width: 50px;
  height: 50px;
}
.project-det-sec .right .item .right-content {
  width: 86%;
}
.project-det-sec .right .item .right-content ul {
  margin: 20px;
}
.project-det-sec .right .item .right-content ul li {
  margin-bottom: 10px;
}

.projects-slider .owl-nav {
  top: -70px;
  right: 0;
  left: auto;
  justify-content: end;
  bottom: auto;
}

.ehs-initiatives-sec {
  padding-bottom: 80px;
}
.ehs-initiatives-sec .container {
  max-width: 1200px !important;
}
.ehs-initiatives-sec .container .esh-list {
  margin-top: 30px;
}
.ehs-initiatives-sec .container .esh-list ul li {
  justify-content: flex-end;
  display: flex;
  flex-wrap: wrap;
  width: 72%;
  float: right;
  position: relative;
  margin-top: -70px;
  transition: 0.8s ease-in-out;
}
.ehs-initiatives-sec .container .esh-list ul li .flex {
  width: 100%;
  justify-content: flex-end;
}
.ehs-initiatives-sec .container .esh-list ul li .flex .left-item {
  width: 40%;
  padding: 0;
  overflow: hidden;
  transition: 0.4s ease-in-out;
  border-radius: 500px 0px 0px 500px;
  border: 10px solid #fff;
  margin: 10px 0px;
}
.ehs-initiatives-sec .container .esh-list ul li .flex .left-item img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  filter: grayscale(1);
  height: 100%;
}
.ehs-initiatives-sec .container .esh-list ul li .flex .right-item {
  width: 48%;
  background: #BAE0F2;
  border-radius: 0px 100px 100px 0px;
  margin-bottom: 30px;
  padding: 30px 50px;
  margin: 12px 0px;
  transition: 0.4s ease-in-out;
}
.ehs-initiatives-sec .container .esh-list ul li .flex .right-item .esh-title {
  color: #0265A8;
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 22px;
  position: relative;
}
.ehs-initiatives-sec .container .esh-list ul li .flex .right-item .esh-title:before {
  position: absolute;
  bottom: 0;
  width: 49px;
  height: 6px;
  background: #0265A8;
  content: "";
}
.ehs-initiatives-sec .container .esh-list ul li .flex .right-item p {
  margin-top: 22px !important;
}
.ehs-initiatives-sec .container .esh-list ul li:first-child {
  position: relative;
  margin-top: 0;
}
.ehs-initiatives-sec .container .esh-list ul li:last-child {
  margin-bottom: 50px;
}
.ehs-initiatives-sec .container .esh-list ul li:nth-child(even) {
  float: left;
}
.ehs-initiatives-sec .container .esh-list ul li:nth-child(even) .flex {
  justify-content: flex-start;
}
.ehs-initiatives-sec .container .esh-list ul li:nth-child(even) .flex .left-item {
  order: 2;
  border-radius: 0px 500px 500px 0px;
}
.ehs-initiatives-sec .container .esh-list ul li:nth-child(even) .flex .left-item img {
  width: 100%;
}
.ehs-initiatives-sec .container .esh-list ul li:nth-child(even) .flex .right-item {
  border-radius: 100px 0px 0px 100px;
  padding: 30px 80px;
}
.ehs-initiatives-sec .container .esh-list ul li:hover .left-item img {
  filter: none;
}
.ehs-initiatives-sec .container .esh-list ul li:hover .right-item {
  background-color: #0265A8;
}
.ehs-initiatives-sec .container .esh-list ul li:hover .right-item .esh-title {
  color: #fff;
}
.ehs-initiatives-sec .container .esh-list ul li:hover .right-item .esh-title::before {
  background-color: #fff;
}
.ehs-initiatives-sec .container .esh-list ul li:hover .right-item p {
  color: #fff;
}

.esh-succes-sec {
  clear: both;
}

.mx-auto {
  width: auto !important;
}

.future-bottom .description .sub-title {
  font-size: 22px;
  margin-bottom: 20px;
}

.thanku-new-section {
  padding: 50px 0 40px;
}
.thanku-new-section .thank-you-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}
.thanku-new-section .thank-you-content .content {
  width: 100%;
}
.thanku-new-section .thank-you-content .content .content-text .img-wrap {
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  width: 70px;
  margin: 10px auto 40px;
  height: 70px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bluecolor);
}
.thanku-new-section .thank-you-content .content .content-text .img-wrap img {
  width: 40px;
  height: 40px;
}
.thanku-new-section .thank-you-content .h2 {
  color: var(--bluecolor);
  font-weight: 600;
  font-size: 36px;
  line-height: 50px;
  margin-bottom: 20px;
}
.thanku-new-section .thank-you-content .text p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--blackcolor);
  margin: auto;
}

.our-awards {
  width: 100%;
  height: auto;
  margin: 15px 0px;
}
.our-awards .left-award {
  width: 48%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.our-awards .right-award {
  width: 48%;
  display: flex;
  justify-content: end;
}
.our-awards .right-award .award-section .image {
  background-color: #BAE0F2;
  padding: 10px;
  border-radius: 10px;
}

.sets-part {
  background-image: url("../images/sets-background.jpg");
  background-position: bottom;
  background-color: #0266A9;
  background-repeat: no-repeat;
}
.sets-part .sets-part-heading {
  max-width: 40%;
  color: #fff;
}
.sets-part .sets-apart-listing {
  justify-content: space-between;
  align-items: end;
}
.sets-part .sets-apart-listing .left-part-image {
  width: 25%;
  padding-bottom: 50px;
}
.sets-part .sets-apart-listing .right-apart {
  width: 74%;
  align-items: end;
}
.sets-part .sets-apart-listing .right-apart .item {
  width: 24%;
  background: #347ebd;
  padding: 30px;
  color: #fff;
  position: relative;
  transition: 0.2s ease-in-out;
}
.sets-part .sets-apart-listing .right-apart .item img {
  position: absolute;
  top: -55px;
  left: 20px;
}
.sets-part .sets-apart-listing .right-apart .item .sub-heading {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  margin: 19px 0px;
}
.sets-part .sets-apart-listing .right-apart .item:nth-of-type(2) {
  background: #559dd4;
  max-height: 500px;
  min-height: 500px;
}
.sets-part .sets-apart-listing .right-apart .item:nth-of-type(2) img {
  top: -95px;
  left: 6px;
}
.sets-part .sets-apart-listing .right-apart .item:nth-of-type(3) {
  background: #569deb;
  max-height: 600px;
  min-height: 600px;
}
.sets-part .sets-apart-listing .right-apart .item:nth-of-type(3) img {
  top: -70px;
}
.sets-part .sets-apart-listing .right-apart .item:nth-of-type(4) {
  background: #3f85d4;
  max-height: 700px;
  min-height: 700px;
}
.sets-part .sets-apart-listing .right-apart .item:nth-of-type(4) img {
  top: -60px;
}
.sets-part .sets-apart-listing .right-apart .item:hover {
  background: #49b6ff;
  padding-top: 40px;
}

.home-testimonial .heading-sec {
  background: #fff;
}

.arrow {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.arrow .img {
  margin-top: 5px;
}
.arrow .img img {
  max-width: none;
}

.casestudy-img img {
  margin: 20px auto;
  border: 1px solid #000000;
}

.arrow-flex {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}

.case-studies-para .text {
  font-size: 13px;
  width: 100%;
  max-width: 450px;
  margin: auto;
  text-align: center;
}

.basic-page h2 {
  font-size: 24px;
  font-weight: 500;
}
.basic-page ul li {
  position: relative;
  padding-left: 23px;
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 15px;
}
.basic-page ul li::before {
  font-size: 14px;
  color: #0266a9;
  width: 8px;
  height: 8px;
  background-color: #0266a9;
  content: "";
  position: absolute;
  left: 0;
  border-radius: 50%;
  top: 10px;
}

.sitemap-live ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-live ul li {
  width: 100%;
  color: var(--bluecolor);
  font-size: 20px;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  margin-bottom: 15px;
  font-weight: 500;
}
.sitemap-live ul li ul li {
  font-size: 15px;
  position: relative;
  padding-left: 27px;
  margin-bottom: 15px;
  width: 24%;
  box-shadow: none;
  color: #000;
}

.case-list .items .item img {
  height: 365px;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1111;
  justify-content: center;
  align-items: center;
}
.profile-popup .profile-content {
  background: #fff;
  max-width: 400px;
  padding: 20px;
  border-radius: 10px;
}
.profile-popup .profile-content .close {
  position: absolute;
  top: -23px;
  right: -24px;
  background: var(--bluecolor);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  line-height: 28px;
  cursor: pointer;
}
.profile-popup .profile-content form ul li {
  width: 100%;
}
.profile-popup .profile-content form ul li input {
  border: 1px solid #ccc;
  padding: 10px;
}
.profile-popup.active {
  display: flex;
}/*# sourceMappingURL=main.css.map */